feat: update to 1.21

This commit is contained in:
daoge_cmd 2024-06-18 03:41:17 +08:00
parent 6ff0903d83
commit 4a3678cea9
4 changed files with 3596 additions and 166 deletions

View File

@ -1,6 +1,15 @@
<img align="left" width="64" height="64" src="https://raw.githubusercontent.com/wiki/PolyhedralDev/Terra/images/terra_logo.png" alt="Terra Logo">
# Terra
# Terra (Allay Platform)
This fork adds support for allay
if you want to build it, here are some files you may need:
- `mapping/biomes.json` from GeyserMC/mappings
- `mapping/items.json` from GeyserMC/mappings
- `mapping/blocks.json` you should generate it using GeyserMC/mappings-generator, and it's origin name is `generator_blocks.json`
- `je_block_default_state` converted from https://zh.minecraft.wiki/w/Module:Block_state_values currently
Terra is a modern world generation modding platform, primarily for Minecraft.
Terra allows complete customization of world generation with an advanced API,

View File

@ -97,14 +97,19 @@ public final class Mapping {
}
private static boolean initJeBlockDefaultProperties() {
for (var beBlockType : BlockTypeRegistry.getRegistry().getContent().values()) {
var defaultBeBlockState = beBlockType.getDefaultState();
var defaultJeBlockState = blockStateBeToJe(defaultBeBlockState);
if (defaultJeBlockState == null) {
log.warn("Failed to find JE block state for {}", defaultBeBlockState);
continue;
try (var stream = Mapping.class.getClassLoader().getResourceAsStream("je_block_default_states.json")) {
if (stream == null) {
log.error("je_block_default_states.json not found");
return false;
}
JE_BLOCK_DEFAULT_PROPERTIES.put(defaultJeBlockState.identifier, defaultJeBlockState.properties);
var states = JSONUtils.from(stream, new TypeToken<Map<String, Map<String, String>>>(){});
for(var entry : states.entrySet()) {
var identifier = entry.getKey();
var properties = entry.getValue();
JE_BLOCK_DEFAULT_PROPERTIES.put(identifier, properties);
}
} catch(IOException e) {
throw new RuntimeException(e);
}
return true;
}

File diff suppressed because it is too large Load Diff

View File

@ -28903,10 +28903,7 @@
"Name": "minecraft:short_grass"
},
"bedrock_state": {
"bedrock_identifier": "tallgrass",
"state": {
"tall_grass_type": "tall"
}
"bedrock_identifier": "short_grass"
}
},
{
@ -28914,10 +28911,7 @@
"Name": "minecraft:fern"
},
"bedrock_state": {
"bedrock_identifier": "tallgrass",
"state": {
"tall_grass_type": "fern"
}
"bedrock_identifier": "fern"
}
},
{
@ -187600,10 +187594,9 @@
"Name": "minecraft:sunflower"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "sunflower",
"state": {
"upper_block_bit": true,
"double_plant_type": "sunflower"
"upper_block_bit": true
}
}
},
@ -187615,10 +187608,9 @@
"Name": "minecraft:sunflower"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "sunflower",
"state": {
"upper_block_bit": false,
"double_plant_type": "sunflower"
"upper_block_bit": false
}
}
},
@ -187630,10 +187622,9 @@
"Name": "minecraft:lilac"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "lilac",
"state": {
"upper_block_bit": true,
"double_plant_type": "syringa"
"upper_block_bit": true
}
}
},
@ -187645,10 +187636,9 @@
"Name": "minecraft:lilac"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "lilac",
"state": {
"upper_block_bit": false,
"double_plant_type": "syringa"
"upper_block_bit": false
}
}
},
@ -187660,10 +187650,9 @@
"Name": "minecraft:rose_bush"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "rose_bush",
"state": {
"upper_block_bit": true,
"double_plant_type": "rose"
"upper_block_bit": true
}
}
},
@ -187675,10 +187664,9 @@
"Name": "minecraft:rose_bush"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "rose_bush",
"state": {
"upper_block_bit": false,
"double_plant_type": "rose"
"upper_block_bit": false
}
}
},
@ -187690,10 +187678,9 @@
"Name": "minecraft:peony"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "peony",
"state": {
"upper_block_bit": true,
"double_plant_type": "paeonia"
"upper_block_bit": true
}
}
},
@ -187705,10 +187692,9 @@
"Name": "minecraft:peony"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "peony",
"state": {
"upper_block_bit": false,
"double_plant_type": "paeonia"
"upper_block_bit": false
}
}
},
@ -187720,10 +187706,9 @@
"Name": "minecraft:tall_grass"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "tall_grass",
"state": {
"upper_block_bit": true,
"double_plant_type": "grass"
"upper_block_bit": true
}
}
},
@ -187735,10 +187720,9 @@
"Name": "minecraft:tall_grass"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "tall_grass",
"state": {
"upper_block_bit": false,
"double_plant_type": "grass"
"upper_block_bit": false
}
}
},
@ -187750,10 +187734,9 @@
"Name": "minecraft:large_fern"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "large_fern",
"state": {
"upper_block_bit": true,
"double_plant_type": "fern"
"upper_block_bit": true
}
}
},
@ -187765,10 +187748,9 @@
"Name": "minecraft:large_fern"
},
"bedrock_state": {
"bedrock_identifier": "double_plant",
"bedrock_identifier": "large_fern",
"state": {
"upper_block_bit": false,
"double_plant_type": "fern"
"upper_block_bit": false
}
}
},
@ -194730,9 +194712,8 @@
"Name": "minecraft:smooth_stone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "smooth_stone_slab",
"state": {
"stone_slab_type": "smooth_stone",
"minecraft:vertical_half": "top"
}
}
@ -194746,9 +194727,8 @@
"Name": "minecraft:smooth_stone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "smooth_stone_slab",
"state": {
"stone_slab_type": "smooth_stone",
"minecraft:vertical_half": "top"
}
}
@ -194762,9 +194742,8 @@
"Name": "minecraft:smooth_stone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "smooth_stone_slab",
"state": {
"stone_slab_type": "smooth_stone",
"minecraft:vertical_half": "bottom"
}
}
@ -194778,9 +194757,8 @@
"Name": "minecraft:smooth_stone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "smooth_stone_slab",
"state": {
"stone_slab_type": "smooth_stone",
"minecraft:vertical_half": "bottom"
}
}
@ -194826,9 +194804,8 @@
"Name": "minecraft:sandstone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "sandstone_slab",
"state": {
"stone_slab_type": "sandstone",
"minecraft:vertical_half": "top"
}
}
@ -194842,9 +194819,8 @@
"Name": "minecraft:sandstone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "sandstone_slab",
"state": {
"stone_slab_type": "sandstone",
"minecraft:vertical_half": "top"
}
}
@ -194858,9 +194834,8 @@
"Name": "minecraft:sandstone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "sandstone_slab",
"state": {
"stone_slab_type": "sandstone",
"minecraft:vertical_half": "bottom"
}
}
@ -194874,9 +194849,8 @@
"Name": "minecraft:sandstone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "sandstone_slab",
"state": {
"stone_slab_type": "sandstone",
"minecraft:vertical_half": "bottom"
}
}
@ -195018,9 +194992,8 @@
"Name": "minecraft:petrified_oak_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "petrified_oak_slab",
"state": {
"stone_slab_type": "wood",
"minecraft:vertical_half": "top"
}
}
@ -195034,9 +195007,8 @@
"Name": "minecraft:petrified_oak_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "petrified_oak_slab",
"state": {
"stone_slab_type": "wood",
"minecraft:vertical_half": "top"
}
}
@ -195050,9 +195022,8 @@
"Name": "minecraft:petrified_oak_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "petrified_oak_slab",
"state": {
"stone_slab_type": "wood",
"minecraft:vertical_half": "bottom"
}
}
@ -195066,9 +195037,8 @@
"Name": "minecraft:petrified_oak_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "petrified_oak_slab",
"state": {
"stone_slab_type": "wood",
"minecraft:vertical_half": "bottom"
}
}
@ -195114,9 +195084,8 @@
"Name": "minecraft:cobblestone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "cobblestone_slab",
"state": {
"stone_slab_type": "cobblestone",
"minecraft:vertical_half": "top"
}
}
@ -195130,9 +195099,8 @@
"Name": "minecraft:cobblestone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "cobblestone_slab",
"state": {
"stone_slab_type": "cobblestone",
"minecraft:vertical_half": "top"
}
}
@ -195146,9 +195114,8 @@
"Name": "minecraft:cobblestone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "cobblestone_slab",
"state": {
"stone_slab_type": "cobblestone",
"minecraft:vertical_half": "bottom"
}
}
@ -195162,9 +195129,8 @@
"Name": "minecraft:cobblestone_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "cobblestone_slab",
"state": {
"stone_slab_type": "cobblestone",
"minecraft:vertical_half": "bottom"
}
}
@ -195210,9 +195176,8 @@
"Name": "minecraft:brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "brick_slab",
"state": {
"stone_slab_type": "brick",
"minecraft:vertical_half": "top"
}
}
@ -195226,9 +195191,8 @@
"Name": "minecraft:brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "brick_slab",
"state": {
"stone_slab_type": "brick",
"minecraft:vertical_half": "top"
}
}
@ -195242,9 +195206,8 @@
"Name": "minecraft:brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "brick_slab",
"state": {
"stone_slab_type": "brick",
"minecraft:vertical_half": "bottom"
}
}
@ -195258,9 +195221,8 @@
"Name": "minecraft:brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "brick_slab",
"state": {
"stone_slab_type": "brick",
"minecraft:vertical_half": "bottom"
}
}
@ -195306,9 +195268,8 @@
"Name": "minecraft:stone_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "stone_brick_slab",
"state": {
"stone_slab_type": "stone_brick",
"minecraft:vertical_half": "top"
}
}
@ -195322,9 +195283,8 @@
"Name": "minecraft:stone_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "stone_brick_slab",
"state": {
"stone_slab_type": "stone_brick",
"minecraft:vertical_half": "top"
}
}
@ -195338,9 +195298,8 @@
"Name": "minecraft:stone_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "stone_brick_slab",
"state": {
"stone_slab_type": "stone_brick",
"minecraft:vertical_half": "bottom"
}
}
@ -195354,9 +195313,8 @@
"Name": "minecraft:stone_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "stone_brick_slab",
"state": {
"stone_slab_type": "stone_brick",
"minecraft:vertical_half": "bottom"
}
}
@ -195492,9 +195450,8 @@
"Name": "minecraft:nether_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "nether_brick_slab",
"state": {
"stone_slab_type": "nether_brick",
"minecraft:vertical_half": "top"
}
}
@ -195508,9 +195465,8 @@
"Name": "minecraft:nether_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "nether_brick_slab",
"state": {
"stone_slab_type": "nether_brick",
"minecraft:vertical_half": "top"
}
}
@ -195524,9 +195480,8 @@
"Name": "minecraft:nether_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "nether_brick_slab",
"state": {
"stone_slab_type": "nether_brick",
"minecraft:vertical_half": "bottom"
}
}
@ -195540,9 +195495,8 @@
"Name": "minecraft:nether_brick_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "nether_brick_slab",
"state": {
"stone_slab_type": "nether_brick",
"minecraft:vertical_half": "bottom"
}
}
@ -195588,9 +195542,8 @@
"Name": "minecraft:quartz_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "quartz_slab",
"state": {
"stone_slab_type": "quartz",
"minecraft:vertical_half": "top"
}
}
@ -195604,9 +195557,8 @@
"Name": "minecraft:quartz_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "quartz_slab",
"state": {
"stone_slab_type": "quartz",
"minecraft:vertical_half": "top"
}
}
@ -195620,9 +195572,8 @@
"Name": "minecraft:quartz_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "quartz_slab",
"state": {
"stone_slab_type": "quartz",
"minecraft:vertical_half": "bottom"
}
}
@ -195636,9 +195587,8 @@
"Name": "minecraft:quartz_slab"
},
"bedrock_state": {
"bedrock_identifier": "stone_block_slab",
"bedrock_identifier": "quartz_slab",
"state": {
"stone_slab_type": "quartz",
"minecraft:vertical_half": "bottom"
}
}
@ -222054,11 +222004,7 @@
"Name": "minecraft:dead_tube_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "blue",
"dead_bit": true
}
"bedrock_identifier": "dead_tube_coral_block"
}
},
{
@ -222066,11 +222012,7 @@
"Name": "minecraft:dead_brain_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "pink",
"dead_bit": true
}
"bedrock_identifier": "dead_brain_coral_block"
}
},
{
@ -222078,11 +222020,7 @@
"Name": "minecraft:dead_bubble_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "purple",
"dead_bit": true
}
"bedrock_identifier": "dead_bubble_coral_block"
}
},
{
@ -222090,11 +222028,7 @@
"Name": "minecraft:dead_fire_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "red",
"dead_bit": true
}
"bedrock_identifier": "dead_fire_coral_block"
}
},
{
@ -222102,11 +222036,7 @@
"Name": "minecraft:dead_horn_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "yellow",
"dead_bit": true
}
"bedrock_identifier": "dead_horn_coral_block"
}
},
{
@ -222114,11 +222044,7 @@
"Name": "minecraft:tube_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "blue",
"dead_bit": false
}
"bedrock_identifier": "tube_coral_block"
}
},
{
@ -222126,11 +222052,7 @@
"Name": "minecraft:brain_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "pink",
"dead_bit": false
}
"bedrock_identifier": "brain_coral_block"
}
},
{
@ -222138,11 +222060,7 @@
"Name": "minecraft:bubble_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "purple",
"dead_bit": false
}
"bedrock_identifier": "bubble_coral_block"
}
},
{
@ -222150,11 +222068,7 @@
"Name": "minecraft:fire_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "red",
"dead_bit": false
}
"bedrock_identifier": "fire_coral_block"
}
},
{
@ -222162,11 +222076,7 @@
"Name": "minecraft:horn_coral_block"
},
"bedrock_state": {
"bedrock_identifier": "coral_block",
"state": {
"coral_color": "yellow",
"dead_bit": false
}
"bedrock_identifier": "horn_coral_block"
}
},
{
@ -511180,6 +511090,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": true,
"trial_spawner_state": 0
}
}
@ -511195,6 +511106,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": true,
"trial_spawner_state": 1
}
}
@ -511210,6 +511122,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": true,
"trial_spawner_state": 2
}
}
@ -511225,6 +511138,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": true,
"trial_spawner_state": 3
}
}
@ -511240,6 +511154,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": true,
"trial_spawner_state": 4
}
}
@ -511255,6 +511170,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": true,
"trial_spawner_state": 5
}
}
@ -511270,6 +511186,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": false,
"trial_spawner_state": 0
}
}
@ -511285,6 +511202,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": false,
"trial_spawner_state": 1
}
}
@ -511300,6 +511218,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": false,
"trial_spawner_state": 2
}
}
@ -511315,6 +511234,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": false,
"trial_spawner_state": 3
}
}
@ -511330,6 +511250,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": false,
"trial_spawner_state": 4
}
}
@ -511345,6 +511266,7 @@
"bedrock_state": {
"bedrock_identifier": "trial_spawner",
"state": {
"ominous": false,
"trial_spawner_state": 5
}
}
@ -511361,6 +511283,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "inactive",
"minecraft:cardinal_direction": "north"
}
@ -511378,6 +511301,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "active",
"minecraft:cardinal_direction": "north"
}
@ -511395,6 +511319,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "north"
}
@ -511412,6 +511337,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "north"
}
@ -511429,6 +511355,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "inactive",
"minecraft:cardinal_direction": "north"
}
@ -511446,6 +511373,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "active",
"minecraft:cardinal_direction": "north"
}
@ -511463,6 +511391,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "north"
}
@ -511480,6 +511409,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "north"
}
@ -511497,6 +511427,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "inactive",
"minecraft:cardinal_direction": "south"
}
@ -511514,6 +511445,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "active",
"minecraft:cardinal_direction": "south"
}
@ -511531,6 +511463,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "south"
}
@ -511548,6 +511481,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "south"
}
@ -511565,6 +511499,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "inactive",
"minecraft:cardinal_direction": "south"
}
@ -511582,6 +511517,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "active",
"minecraft:cardinal_direction": "south"
}
@ -511599,6 +511535,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "south"
}
@ -511616,6 +511553,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "south"
}
@ -511633,6 +511571,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "inactive",
"minecraft:cardinal_direction": "west"
}
@ -511650,6 +511589,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "active",
"minecraft:cardinal_direction": "west"
}
@ -511667,6 +511607,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "west"
}
@ -511684,6 +511625,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "west"
}
@ -511701,6 +511643,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "inactive",
"minecraft:cardinal_direction": "west"
}
@ -511718,6 +511661,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "active",
"minecraft:cardinal_direction": "west"
}
@ -511735,6 +511679,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "west"
}
@ -511752,6 +511697,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "west"
}
@ -511769,6 +511715,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "inactive",
"minecraft:cardinal_direction": "east"
}
@ -511786,6 +511733,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "active",
"minecraft:cardinal_direction": "east"
}
@ -511803,6 +511751,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "east"
}
@ -511820,6 +511769,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": true,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "east"
}
@ -511837,6 +511787,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "inactive",
"minecraft:cardinal_direction": "east"
}
@ -511854,6 +511805,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "active",
"minecraft:cardinal_direction": "east"
}
@ -511871,6 +511823,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "unlocking",
"minecraft:cardinal_direction": "east"
}
@ -511888,6 +511841,7 @@
"bedrock_state": {
"bedrock_identifier": "vault",
"state": {
"ominous": false,
"vault_state": "ejecting",
"minecraft:cardinal_direction": "east"
}