Conflicts:
	src/main/java/net/minestom/server/entity/EntityType.java
	src/main/java/net/minestom/server/instance/block/Block.java
	src/main/java/net/minestom/server/item/Enchantment.java
	src/main/java/net/minestom/server/item/Material.java
	src/main/java/net/minestom/server/particle/Particle.java
	src/main/java/net/minestom/server/registry/RegistryMain.java
	src/main/java/net/minestom/server/registry/ResourceGatherer.java
	src/main/java/net/minestom/server/sound/Sound.java
	src/main/java/net/minestom/server/stat/StatisticType.java
This commit is contained in:
Eoghanmc22 2020-06-29 16:27:53 -04:00
commit 01d7ed9699
483 changed files with 21240 additions and 4870 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "prismarine-minecraft-data"]
path = prismarine-minecraft-data
url = https://github.com/PrismarineJS/minecraft-data

View File

@ -15,6 +15,23 @@ repositories {
}
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir 'src/autogenerated/java'
}
}
generation {
java {
srcDir 'src/generators/java'
}
compileClasspath += sourceSets.main.runtimeClasspath
runtimeClasspath += sourceSets.main.runtimeClasspath
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'

@ -0,0 +1 @@
Subproject commit 1e52503a6dbabd326bd0fee5e2aba5cd07b2a4f8

View File

@ -0,0 +1,131 @@
//==============================
// AUTOGENERATED BY EnumGenerator
//==============================
package net.minestom.server.entity;
public enum EntityType {
AREA_EFFECT_CLOUD("minecraft:area_effect_cloud"),
ARMOR_STAND("minecraft:armor_stand"),
ARROW("minecraft:arrow"),
BAT("minecraft:bat"),
BEE("minecraft:bee"),
BLAZE("minecraft:blaze"),
BOAT("minecraft:boat"),
CAT("minecraft:cat"),
CAVE_SPIDER("minecraft:cave_spider"),
CHICKEN("minecraft:chicken"),
COD("minecraft:cod"),
COW("minecraft:cow"),
CREEPER("minecraft:creeper"),
DONKEY("minecraft:donkey"),
DOLPHIN("minecraft:dolphin"),
DRAGON_FIREBALL("minecraft:dragon_fireball"),
DROWNED("minecraft:drowned"),
ELDER_GUARDIAN("minecraft:elder_guardian"),
END_CRYSTAL("minecraft:end_crystal"),
ENDER_DRAGON("minecraft:ender_dragon"),
ENDERMAN("minecraft:enderman"),
ENDERMITE("minecraft:endermite"),
EVOKER_FANGS("minecraft:evoker_fangs"),
EVOKER("minecraft:evoker"),
EXPERIENCE_ORB("minecraft:experience_orb"),
EYE_OF_ENDER("minecraft:eye_of_ender"),
FALLING_BLOCK("minecraft:falling_block"),
FIREWORK_ROCKET("minecraft:firework_rocket"),
FOX("minecraft:fox"),
GHAST("minecraft:ghast"),
GIANT("minecraft:giant"),
GUARDIAN("minecraft:guardian"),
HORSE("minecraft:horse"),
HUSK("minecraft:husk"),
ILLUSIONER("minecraft:illusioner"),
ITEM("minecraft:item"),
ITEM_FRAME("minecraft:item_frame"),
FIREBALL("minecraft:fireball"),
LEASH_KNOT("minecraft:leash_knot"),
LLAMA("minecraft:llama"),
LLAMA_SPIT("minecraft:llama_spit"),
MAGMA_CUBE("minecraft:magma_cube"),
MINECART("minecraft:minecart"),
CHEST_MINECART("minecraft:chest_minecart"),
COMMAND_BLOCK_MINECART("minecraft:command_block_minecart"),
FURNACE_MINECART("minecraft:furnace_minecart"),
HOPPER_MINECART("minecraft:hopper_minecart"),
SPAWNER_MINECART("minecraft:spawner_minecart"),
TNT_MINECART("minecraft:tnt_minecart"),
MULE("minecraft:mule"),
MOOSHROOM("minecraft:mooshroom"),
OCELOT("minecraft:ocelot"),
PAINTING("minecraft:painting"),
PANDA("minecraft:panda"),
PARROT("minecraft:parrot"),
PIG("minecraft:pig"),
PUFFERFISH("minecraft:pufferfish"),
ZOMBIE_PIGMAN("minecraft:zombie_pigman"),
POLAR_BEAR("minecraft:polar_bear"),
TNT("minecraft:tnt"),
RABBIT("minecraft:rabbit"),
SALMON("minecraft:salmon"),
SHEEP("minecraft:sheep"),
SHULKER("minecraft:shulker"),
SHULKER_BULLET("minecraft:shulker_bullet"),
SILVERFISH("minecraft:silverfish"),
SKELETON("minecraft:skeleton"),
SKELETON_HORSE("minecraft:skeleton_horse"),
SLIME("minecraft:slime"),
SMALL_FIREBALL("minecraft:small_fireball"),
SNOW_GOLEM("minecraft:snow_golem"),
SNOWBALL("minecraft:snowball"),
SPECTRAL_ARROW("minecraft:spectral_arrow"),
SPIDER("minecraft:spider"),
SQUID("minecraft:squid"),
STRAY("minecraft:stray"),
TRADER_LLAMA("minecraft:trader_llama"),
TROPICAL_FISH("minecraft:tropical_fish"),
TURTLE("minecraft:turtle"),
EGG("minecraft:egg"),
ENDER_PEARL("minecraft:ender_pearl"),
EXPERIENCE_BOTTLE("minecraft:experience_bottle"),
POTION("minecraft:potion"),
TRIDENT("minecraft:trident"),
VEX("minecraft:vex"),
VILLAGER("minecraft:villager"),
IRON_GOLEM("minecraft:iron_golem"),
VINDICATOR("minecraft:vindicator"),
PILLAGER("minecraft:pillager"),
WANDERING_TRADER("minecraft:wandering_trader"),
WITCH("minecraft:witch"),
WITHER("minecraft:wither"),
WITHER_SKELETON("minecraft:wither_skeleton"),
WITHER_SKULL("minecraft:wither_skull"),
WOLF("minecraft:wolf"),
ZOMBIE("minecraft:zombie"),
ZOMBIE_HORSE("minecraft:zombie_horse"),
ZOMBIE_VILLAGER("minecraft:zombie_villager"),
PHANTOM("minecraft:phantom"),
RAVAGER("minecraft:ravager"),
LIGHTNING_BOLT("minecraft:lightning_bolt"),
PLAYER("minecraft:player"),
FISHING_BOBBER("minecraft:fishing_bobber"),
;
private String namespaceID;
EntityType(String namespaceID) {
this.namespaceID = namespaceID;
}
public int getId() {
return ordinal();
}
public String getNamespaceID() {
return namespaceID;
}
public static EntityType fromId(int id) {
if(id >= 0 && id < values().length) {
return values()[id];
}
return PIG;
}
}

View File

@ -0,0 +1,103 @@
//==============================
// AUTOGENERATED BY EnumGenerator
//==============================
package net.minestom.server.instance;
public enum Biome {
OCEAN("minecraft:ocean"),
PLAINS("minecraft:plains"),
DESERT("minecraft:desert"),
MOUNTAINS("minecraft:mountains"),
FOREST("minecraft:forest"),
TAIGA("minecraft:taiga"),
SWAMP("minecraft:swamp"),
RIVER("minecraft:river"),
NETHER("minecraft:nether"),
THE_END("minecraft:the_end"),
FROZEN_OCEAN("minecraft:frozen_ocean"),
FROZEN_RIVER("minecraft:frozen_river"),
SNOWY_TUNDRA("minecraft:snowy_tundra"),
SNOWY_MOUNTAINS("minecraft:snowy_mountains"),
MUSHROOM_FIELDS("minecraft:mushroom_fields"),
MUSHROOM_FIELD_SHORE("minecraft:mushroom_field_shore"),
BEACH("minecraft:beach"),
DESERT_HILLS("minecraft:desert_hills"),
WOODED_HILLS("minecraft:wooded_hills"),
TAIGA_HILLS("minecraft:taiga_hills"),
MOUNTAIN_EDGE("minecraft:mountain_edge"),
JUNGLE("minecraft:jungle"),
JUNGLE_HILLS("minecraft:jungle_hills"),
JUNGLE_EDGE("minecraft:jungle_edge"),
DEEP_OCEAN("minecraft:deep_ocean"),
STONE_SHORE("minecraft:stone_shore"),
SNOWY_BEACH("minecraft:snowy_beach"),
BIRCH_FOREST("minecraft:birch_forest"),
BIRCH_FOREST_HILLS("minecraft:birch_forest_hills"),
DARK_FOREST("minecraft:dark_forest"),
SNOWY_TAIGA("minecraft:snowy_taiga"),
SNOWY_TAIGA_HILLS("minecraft:snowy_taiga_hills"),
GIANT_TREE_TAIGA("minecraft:giant_tree_taiga"),
GIANT_TREE_TAIGA_HILLS("minecraft:giant_tree_taiga_hills"),
WOODED_MOUNTAINS("minecraft:wooded_mountains"),
SAVANNA("minecraft:savanna"),
SAVANNA_PLATEAU("minecraft:savanna_plateau"),
BADLANDS("minecraft:badlands"),
WOODED_BADLANDS_PLATEAU("minecraft:wooded_badlands_plateau"),
BADLANDS_PLATEAU("minecraft:badlands_plateau"),
SMALL_END_ISLANDS("minecraft:small_end_islands"),
END_MIDLANDS("minecraft:end_midlands"),
END_HIGHLANDS("minecraft:end_highlands"),
END_BARRENS("minecraft:end_barrens"),
WARM_OCEAN("minecraft:warm_ocean"),
LUKEWARM_OCEAN("minecraft:lukewarm_ocean"),
COLD_OCEAN("minecraft:cold_ocean"),
DEEP_WARM_OCEAN("minecraft:deep_warm_ocean"),
DEEP_LUKEWARM_OCEAN("minecraft:deep_lukewarm_ocean"),
DEEP_COLD_OCEAN("minecraft:deep_cold_ocean"),
DEEP_FROZEN_OCEAN("minecraft:deep_frozen_ocean"),
THE_VOID("minecraft:the_void"),
SUNFLOWER_PLAINS("minecraft:sunflower_plains"),
DESERT_LAKES("minecraft:desert_lakes"),
GRAVELLY_MOUNTAINS("minecraft:gravelly_mountains"),
FLOWER_FOREST("minecraft:flower_forest"),
TAIGA_MOUNTAINS("minecraft:taiga_mountains"),
SWAMP_HILLS("minecraft:swamp_hills"),
ICE_SPIKES("minecraft:ice_spikes"),
MODIFIED_JUNGLE("minecraft:modified_jungle"),
MODIFIED_JUNGLE_EDGE("minecraft:modified_jungle_edge"),
TALL_BIRCH_FOREST("minecraft:tall_birch_forest"),
TALL_BIRCH_HILLS("minecraft:tall_birch_hills"),
DARK_FOREST_HILLS("minecraft:dark_forest_hills"),
SNOWY_TAIGA_MOUNTAINS("minecraft:snowy_taiga_mountains"),
GIANT_SPRUCE_TAIGA("minecraft:giant_spruce_taiga"),
GIANT_SPRUCE_TAIGA_HILLS("minecraft:giant_spruce_taiga_hills"),
MODIFIED_GRAVELLY_MOUNTAINS("minecraft:modified_gravelly_mountains"),
SHATTERED_SAVANNA("minecraft:shattered_savanna"),
SHATTERED_SAVANNA_PLATEAU("minecraft:shattered_savanna_plateau"),
ERODED_BADLANDS("minecraft:eroded_badlands"),
MODIFIED_WOODED_BADLANDS_PLATEAU("minecraft:modified_wooded_badlands_plateau"),
MODIFIED_BADLANDS_PLATEAU("minecraft:modified_badlands_plateau"),
BAMBOO_JUNGLE("minecraft:bamboo_jungle"),
BAMBOO_JUNGLE_HILLS("minecraft:bamboo_jungle_hills"),
;
private String namespaceID;
Biome(String namespaceID) {
this.namespaceID = namespaceID;
}
public int getId() {
return ordinal();
}
public String getNamespaceID() {
return namespaceID;
}
public static Biome fromId(int id) {
if(id >= 0 && id < values().length) {
return values()[id];
}
return null;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
package net.minestom.server.instance.block;
import it.unimi.dsi.fastutil.shorts.Short2ObjectOpenHashMap;
final class BlockMap {
static final Short2ObjectOpenHashMap<Block> blocksMap = new Short2ObjectOpenHashMap<>();
}

View File

@ -0,0 +1,35 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaButton {
public static void initStates() {
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5906, "face=floor", "facing=north", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5907, "face=floor", "facing=north", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5908, "face=floor", "facing=south", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5909, "face=floor", "facing=south", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5910, "face=floor", "facing=west", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5911, "face=floor", "facing=west", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5912, "face=floor", "facing=east", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5913, "face=floor", "facing=east", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5914, "face=wall", "facing=north", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5915, "face=wall", "facing=north", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5916, "face=wall", "facing=south", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5917, "face=wall", "facing=south", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5918, "face=wall", "facing=west", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5919, "face=wall", "facing=west", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5920, "face=wall", "facing=east", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5921, "face=wall", "facing=east", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5922, "face=ceiling", "facing=north", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5923, "face=ceiling", "facing=north", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5924, "face=ceiling", "facing=south", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5925, "face=ceiling", "facing=south", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5926, "face=ceiling", "facing=west", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5927, "face=ceiling", "facing=west", "powered=false"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5928, "face=ceiling", "facing=east", "powered=true"));
ACACIA_BUTTON.addBlockAlternative(new BlockAlternative((short) 5929, "face=ceiling", "facing=east", "powered=false"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaDoor {
public static void initStates() {
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8394, "facing=north", "half=upper", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8395, "facing=north", "half=upper", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8396, "facing=north", "half=upper", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8397, "facing=north", "half=upper", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8398, "facing=north", "half=upper", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8399, "facing=north", "half=upper", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8400, "facing=north", "half=upper", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8401, "facing=north", "half=upper", "hinge=right", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8402, "facing=north", "half=lower", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8403, "facing=north", "half=lower", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8404, "facing=north", "half=lower", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8405, "facing=north", "half=lower", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8406, "facing=north", "half=lower", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8407, "facing=north", "half=lower", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8408, "facing=north", "half=lower", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8409, "facing=north", "half=lower", "hinge=right", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8410, "facing=south", "half=upper", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8411, "facing=south", "half=upper", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8412, "facing=south", "half=upper", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8413, "facing=south", "half=upper", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8414, "facing=south", "half=upper", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8415, "facing=south", "half=upper", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8416, "facing=south", "half=upper", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8417, "facing=south", "half=upper", "hinge=right", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8418, "facing=south", "half=lower", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8419, "facing=south", "half=lower", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8420, "facing=south", "half=lower", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8421, "facing=south", "half=lower", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8422, "facing=south", "half=lower", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8423, "facing=south", "half=lower", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8424, "facing=south", "half=lower", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8425, "facing=south", "half=lower", "hinge=right", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8426, "facing=west", "half=upper", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8427, "facing=west", "half=upper", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8428, "facing=west", "half=upper", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8429, "facing=west", "half=upper", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8430, "facing=west", "half=upper", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8431, "facing=west", "half=upper", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8432, "facing=west", "half=upper", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8433, "facing=west", "half=upper", "hinge=right", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8434, "facing=west", "half=lower", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8435, "facing=west", "half=lower", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8436, "facing=west", "half=lower", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8437, "facing=west", "half=lower", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8438, "facing=west", "half=lower", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8439, "facing=west", "half=lower", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8440, "facing=west", "half=lower", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8441, "facing=west", "half=lower", "hinge=right", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8442, "facing=east", "half=upper", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8443, "facing=east", "half=upper", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8444, "facing=east", "half=upper", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8445, "facing=east", "half=upper", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8446, "facing=east", "half=upper", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8447, "facing=east", "half=upper", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8448, "facing=east", "half=upper", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8449, "facing=east", "half=upper", "hinge=right", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8450, "facing=east", "half=lower", "hinge=left", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8451, "facing=east", "half=lower", "hinge=left", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8452, "facing=east", "half=lower", "hinge=left", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8453, "facing=east", "half=lower", "hinge=left", "open=false", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8454, "facing=east", "half=lower", "hinge=right", "open=true", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8455, "facing=east", "half=lower", "hinge=right", "open=true", "powered=false"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8456, "facing=east", "half=lower", "hinge=right", "open=false", "powered=true"));
ACACIA_DOOR.addBlockAlternative(new BlockAlternative((short) 8457, "facing=east", "half=lower", "hinge=right", "open=false", "powered=false"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaFence {
public static void initStates() {
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8138, "east=true", "north=true", "south=true", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8139, "east=true", "north=true", "south=true", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8140, "east=true", "north=true", "south=true", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8141, "east=true", "north=true", "south=true", "waterlogged=false", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8142, "east=true", "north=true", "south=false", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8143, "east=true", "north=true", "south=false", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8144, "east=true", "north=true", "south=false", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8145, "east=true", "north=true", "south=false", "waterlogged=false", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8146, "east=true", "north=false", "south=true", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8147, "east=true", "north=false", "south=true", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8148, "east=true", "north=false", "south=true", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8149, "east=true", "north=false", "south=true", "waterlogged=false", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8150, "east=true", "north=false", "south=false", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8151, "east=true", "north=false", "south=false", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8152, "east=true", "north=false", "south=false", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8153, "east=true", "north=false", "south=false", "waterlogged=false", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8154, "east=false", "north=true", "south=true", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8155, "east=false", "north=true", "south=true", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8156, "east=false", "north=true", "south=true", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8157, "east=false", "north=true", "south=true", "waterlogged=false", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8158, "east=false", "north=true", "south=false", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8159, "east=false", "north=true", "south=false", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8160, "east=false", "north=true", "south=false", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8161, "east=false", "north=true", "south=false", "waterlogged=false", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8162, "east=false", "north=false", "south=true", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8163, "east=false", "north=false", "south=true", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8164, "east=false", "north=false", "south=true", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8165, "east=false", "north=false", "south=true", "waterlogged=false", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8166, "east=false", "north=false", "south=false", "waterlogged=true", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8167, "east=false", "north=false", "south=false", "waterlogged=true", "west=false"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8168, "east=false", "north=false", "south=false", "waterlogged=false", "west=true"));
ACACIA_FENCE.addBlockAlternative(new BlockAlternative((short) 8169, "east=false", "north=false", "south=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaFenceGate {
public static void initStates() {
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7978, "facing=north", "in_wall=true", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7979, "facing=north", "in_wall=true", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7980, "facing=north", "in_wall=true", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7981, "facing=north", "in_wall=true", "open=false", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7982, "facing=north", "in_wall=false", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7983, "facing=north", "in_wall=false", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7984, "facing=north", "in_wall=false", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7985, "facing=north", "in_wall=false", "open=false", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7986, "facing=south", "in_wall=true", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7987, "facing=south", "in_wall=true", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7988, "facing=south", "in_wall=true", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7989, "facing=south", "in_wall=true", "open=false", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7990, "facing=south", "in_wall=false", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7991, "facing=south", "in_wall=false", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7992, "facing=south", "in_wall=false", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7993, "facing=south", "in_wall=false", "open=false", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7994, "facing=west", "in_wall=true", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7995, "facing=west", "in_wall=true", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7996, "facing=west", "in_wall=true", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7997, "facing=west", "in_wall=true", "open=false", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7998, "facing=west", "in_wall=false", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7999, "facing=west", "in_wall=false", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8000, "facing=west", "in_wall=false", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8001, "facing=west", "in_wall=false", "open=false", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8002, "facing=east", "in_wall=true", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8003, "facing=east", "in_wall=true", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8004, "facing=east", "in_wall=true", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8005, "facing=east", "in_wall=true", "open=false", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8006, "facing=east", "in_wall=false", "open=true", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8007, "facing=east", "in_wall=false", "open=true", "powered=false"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8008, "facing=east", "in_wall=false", "open=false", "powered=true"));
ACACIA_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 8009, "facing=east", "in_wall=false", "open=false", "powered=false"));
}
}

View File

@ -0,0 +1,25 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaLeaves {
public static void initStates() {
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 200, "distance=1", "persistent=true"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 201, "distance=1", "persistent=false"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 202, "distance=2", "persistent=true"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 203, "distance=2", "persistent=false"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 204, "distance=3", "persistent=true"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 205, "distance=3", "persistent=false"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 206, "distance=4", "persistent=true"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 207, "distance=4", "persistent=false"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 208, "distance=5", "persistent=true"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 209, "distance=5", "persistent=false"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 210, "distance=6", "persistent=true"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 211, "distance=6", "persistent=false"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 212, "distance=7", "persistent=true"));
ACACIA_LEAVES.addBlockAlternative(new BlockAlternative((short) 213, "distance=7", "persistent=false"));
}
}

View File

@ -0,0 +1,14 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaLog {
public static void initStates() {
ACACIA_LOG.addBlockAlternative(new BlockAlternative((short) 84, "axis=x"));
ACACIA_LOG.addBlockAlternative(new BlockAlternative((short) 85, "axis=y"));
ACACIA_LOG.addBlockAlternative(new BlockAlternative((short) 86, "axis=z"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaPressurePlate {
public static void initStates() {
ACACIA_PRESSURE_PLATE.addBlockAlternative(new BlockAlternative((short) 3879, "powered=true"));
ACACIA_PRESSURE_PLATE.addBlockAlternative(new BlockAlternative((short) 3880, "powered=false"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaSapling {
public static void initStates() {
ACACIA_SAPLING.addBlockAlternative(new BlockAlternative((short) 29, "stage=0"));
ACACIA_SAPLING.addBlockAlternative(new BlockAlternative((short) 30, "stage=1"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaSign {
public static void initStates() {
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3475, "rotation=0", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3476, "rotation=0", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3477, "rotation=1", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3478, "rotation=1", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3479, "rotation=2", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3480, "rotation=2", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3481, "rotation=3", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3482, "rotation=3", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3483, "rotation=4", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3484, "rotation=4", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3485, "rotation=5", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3486, "rotation=5", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3487, "rotation=6", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3488, "rotation=6", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3489, "rotation=7", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3490, "rotation=7", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3491, "rotation=8", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3492, "rotation=8", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3493, "rotation=9", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3494, "rotation=9", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3495, "rotation=10", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3496, "rotation=10", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3497, "rotation=11", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3498, "rotation=11", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3499, "rotation=12", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3500, "rotation=12", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3501, "rotation=13", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3502, "rotation=13", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3503, "rotation=14", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3504, "rotation=14", "waterlogged=false"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3505, "rotation=15", "waterlogged=true"));
ACACIA_SIGN.addBlockAlternative(new BlockAlternative((short) 3506, "rotation=15", "waterlogged=false"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaSlab {
public static void initStates() {
ACACIA_SLAB.addBlockAlternative(new BlockAlternative((short) 7788, "type=top", "waterlogged=true"));
ACACIA_SLAB.addBlockAlternative(new BlockAlternative((short) 7789, "type=top", "waterlogged=false"));
ACACIA_SLAB.addBlockAlternative(new BlockAlternative((short) 7790, "type=bottom", "waterlogged=true"));
ACACIA_SLAB.addBlockAlternative(new BlockAlternative((short) 7791, "type=bottom", "waterlogged=false"));
ACACIA_SLAB.addBlockAlternative(new BlockAlternative((short) 7792, "type=double", "waterlogged=true"));
ACACIA_SLAB.addBlockAlternative(new BlockAlternative((short) 7793, "type=double", "waterlogged=false"));
}
}

View File

@ -0,0 +1,91 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaStairs {
public static void initStates() {
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6839, "facing=north", "half=top", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6840, "facing=north", "half=top", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6841, "facing=north", "half=top", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6842, "facing=north", "half=top", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6843, "facing=north", "half=top", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6844, "facing=north", "half=top", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6845, "facing=north", "half=top", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6846, "facing=north", "half=top", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6847, "facing=north", "half=top", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6848, "facing=north", "half=top", "shape=outer_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6849, "facing=north", "half=bottom", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6850, "facing=north", "half=bottom", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6851, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6852, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6853, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6854, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6855, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6856, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6857, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6858, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6859, "facing=south", "half=top", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6860, "facing=south", "half=top", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6861, "facing=south", "half=top", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6862, "facing=south", "half=top", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6863, "facing=south", "half=top", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6864, "facing=south", "half=top", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6865, "facing=south", "half=top", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6866, "facing=south", "half=top", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6867, "facing=south", "half=top", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6868, "facing=south", "half=top", "shape=outer_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6869, "facing=south", "half=bottom", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6870, "facing=south", "half=bottom", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6871, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6872, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6873, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6874, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6875, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6876, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6877, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6878, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6879, "facing=west", "half=top", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6880, "facing=west", "half=top", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6881, "facing=west", "half=top", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6882, "facing=west", "half=top", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6883, "facing=west", "half=top", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6884, "facing=west", "half=top", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6885, "facing=west", "half=top", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6886, "facing=west", "half=top", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6887, "facing=west", "half=top", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6888, "facing=west", "half=top", "shape=outer_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6889, "facing=west", "half=bottom", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6890, "facing=west", "half=bottom", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6891, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6892, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6893, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6894, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6895, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6896, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6897, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6898, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6899, "facing=east", "half=top", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6900, "facing=east", "half=top", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6901, "facing=east", "half=top", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6902, "facing=east", "half=top", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6903, "facing=east", "half=top", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6904, "facing=east", "half=top", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6905, "facing=east", "half=top", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6906, "facing=east", "half=top", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6907, "facing=east", "half=top", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6908, "facing=east", "half=top", "shape=outer_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6909, "facing=east", "half=bottom", "shape=straight", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6910, "facing=east", "half=bottom", "shape=straight", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6911, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6912, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6913, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6914, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6915, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6916, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=false"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6917, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=true"));
ACACIA_STAIRS.addBlockAlternative(new BlockAlternative((short) 6918, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=false"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaTrapdoor {
public static void initStates() {
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4353, "facing=north", "half=top", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4354, "facing=north", "half=top", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4355, "facing=north", "half=top", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4356, "facing=north", "half=top", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4357, "facing=north", "half=top", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4358, "facing=north", "half=top", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4359, "facing=north", "half=top", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4360, "facing=north", "half=top", "open=false", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4361, "facing=north", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4362, "facing=north", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4363, "facing=north", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4364, "facing=north", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4365, "facing=north", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4366, "facing=north", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4367, "facing=north", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4368, "facing=north", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4369, "facing=south", "half=top", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4370, "facing=south", "half=top", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4371, "facing=south", "half=top", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4372, "facing=south", "half=top", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4373, "facing=south", "half=top", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4374, "facing=south", "half=top", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4375, "facing=south", "half=top", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4376, "facing=south", "half=top", "open=false", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4377, "facing=south", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4378, "facing=south", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4379, "facing=south", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4380, "facing=south", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4381, "facing=south", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4382, "facing=south", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4383, "facing=south", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4384, "facing=south", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4385, "facing=west", "half=top", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4386, "facing=west", "half=top", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4387, "facing=west", "half=top", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4388, "facing=west", "half=top", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4389, "facing=west", "half=top", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4390, "facing=west", "half=top", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4391, "facing=west", "half=top", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4392, "facing=west", "half=top", "open=false", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4393, "facing=west", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4394, "facing=west", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4395, "facing=west", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4396, "facing=west", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4397, "facing=west", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4398, "facing=west", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4399, "facing=west", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4400, "facing=west", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4401, "facing=east", "half=top", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4402, "facing=east", "half=top", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4403, "facing=east", "half=top", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4404, "facing=east", "half=top", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4405, "facing=east", "half=top", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4406, "facing=east", "half=top", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4407, "facing=east", "half=top", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4408, "facing=east", "half=top", "open=false", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4409, "facing=east", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4410, "facing=east", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4411, "facing=east", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4412, "facing=east", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4413, "facing=east", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4414, "facing=east", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4415, "facing=east", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
ACACIA_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4416, "facing=east", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
}
}

View File

@ -0,0 +1,19 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaWallSign {
public static void initStates() {
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3757, "facing=north", "waterlogged=true"));
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3758, "facing=north", "waterlogged=false"));
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3759, "facing=south", "waterlogged=true"));
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3760, "facing=south", "waterlogged=false"));
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3761, "facing=west", "waterlogged=true"));
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3762, "facing=west", "waterlogged=false"));
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3763, "facing=east", "waterlogged=true"));
ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3764, "facing=east", "waterlogged=false"));
}
}

View File

@ -0,0 +1,14 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AcaciaWood {
public static void initStates() {
ACACIA_WOOD.addBlockAlternative(new BlockAlternative((short) 120, "axis=x"));
ACACIA_WOOD.addBlockAlternative(new BlockAlternative((short) 121, "axis=y"));
ACACIA_WOOD.addBlockAlternative(new BlockAlternative((short) 122, "axis=z"));
}
}

View File

@ -0,0 +1,23 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class ActivatorRail {
public static void initStates() {
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6287, "powered=true", "shape=north_south"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6288, "powered=true", "shape=east_west"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6289, "powered=true", "shape=ascending_east"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6290, "powered=true", "shape=ascending_west"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6291, "powered=true", "shape=ascending_north"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6292, "powered=true", "shape=ascending_south"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6293, "powered=false", "shape=north_south"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6294, "powered=false", "shape=east_west"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6295, "powered=false", "shape=ascending_east"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6296, "powered=false", "shape=ascending_west"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6297, "powered=false", "shape=ascending_north"));
ACTIVATOR_RAIL.addBlockAlternative(new BlockAlternative((short) 6298, "powered=false", "shape=ascending_south"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AndesiteSlab {
public static void initStates() {
ANDESITE_SLAB.addBlockAlternative(new BlockAlternative((short) 10307, "type=top", "waterlogged=true"));
ANDESITE_SLAB.addBlockAlternative(new BlockAlternative((short) 10308, "type=top", "waterlogged=false"));
ANDESITE_SLAB.addBlockAlternative(new BlockAlternative((short) 10309, "type=bottom", "waterlogged=true"));
ANDESITE_SLAB.addBlockAlternative(new BlockAlternative((short) 10310, "type=bottom", "waterlogged=false"));
ANDESITE_SLAB.addBlockAlternative(new BlockAlternative((short) 10311, "type=double", "waterlogged=true"));
ANDESITE_SLAB.addBlockAlternative(new BlockAlternative((short) 10312, "type=double", "waterlogged=false"));
}
}

View File

@ -0,0 +1,91 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AndesiteStairs {
public static void initStates() {
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9933, "facing=north", "half=top", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9934, "facing=north", "half=top", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9935, "facing=north", "half=top", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9936, "facing=north", "half=top", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9937, "facing=north", "half=top", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9938, "facing=north", "half=top", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9939, "facing=north", "half=top", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9940, "facing=north", "half=top", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9941, "facing=north", "half=top", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9942, "facing=north", "half=top", "shape=outer_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9943, "facing=north", "half=bottom", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9944, "facing=north", "half=bottom", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9945, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9946, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9947, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9948, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9949, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9950, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9951, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9952, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9953, "facing=south", "half=top", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9954, "facing=south", "half=top", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9955, "facing=south", "half=top", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9956, "facing=south", "half=top", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9957, "facing=south", "half=top", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9958, "facing=south", "half=top", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9959, "facing=south", "half=top", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9960, "facing=south", "half=top", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9961, "facing=south", "half=top", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9962, "facing=south", "half=top", "shape=outer_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9963, "facing=south", "half=bottom", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9964, "facing=south", "half=bottom", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9965, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9966, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9967, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9968, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9969, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9970, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9971, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9972, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9973, "facing=west", "half=top", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9974, "facing=west", "half=top", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9975, "facing=west", "half=top", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9976, "facing=west", "half=top", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9977, "facing=west", "half=top", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9978, "facing=west", "half=top", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9979, "facing=west", "half=top", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9980, "facing=west", "half=top", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9981, "facing=west", "half=top", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9982, "facing=west", "half=top", "shape=outer_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9983, "facing=west", "half=bottom", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9984, "facing=west", "half=bottom", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9985, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9986, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9987, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9988, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9989, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9990, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9991, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9992, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9993, "facing=east", "half=top", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9994, "facing=east", "half=top", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9995, "facing=east", "half=top", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9996, "facing=east", "half=top", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9997, "facing=east", "half=top", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9998, "facing=east", "half=top", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 9999, "facing=east", "half=top", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10000, "facing=east", "half=top", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10001, "facing=east", "half=top", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10002, "facing=east", "half=top", "shape=outer_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10003, "facing=east", "half=bottom", "shape=straight", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10004, "facing=east", "half=bottom", "shape=straight", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10005, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10006, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10007, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10008, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10009, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10010, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=false"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10011, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=true"));
ANDESITE_STAIRS.addBlockAlternative(new BlockAlternative((short) 10012, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=false"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AndesiteWall {
public static void initStates() {
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10779, "east=true", "north=true", "south=true", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10780, "east=true", "north=true", "south=true", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10781, "east=true", "north=true", "south=true", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10782, "east=true", "north=true", "south=true", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10783, "east=true", "north=true", "south=true", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10784, "east=true", "north=true", "south=true", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10785, "east=true", "north=true", "south=true", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10786, "east=true", "north=true", "south=true", "up=false", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10787, "east=true", "north=true", "south=false", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10788, "east=true", "north=true", "south=false", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10789, "east=true", "north=true", "south=false", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10790, "east=true", "north=true", "south=false", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10791, "east=true", "north=true", "south=false", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10792, "east=true", "north=true", "south=false", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10793, "east=true", "north=true", "south=false", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10794, "east=true", "north=true", "south=false", "up=false", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10795, "east=true", "north=false", "south=true", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10796, "east=true", "north=false", "south=true", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10797, "east=true", "north=false", "south=true", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10798, "east=true", "north=false", "south=true", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10799, "east=true", "north=false", "south=true", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10800, "east=true", "north=false", "south=true", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10801, "east=true", "north=false", "south=true", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10802, "east=true", "north=false", "south=true", "up=false", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10803, "east=true", "north=false", "south=false", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10804, "east=true", "north=false", "south=false", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10805, "east=true", "north=false", "south=false", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10806, "east=true", "north=false", "south=false", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10807, "east=true", "north=false", "south=false", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10808, "east=true", "north=false", "south=false", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10809, "east=true", "north=false", "south=false", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10810, "east=true", "north=false", "south=false", "up=false", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10811, "east=false", "north=true", "south=true", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10812, "east=false", "north=true", "south=true", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10813, "east=false", "north=true", "south=true", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10814, "east=false", "north=true", "south=true", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10815, "east=false", "north=true", "south=true", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10816, "east=false", "north=true", "south=true", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10817, "east=false", "north=true", "south=true", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10818, "east=false", "north=true", "south=true", "up=false", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10819, "east=false", "north=true", "south=false", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10820, "east=false", "north=true", "south=false", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10821, "east=false", "north=true", "south=false", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10822, "east=false", "north=true", "south=false", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10823, "east=false", "north=true", "south=false", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10824, "east=false", "north=true", "south=false", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10825, "east=false", "north=true", "south=false", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10826, "east=false", "north=true", "south=false", "up=false", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10827, "east=false", "north=false", "south=true", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10828, "east=false", "north=false", "south=true", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10829, "east=false", "north=false", "south=true", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10830, "east=false", "north=false", "south=true", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10831, "east=false", "north=false", "south=true", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10832, "east=false", "north=false", "south=true", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10833, "east=false", "north=false", "south=true", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10834, "east=false", "north=false", "south=true", "up=false", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10835, "east=false", "north=false", "south=false", "up=true", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10836, "east=false", "north=false", "south=false", "up=true", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10837, "east=false", "north=false", "south=false", "up=true", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10838, "east=false", "north=false", "south=false", "up=true", "waterlogged=false", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10839, "east=false", "north=false", "south=false", "up=false", "waterlogged=true", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10840, "east=false", "north=false", "south=false", "up=false", "waterlogged=true", "west=false"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10841, "east=false", "north=false", "south=false", "up=false", "waterlogged=false", "west=true"));
ANDESITE_WALL.addBlockAlternative(new BlockAlternative((short) 10842, "east=false", "north=false", "south=false", "up=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Anvil {
public static void initStates() {
ANVIL.addBlockAlternative(new BlockAlternative((short) 6074, "facing=north"));
ANVIL.addBlockAlternative(new BlockAlternative((short) 6075, "facing=south"));
ANVIL.addBlockAlternative(new BlockAlternative((short) 6076, "facing=west"));
ANVIL.addBlockAlternative(new BlockAlternative((short) 6077, "facing=east"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AttachedMelonStem {
public static void initStates() {
ATTACHED_MELON_STEM.addBlockAlternative(new BlockAlternative((short) 4752, "facing=north"));
ATTACHED_MELON_STEM.addBlockAlternative(new BlockAlternative((short) 4753, "facing=south"));
ATTACHED_MELON_STEM.addBlockAlternative(new BlockAlternative((short) 4754, "facing=west"));
ATTACHED_MELON_STEM.addBlockAlternative(new BlockAlternative((short) 4755, "facing=east"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class AttachedPumpkinStem {
public static void initStates() {
ATTACHED_PUMPKIN_STEM.addBlockAlternative(new BlockAlternative((short) 4748, "facing=north"));
ATTACHED_PUMPKIN_STEM.addBlockAlternative(new BlockAlternative((short) 4749, "facing=south"));
ATTACHED_PUMPKIN_STEM.addBlockAlternative(new BlockAlternative((short) 4750, "facing=west"));
ATTACHED_PUMPKIN_STEM.addBlockAlternative(new BlockAlternative((short) 4751, "facing=east"));
}
}

View File

@ -0,0 +1,23 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Bamboo {
public static void initStates() {
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9116, "age=0", "leaves=none", "stage=0"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9117, "age=0", "leaves=none", "stage=1"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9118, "age=0", "leaves=small", "stage=0"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9119, "age=0", "leaves=small", "stage=1"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9120, "age=0", "leaves=large", "stage=0"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9121, "age=0", "leaves=large", "stage=1"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9122, "age=1", "leaves=none", "stage=0"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9123, "age=1", "leaves=none", "stage=1"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9124, "age=1", "leaves=small", "stage=0"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9125, "age=1", "leaves=small", "stage=1"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9126, "age=1", "leaves=large", "stage=0"));
BAMBOO.addBlockAlternative(new BlockAlternative((short) 9127, "age=1", "leaves=large", "stage=1"));
}
}

View File

@ -0,0 +1,23 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Barrel {
public static void initStates() {
BARREL.addBlockAlternative(new BlockAlternative((short) 11135, "facing=north", "open=true"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11136, "facing=north", "open=false"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11137, "facing=east", "open=true"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11138, "facing=east", "open=false"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11139, "facing=south", "open=true"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11140, "facing=south", "open=false"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11141, "facing=west", "open=true"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11142, "facing=west", "open=false"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11143, "facing=up", "open=true"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11144, "facing=up", "open=false"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11145, "facing=down", "open=true"));
BARREL.addBlockAlternative(new BlockAlternative((short) 11146, "facing=down", "open=false"));
}
}

View File

@ -0,0 +1,35 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BeeNest {
public static void initStates() {
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11287, "facing=north", "honey_level=0"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11288, "facing=north", "honey_level=1"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11289, "facing=north", "honey_level=2"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11290, "facing=north", "honey_level=3"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11291, "facing=north", "honey_level=4"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11292, "facing=north", "honey_level=5"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11293, "facing=south", "honey_level=0"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11294, "facing=south", "honey_level=1"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11295, "facing=south", "honey_level=2"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11296, "facing=south", "honey_level=3"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11297, "facing=south", "honey_level=4"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11298, "facing=south", "honey_level=5"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11299, "facing=west", "honey_level=0"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11300, "facing=west", "honey_level=1"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11301, "facing=west", "honey_level=2"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11302, "facing=west", "honey_level=3"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11303, "facing=west", "honey_level=4"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11304, "facing=west", "honey_level=5"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11305, "facing=east", "honey_level=0"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11306, "facing=east", "honey_level=1"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11307, "facing=east", "honey_level=2"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11308, "facing=east", "honey_level=3"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11309, "facing=east", "honey_level=4"));
BEE_NEST.addBlockAlternative(new BlockAlternative((short) 11310, "facing=east", "honey_level=5"));
}
}

View File

@ -0,0 +1,35 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Beehive {
public static void initStates() {
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11311, "facing=north", "honey_level=0"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11312, "facing=north", "honey_level=1"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11313, "facing=north", "honey_level=2"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11314, "facing=north", "honey_level=3"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11315, "facing=north", "honey_level=4"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11316, "facing=north", "honey_level=5"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11317, "facing=south", "honey_level=0"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11318, "facing=south", "honey_level=1"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11319, "facing=south", "honey_level=2"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11320, "facing=south", "honey_level=3"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11321, "facing=south", "honey_level=4"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11322, "facing=south", "honey_level=5"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11323, "facing=west", "honey_level=0"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11324, "facing=west", "honey_level=1"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11325, "facing=west", "honey_level=2"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11326, "facing=west", "honey_level=3"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11327, "facing=west", "honey_level=4"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11328, "facing=west", "honey_level=5"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11329, "facing=east", "honey_level=0"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11330, "facing=east", "honey_level=1"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11331, "facing=east", "honey_level=2"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11332, "facing=east", "honey_level=3"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11333, "facing=east", "honey_level=4"));
BEEHIVE.addBlockAlternative(new BlockAlternative((short) 11334, "facing=east", "honey_level=5"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Beetroots {
public static void initStates() {
BEETROOTS.addBlockAlternative(new BlockAlternative((short) 8683, "age=0"));
BEETROOTS.addBlockAlternative(new BlockAlternative((short) 8684, "age=1"));
BEETROOTS.addBlockAlternative(new BlockAlternative((short) 8685, "age=2"));
BEETROOTS.addBlockAlternative(new BlockAlternative((short) 8686, "age=3"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Bell {
public static void initStates() {
BELL.addBlockAlternative(new BlockAlternative((short) 11198, "attachment=floor", "facing=north", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11199, "attachment=floor", "facing=north", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11200, "attachment=floor", "facing=south", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11201, "attachment=floor", "facing=south", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11202, "attachment=floor", "facing=west", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11203, "attachment=floor", "facing=west", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11204, "attachment=floor", "facing=east", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11205, "attachment=floor", "facing=east", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11206, "attachment=ceiling", "facing=north", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11207, "attachment=ceiling", "facing=north", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11208, "attachment=ceiling", "facing=south", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11209, "attachment=ceiling", "facing=south", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11210, "attachment=ceiling", "facing=west", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11211, "attachment=ceiling", "facing=west", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11212, "attachment=ceiling", "facing=east", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11213, "attachment=ceiling", "facing=east", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11214, "attachment=single_wall", "facing=north", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11215, "attachment=single_wall", "facing=north", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11216, "attachment=single_wall", "facing=south", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11217, "attachment=single_wall", "facing=south", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11218, "attachment=single_wall", "facing=west", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11219, "attachment=single_wall", "facing=west", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11220, "attachment=single_wall", "facing=east", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11221, "attachment=single_wall", "facing=east", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11222, "attachment=double_wall", "facing=north", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11223, "attachment=double_wall", "facing=north", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11224, "attachment=double_wall", "facing=south", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11225, "attachment=double_wall", "facing=south", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11226, "attachment=double_wall", "facing=west", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11227, "attachment=double_wall", "facing=west", "powered=false"));
BELL.addBlockAlternative(new BlockAlternative((short) 11228, "attachment=double_wall", "facing=east", "powered=true"));
BELL.addBlockAlternative(new BlockAlternative((short) 11229, "attachment=double_wall", "facing=east", "powered=false"));
}
}

View File

@ -0,0 +1,35 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchButton {
public static void initStates() {
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5858, "face=floor", "facing=north", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5859, "face=floor", "facing=north", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5860, "face=floor", "facing=south", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5861, "face=floor", "facing=south", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5862, "face=floor", "facing=west", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5863, "face=floor", "facing=west", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5864, "face=floor", "facing=east", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5865, "face=floor", "facing=east", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5866, "face=wall", "facing=north", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5867, "face=wall", "facing=north", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5868, "face=wall", "facing=south", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5869, "face=wall", "facing=south", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5870, "face=wall", "facing=west", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5871, "face=wall", "facing=west", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5872, "face=wall", "facing=east", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5873, "face=wall", "facing=east", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5874, "face=ceiling", "facing=north", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5875, "face=ceiling", "facing=north", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5876, "face=ceiling", "facing=south", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5877, "face=ceiling", "facing=south", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5878, "face=ceiling", "facing=west", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5879, "face=ceiling", "facing=west", "powered=false"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5880, "face=ceiling", "facing=east", "powered=true"));
BIRCH_BUTTON.addBlockAlternative(new BlockAlternative((short) 5881, "face=ceiling", "facing=east", "powered=false"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchDoor {
public static void initStates() {
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8266, "facing=north", "half=upper", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8267, "facing=north", "half=upper", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8268, "facing=north", "half=upper", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8269, "facing=north", "half=upper", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8270, "facing=north", "half=upper", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8271, "facing=north", "half=upper", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8272, "facing=north", "half=upper", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8273, "facing=north", "half=upper", "hinge=right", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8274, "facing=north", "half=lower", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8275, "facing=north", "half=lower", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8276, "facing=north", "half=lower", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8277, "facing=north", "half=lower", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8278, "facing=north", "half=lower", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8279, "facing=north", "half=lower", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8280, "facing=north", "half=lower", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8281, "facing=north", "half=lower", "hinge=right", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8282, "facing=south", "half=upper", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8283, "facing=south", "half=upper", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8284, "facing=south", "half=upper", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8285, "facing=south", "half=upper", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8286, "facing=south", "half=upper", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8287, "facing=south", "half=upper", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8288, "facing=south", "half=upper", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8289, "facing=south", "half=upper", "hinge=right", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8290, "facing=south", "half=lower", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8291, "facing=south", "half=lower", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8292, "facing=south", "half=lower", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8293, "facing=south", "half=lower", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8294, "facing=south", "half=lower", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8295, "facing=south", "half=lower", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8296, "facing=south", "half=lower", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8297, "facing=south", "half=lower", "hinge=right", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8298, "facing=west", "half=upper", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8299, "facing=west", "half=upper", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8300, "facing=west", "half=upper", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8301, "facing=west", "half=upper", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8302, "facing=west", "half=upper", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8303, "facing=west", "half=upper", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8304, "facing=west", "half=upper", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8305, "facing=west", "half=upper", "hinge=right", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8306, "facing=west", "half=lower", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8307, "facing=west", "half=lower", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8308, "facing=west", "half=lower", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8309, "facing=west", "half=lower", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8310, "facing=west", "half=lower", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8311, "facing=west", "half=lower", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8312, "facing=west", "half=lower", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8313, "facing=west", "half=lower", "hinge=right", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8314, "facing=east", "half=upper", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8315, "facing=east", "half=upper", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8316, "facing=east", "half=upper", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8317, "facing=east", "half=upper", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8318, "facing=east", "half=upper", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8319, "facing=east", "half=upper", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8320, "facing=east", "half=upper", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8321, "facing=east", "half=upper", "hinge=right", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8322, "facing=east", "half=lower", "hinge=left", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8323, "facing=east", "half=lower", "hinge=left", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8324, "facing=east", "half=lower", "hinge=left", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8325, "facing=east", "half=lower", "hinge=left", "open=false", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8326, "facing=east", "half=lower", "hinge=right", "open=true", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8327, "facing=east", "half=lower", "hinge=right", "open=true", "powered=false"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8328, "facing=east", "half=lower", "hinge=right", "open=false", "powered=true"));
BIRCH_DOOR.addBlockAlternative(new BlockAlternative((short) 8329, "facing=east", "half=lower", "hinge=right", "open=false", "powered=false"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchFence {
public static void initStates() {
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8074, "east=true", "north=true", "south=true", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8075, "east=true", "north=true", "south=true", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8076, "east=true", "north=true", "south=true", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8077, "east=true", "north=true", "south=true", "waterlogged=false", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8078, "east=true", "north=true", "south=false", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8079, "east=true", "north=true", "south=false", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8080, "east=true", "north=true", "south=false", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8081, "east=true", "north=true", "south=false", "waterlogged=false", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8082, "east=true", "north=false", "south=true", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8083, "east=true", "north=false", "south=true", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8084, "east=true", "north=false", "south=true", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8085, "east=true", "north=false", "south=true", "waterlogged=false", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8086, "east=true", "north=false", "south=false", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8087, "east=true", "north=false", "south=false", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8088, "east=true", "north=false", "south=false", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8089, "east=true", "north=false", "south=false", "waterlogged=false", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8090, "east=false", "north=true", "south=true", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8091, "east=false", "north=true", "south=true", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8092, "east=false", "north=true", "south=true", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8093, "east=false", "north=true", "south=true", "waterlogged=false", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8094, "east=false", "north=true", "south=false", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8095, "east=false", "north=true", "south=false", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8096, "east=false", "north=true", "south=false", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8097, "east=false", "north=true", "south=false", "waterlogged=false", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8098, "east=false", "north=false", "south=true", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8099, "east=false", "north=false", "south=true", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8100, "east=false", "north=false", "south=true", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8101, "east=false", "north=false", "south=true", "waterlogged=false", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8102, "east=false", "north=false", "south=false", "waterlogged=true", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8103, "east=false", "north=false", "south=false", "waterlogged=true", "west=false"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8104, "east=false", "north=false", "south=false", "waterlogged=false", "west=true"));
BIRCH_FENCE.addBlockAlternative(new BlockAlternative((short) 8105, "east=false", "north=false", "south=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchFenceGate {
public static void initStates() {
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7914, "facing=north", "in_wall=true", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7915, "facing=north", "in_wall=true", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7916, "facing=north", "in_wall=true", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7917, "facing=north", "in_wall=true", "open=false", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7918, "facing=north", "in_wall=false", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7919, "facing=north", "in_wall=false", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7920, "facing=north", "in_wall=false", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7921, "facing=north", "in_wall=false", "open=false", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7922, "facing=south", "in_wall=true", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7923, "facing=south", "in_wall=true", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7924, "facing=south", "in_wall=true", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7925, "facing=south", "in_wall=true", "open=false", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7926, "facing=south", "in_wall=false", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7927, "facing=south", "in_wall=false", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7928, "facing=south", "in_wall=false", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7929, "facing=south", "in_wall=false", "open=false", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7930, "facing=west", "in_wall=true", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7931, "facing=west", "in_wall=true", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7932, "facing=west", "in_wall=true", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7933, "facing=west", "in_wall=true", "open=false", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7934, "facing=west", "in_wall=false", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7935, "facing=west", "in_wall=false", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7936, "facing=west", "in_wall=false", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7937, "facing=west", "in_wall=false", "open=false", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7938, "facing=east", "in_wall=true", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7939, "facing=east", "in_wall=true", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7940, "facing=east", "in_wall=true", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7941, "facing=east", "in_wall=true", "open=false", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7942, "facing=east", "in_wall=false", "open=true", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7943, "facing=east", "in_wall=false", "open=true", "powered=false"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7944, "facing=east", "in_wall=false", "open=false", "powered=true"));
BIRCH_FENCE_GATE.addBlockAlternative(new BlockAlternative((short) 7945, "facing=east", "in_wall=false", "open=false", "powered=false"));
}
}

View File

@ -0,0 +1,25 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchLeaves {
public static void initStates() {
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 172, "distance=1", "persistent=true"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 173, "distance=1", "persistent=false"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 174, "distance=2", "persistent=true"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 175, "distance=2", "persistent=false"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 176, "distance=3", "persistent=true"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 177, "distance=3", "persistent=false"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 178, "distance=4", "persistent=true"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 179, "distance=4", "persistent=false"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 180, "distance=5", "persistent=true"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 181, "distance=5", "persistent=false"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 182, "distance=6", "persistent=true"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 183, "distance=6", "persistent=false"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 184, "distance=7", "persistent=true"));
BIRCH_LEAVES.addBlockAlternative(new BlockAlternative((short) 185, "distance=7", "persistent=false"));
}
}

View File

@ -0,0 +1,14 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchLog {
public static void initStates() {
BIRCH_LOG.addBlockAlternative(new BlockAlternative((short) 78, "axis=x"));
BIRCH_LOG.addBlockAlternative(new BlockAlternative((short) 79, "axis=y"));
BIRCH_LOG.addBlockAlternative(new BlockAlternative((short) 80, "axis=z"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchPressurePlate {
public static void initStates() {
BIRCH_PRESSURE_PLATE.addBlockAlternative(new BlockAlternative((short) 3875, "powered=true"));
BIRCH_PRESSURE_PLATE.addBlockAlternative(new BlockAlternative((short) 3876, "powered=false"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchSapling {
public static void initStates() {
BIRCH_SAPLING.addBlockAlternative(new BlockAlternative((short) 25, "stage=0"));
BIRCH_SAPLING.addBlockAlternative(new BlockAlternative((short) 26, "stage=1"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchSign {
public static void initStates() {
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3443, "rotation=0", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3444, "rotation=0", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3445, "rotation=1", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3446, "rotation=1", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3447, "rotation=2", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3448, "rotation=2", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3449, "rotation=3", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3450, "rotation=3", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3451, "rotation=4", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3452, "rotation=4", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3453, "rotation=5", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3454, "rotation=5", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3455, "rotation=6", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3456, "rotation=6", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3457, "rotation=7", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3458, "rotation=7", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3459, "rotation=8", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3460, "rotation=8", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3461, "rotation=9", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3462, "rotation=9", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3463, "rotation=10", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3464, "rotation=10", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3465, "rotation=11", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3466, "rotation=11", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3467, "rotation=12", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3468, "rotation=12", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3469, "rotation=13", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3470, "rotation=13", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3471, "rotation=14", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3472, "rotation=14", "waterlogged=false"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3473, "rotation=15", "waterlogged=true"));
BIRCH_SIGN.addBlockAlternative(new BlockAlternative((short) 3474, "rotation=15", "waterlogged=false"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchSlab {
public static void initStates() {
BIRCH_SLAB.addBlockAlternative(new BlockAlternative((short) 7776, "type=top", "waterlogged=true"));
BIRCH_SLAB.addBlockAlternative(new BlockAlternative((short) 7777, "type=top", "waterlogged=false"));
BIRCH_SLAB.addBlockAlternative(new BlockAlternative((short) 7778, "type=bottom", "waterlogged=true"));
BIRCH_SLAB.addBlockAlternative(new BlockAlternative((short) 7779, "type=bottom", "waterlogged=false"));
BIRCH_SLAB.addBlockAlternative(new BlockAlternative((short) 7780, "type=double", "waterlogged=true"));
BIRCH_SLAB.addBlockAlternative(new BlockAlternative((short) 7781, "type=double", "waterlogged=false"));
}
}

View File

@ -0,0 +1,91 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchStairs {
public static void initStates() {
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5468, "facing=north", "half=top", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5469, "facing=north", "half=top", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5470, "facing=north", "half=top", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5471, "facing=north", "half=top", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5472, "facing=north", "half=top", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5473, "facing=north", "half=top", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5474, "facing=north", "half=top", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5475, "facing=north", "half=top", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5476, "facing=north", "half=top", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5477, "facing=north", "half=top", "shape=outer_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5478, "facing=north", "half=bottom", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5479, "facing=north", "half=bottom", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5480, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5481, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5482, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5483, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5484, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5485, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5486, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5487, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5488, "facing=south", "half=top", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5489, "facing=south", "half=top", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5490, "facing=south", "half=top", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5491, "facing=south", "half=top", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5492, "facing=south", "half=top", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5493, "facing=south", "half=top", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5494, "facing=south", "half=top", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5495, "facing=south", "half=top", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5496, "facing=south", "half=top", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5497, "facing=south", "half=top", "shape=outer_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5498, "facing=south", "half=bottom", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5499, "facing=south", "half=bottom", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5500, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5501, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5502, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5503, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5504, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5505, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5506, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5507, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5508, "facing=west", "half=top", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5509, "facing=west", "half=top", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5510, "facing=west", "half=top", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5511, "facing=west", "half=top", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5512, "facing=west", "half=top", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5513, "facing=west", "half=top", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5514, "facing=west", "half=top", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5515, "facing=west", "half=top", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5516, "facing=west", "half=top", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5517, "facing=west", "half=top", "shape=outer_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5518, "facing=west", "half=bottom", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5519, "facing=west", "half=bottom", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5520, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5521, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5522, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5523, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5524, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5525, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5526, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5527, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5528, "facing=east", "half=top", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5529, "facing=east", "half=top", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5530, "facing=east", "half=top", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5531, "facing=east", "half=top", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5532, "facing=east", "half=top", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5533, "facing=east", "half=top", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5534, "facing=east", "half=top", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5535, "facing=east", "half=top", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5536, "facing=east", "half=top", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5537, "facing=east", "half=top", "shape=outer_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5538, "facing=east", "half=bottom", "shape=straight", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5539, "facing=east", "half=bottom", "shape=straight", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5540, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5541, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5542, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5543, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5544, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5545, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=false"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5546, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=true"));
BIRCH_STAIRS.addBlockAlternative(new BlockAlternative((short) 5547, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=false"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchTrapdoor {
public static void initStates() {
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4225, "facing=north", "half=top", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4226, "facing=north", "half=top", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4227, "facing=north", "half=top", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4228, "facing=north", "half=top", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4229, "facing=north", "half=top", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4230, "facing=north", "half=top", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4231, "facing=north", "half=top", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4232, "facing=north", "half=top", "open=false", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4233, "facing=north", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4234, "facing=north", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4235, "facing=north", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4236, "facing=north", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4237, "facing=north", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4238, "facing=north", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4239, "facing=north", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4240, "facing=north", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4241, "facing=south", "half=top", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4242, "facing=south", "half=top", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4243, "facing=south", "half=top", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4244, "facing=south", "half=top", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4245, "facing=south", "half=top", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4246, "facing=south", "half=top", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4247, "facing=south", "half=top", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4248, "facing=south", "half=top", "open=false", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4249, "facing=south", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4250, "facing=south", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4251, "facing=south", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4252, "facing=south", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4253, "facing=south", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4254, "facing=south", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4255, "facing=south", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4256, "facing=south", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4257, "facing=west", "half=top", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4258, "facing=west", "half=top", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4259, "facing=west", "half=top", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4260, "facing=west", "half=top", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4261, "facing=west", "half=top", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4262, "facing=west", "half=top", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4263, "facing=west", "half=top", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4264, "facing=west", "half=top", "open=false", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4265, "facing=west", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4266, "facing=west", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4267, "facing=west", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4268, "facing=west", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4269, "facing=west", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4270, "facing=west", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4271, "facing=west", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4272, "facing=west", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4273, "facing=east", "half=top", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4274, "facing=east", "half=top", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4275, "facing=east", "half=top", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4276, "facing=east", "half=top", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4277, "facing=east", "half=top", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4278, "facing=east", "half=top", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4279, "facing=east", "half=top", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4280, "facing=east", "half=top", "open=false", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4281, "facing=east", "half=bottom", "open=true", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4282, "facing=east", "half=bottom", "open=true", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4283, "facing=east", "half=bottom", "open=true", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4284, "facing=east", "half=bottom", "open=true", "powered=false", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4285, "facing=east", "half=bottom", "open=false", "powered=true", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4286, "facing=east", "half=bottom", "open=false", "powered=true", "waterlogged=false"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4287, "facing=east", "half=bottom", "open=false", "powered=false", "waterlogged=true"));
BIRCH_TRAPDOOR.addBlockAlternative(new BlockAlternative((short) 4288, "facing=east", "half=bottom", "open=false", "powered=false", "waterlogged=false"));
}
}

View File

@ -0,0 +1,19 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchWallSign {
public static void initStates() {
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3749, "facing=north", "waterlogged=true"));
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3750, "facing=north", "waterlogged=false"));
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3751, "facing=south", "waterlogged=true"));
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3752, "facing=south", "waterlogged=false"));
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3753, "facing=west", "waterlogged=true"));
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3754, "facing=west", "waterlogged=false"));
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3755, "facing=east", "waterlogged=true"));
BIRCH_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3756, "facing=east", "waterlogged=false"));
}
}

View File

@ -0,0 +1,14 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BirchWood {
public static void initStates() {
BIRCH_WOOD.addBlockAlternative(new BlockAlternative((short) 114, "axis=x"));
BIRCH_WOOD.addBlockAlternative(new BlockAlternative((short) 115, "axis=y"));
BIRCH_WOOD.addBlockAlternative(new BlockAlternative((short) 116, "axis=z"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlackBanner {
public static void initStates() {
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7601, "rotation=0"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7602, "rotation=1"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7603, "rotation=2"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7604, "rotation=3"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7605, "rotation=4"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7606, "rotation=5"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7607, "rotation=6"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7608, "rotation=7"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7609, "rotation=8"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7610, "rotation=9"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7611, "rotation=10"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7612, "rotation=11"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7613, "rotation=12"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7614, "rotation=13"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7615, "rotation=14"));
BLACK_BANNER.addBlockAlternative(new BlockAlternative((short) 7616, "rotation=15"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlackBed {
public static void initStates() {
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1288, "facing=north", "occupied=true", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1289, "facing=north", "occupied=true", "part=foot"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1290, "facing=north", "occupied=false", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1291, "facing=north", "occupied=false", "part=foot"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1292, "facing=south", "occupied=true", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1293, "facing=south", "occupied=true", "part=foot"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1294, "facing=south", "occupied=false", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1295, "facing=south", "occupied=false", "part=foot"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1296, "facing=west", "occupied=true", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1297, "facing=west", "occupied=true", "part=foot"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1298, "facing=west", "occupied=false", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1299, "facing=west", "occupied=false", "part=foot"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1300, "facing=east", "occupied=true", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1301, "facing=east", "occupied=true", "part=foot"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1302, "facing=east", "occupied=false", "part=head"));
BLACK_BED.addBlockAlternative(new BlockAlternative((short) 1303, "facing=east", "occupied=false", "part=foot"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlackGlazedTerracotta {
public static void initStates() {
BLACK_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8898, "facing=north"));
BLACK_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8899, "facing=south"));
BLACK_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8900, "facing=west"));
BLACK_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8901, "facing=east"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlackShulkerBox {
public static void initStates() {
BLACK_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8832, "facing=north"));
BLACK_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8833, "facing=east"));
BLACK_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8834, "facing=south"));
BLACK_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8835, "facing=west"));
BLACK_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8836, "facing=up"));
BLACK_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8837, "facing=down"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlackStainedGlassPane {
public static void initStates() {
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6807, "east=true", "north=true", "south=true", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6808, "east=true", "north=true", "south=true", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6809, "east=true", "north=true", "south=true", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6810, "east=true", "north=true", "south=true", "waterlogged=false", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6811, "east=true", "north=true", "south=false", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6812, "east=true", "north=true", "south=false", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6813, "east=true", "north=true", "south=false", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6814, "east=true", "north=true", "south=false", "waterlogged=false", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6815, "east=true", "north=false", "south=true", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6816, "east=true", "north=false", "south=true", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6817, "east=true", "north=false", "south=true", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6818, "east=true", "north=false", "south=true", "waterlogged=false", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6819, "east=true", "north=false", "south=false", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6820, "east=true", "north=false", "south=false", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6821, "east=true", "north=false", "south=false", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6822, "east=true", "north=false", "south=false", "waterlogged=false", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6823, "east=false", "north=true", "south=true", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6824, "east=false", "north=true", "south=true", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6825, "east=false", "north=true", "south=true", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6826, "east=false", "north=true", "south=true", "waterlogged=false", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6827, "east=false", "north=true", "south=false", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6828, "east=false", "north=true", "south=false", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6829, "east=false", "north=true", "south=false", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6830, "east=false", "north=true", "south=false", "waterlogged=false", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6831, "east=false", "north=false", "south=true", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6832, "east=false", "north=false", "south=true", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6833, "east=false", "north=false", "south=true", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6834, "east=false", "north=false", "south=true", "waterlogged=false", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6835, "east=false", "north=false", "south=false", "waterlogged=true", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6836, "east=false", "north=false", "south=false", "waterlogged=true", "west=false"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6837, "east=false", "north=false", "south=false", "waterlogged=false", "west=true"));
BLACK_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6838, "east=false", "north=false", "south=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlackWallBanner {
public static void initStates() {
BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7677, "facing=north"));
BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7678, "facing=south"));
BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7679, "facing=west"));
BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7680, "facing=east"));
}
}

View File

@ -0,0 +1,19 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlastFurnace {
public static void initStates() {
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11155, "facing=north", "lit=true"));
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11156, "facing=north", "lit=false"));
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11157, "facing=south", "lit=true"));
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11158, "facing=south", "lit=false"));
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11159, "facing=west", "lit=true"));
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11160, "facing=west", "lit=false"));
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11161, "facing=east", "lit=true"));
BLAST_FURNACE.addBlockAlternative(new BlockAlternative((short) 11162, "facing=east", "lit=false"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlueBanner {
public static void initStates() {
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7537, "rotation=0"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7538, "rotation=1"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7539, "rotation=2"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7540, "rotation=3"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7541, "rotation=4"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7542, "rotation=5"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7543, "rotation=6"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7544, "rotation=7"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7545, "rotation=8"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7546, "rotation=9"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7547, "rotation=10"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7548, "rotation=11"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7549, "rotation=12"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7550, "rotation=13"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7551, "rotation=14"));
BLUE_BANNER.addBlockAlternative(new BlockAlternative((short) 7552, "rotation=15"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlueBed {
public static void initStates() {
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1224, "facing=north", "occupied=true", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1225, "facing=north", "occupied=true", "part=foot"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1226, "facing=north", "occupied=false", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1227, "facing=north", "occupied=false", "part=foot"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1228, "facing=south", "occupied=true", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1229, "facing=south", "occupied=true", "part=foot"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1230, "facing=south", "occupied=false", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1231, "facing=south", "occupied=false", "part=foot"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1232, "facing=west", "occupied=true", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1233, "facing=west", "occupied=true", "part=foot"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1234, "facing=west", "occupied=false", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1235, "facing=west", "occupied=false", "part=foot"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1236, "facing=east", "occupied=true", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1237, "facing=east", "occupied=true", "part=foot"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1238, "facing=east", "occupied=false", "part=head"));
BLUE_BED.addBlockAlternative(new BlockAlternative((short) 1239, "facing=east", "occupied=false", "part=foot"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlueGlazedTerracotta {
public static void initStates() {
BLUE_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8882, "facing=north"));
BLUE_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8883, "facing=south"));
BLUE_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8884, "facing=west"));
BLUE_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8885, "facing=east"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlueShulkerBox {
public static void initStates() {
BLUE_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8808, "facing=north"));
BLUE_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8809, "facing=east"));
BLUE_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8810, "facing=south"));
BLUE_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8811, "facing=west"));
BLUE_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8812, "facing=up"));
BLUE_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8813, "facing=down"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlueStainedGlassPane {
public static void initStates() {
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6679, "east=true", "north=true", "south=true", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6680, "east=true", "north=true", "south=true", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6681, "east=true", "north=true", "south=true", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6682, "east=true", "north=true", "south=true", "waterlogged=false", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6683, "east=true", "north=true", "south=false", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6684, "east=true", "north=true", "south=false", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6685, "east=true", "north=true", "south=false", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6686, "east=true", "north=true", "south=false", "waterlogged=false", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6687, "east=true", "north=false", "south=true", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6688, "east=true", "north=false", "south=true", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6689, "east=true", "north=false", "south=true", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6690, "east=true", "north=false", "south=true", "waterlogged=false", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6691, "east=true", "north=false", "south=false", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6692, "east=true", "north=false", "south=false", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6693, "east=true", "north=false", "south=false", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6694, "east=true", "north=false", "south=false", "waterlogged=false", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6695, "east=false", "north=true", "south=true", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6696, "east=false", "north=true", "south=true", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6697, "east=false", "north=true", "south=true", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6698, "east=false", "north=true", "south=true", "waterlogged=false", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6699, "east=false", "north=true", "south=false", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6700, "east=false", "north=true", "south=false", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6701, "east=false", "north=true", "south=false", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6702, "east=false", "north=true", "south=false", "waterlogged=false", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6703, "east=false", "north=false", "south=true", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6704, "east=false", "north=false", "south=true", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6705, "east=false", "north=false", "south=true", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6706, "east=false", "north=false", "south=true", "waterlogged=false", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6707, "east=false", "north=false", "south=false", "waterlogged=true", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6708, "east=false", "north=false", "south=false", "waterlogged=true", "west=false"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6709, "east=false", "north=false", "south=false", "waterlogged=false", "west=true"));
BLUE_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6710, "east=false", "north=false", "south=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BlueWallBanner {
public static void initStates() {
BLUE_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7661, "facing=north"));
BLUE_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7662, "facing=south"));
BLUE_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7663, "facing=west"));
BLUE_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7664, "facing=east"));
}
}

View File

@ -0,0 +1,14 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BoneBlock {
public static void initStates() {
BONE_BLOCK.addBlockAlternative(new BlockAlternative((short) 8720, "axis=x"));
BONE_BLOCK.addBlockAlternative(new BlockAlternative((short) 8721, "axis=y"));
BONE_BLOCK.addBlockAlternative(new BlockAlternative((short) 8722, "axis=z"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrainCoral {
public static void initStates() {
BRAIN_CORAL.addBlockAlternative(new BlockAlternative((short) 8996, "waterlogged=true"));
BRAIN_CORAL.addBlockAlternative(new BlockAlternative((short) 8997, "waterlogged=false"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrainCoralFan {
public static void initStates() {
BRAIN_CORAL_FAN.addBlockAlternative(new BlockAlternative((short) 9016, "waterlogged=true"));
BRAIN_CORAL_FAN.addBlockAlternative(new BlockAlternative((short) 9017, "waterlogged=false"));
}
}

View File

@ -0,0 +1,19 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrainCoralWallFan {
public static void initStates() {
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9072, "facing=north", "waterlogged=true"));
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9073, "facing=north", "waterlogged=false"));
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9074, "facing=south", "waterlogged=true"));
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9075, "facing=south", "waterlogged=false"));
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9076, "facing=west", "waterlogged=true"));
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9077, "facing=west", "waterlogged=false"));
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9078, "facing=east", "waterlogged=true"));
BRAIN_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9079, "facing=east", "waterlogged=false"));
}
}

View File

@ -0,0 +1,19 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrewingStand {
public static void initStates() {
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5117, "has_bottle_0=true", "has_bottle_1=true", "has_bottle_2=true"));
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5118, "has_bottle_0=true", "has_bottle_1=true", "has_bottle_2=false"));
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5119, "has_bottle_0=true", "has_bottle_1=false", "has_bottle_2=true"));
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5120, "has_bottle_0=true", "has_bottle_1=false", "has_bottle_2=false"));
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5121, "has_bottle_0=false", "has_bottle_1=true", "has_bottle_2=true"));
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5122, "has_bottle_0=false", "has_bottle_1=true", "has_bottle_2=false"));
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5123, "has_bottle_0=false", "has_bottle_1=false", "has_bottle_2=true"));
BREWING_STAND.addBlockAlternative(new BlockAlternative((short) 5124, "has_bottle_0=false", "has_bottle_1=false", "has_bottle_2=false"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrickSlab {
public static void initStates() {
BRICK_SLAB.addBlockAlternative(new BlockAlternative((short) 7836, "type=top", "waterlogged=true"));
BRICK_SLAB.addBlockAlternative(new BlockAlternative((short) 7837, "type=top", "waterlogged=false"));
BRICK_SLAB.addBlockAlternative(new BlockAlternative((short) 7838, "type=bottom", "waterlogged=true"));
BRICK_SLAB.addBlockAlternative(new BlockAlternative((short) 7839, "type=bottom", "waterlogged=false"));
BRICK_SLAB.addBlockAlternative(new BlockAlternative((short) 7840, "type=double", "waterlogged=true"));
BRICK_SLAB.addBlockAlternative(new BlockAlternative((short) 7841, "type=double", "waterlogged=false"));
}
}

View File

@ -0,0 +1,91 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrickStairs {
public static void initStates() {
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4836, "facing=north", "half=top", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4837, "facing=north", "half=top", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4838, "facing=north", "half=top", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4839, "facing=north", "half=top", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4840, "facing=north", "half=top", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4841, "facing=north", "half=top", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4842, "facing=north", "half=top", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4843, "facing=north", "half=top", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4844, "facing=north", "half=top", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4845, "facing=north", "half=top", "shape=outer_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4846, "facing=north", "half=bottom", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4847, "facing=north", "half=bottom", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4848, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4849, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4850, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4851, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4852, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4853, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4854, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4855, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4856, "facing=south", "half=top", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4857, "facing=south", "half=top", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4858, "facing=south", "half=top", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4859, "facing=south", "half=top", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4860, "facing=south", "half=top", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4861, "facing=south", "half=top", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4862, "facing=south", "half=top", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4863, "facing=south", "half=top", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4864, "facing=south", "half=top", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4865, "facing=south", "half=top", "shape=outer_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4866, "facing=south", "half=bottom", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4867, "facing=south", "half=bottom", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4868, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4869, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4870, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4871, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4872, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4873, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4874, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4875, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4876, "facing=west", "half=top", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4877, "facing=west", "half=top", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4878, "facing=west", "half=top", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4879, "facing=west", "half=top", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4880, "facing=west", "half=top", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4881, "facing=west", "half=top", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4882, "facing=west", "half=top", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4883, "facing=west", "half=top", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4884, "facing=west", "half=top", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4885, "facing=west", "half=top", "shape=outer_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4886, "facing=west", "half=bottom", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4887, "facing=west", "half=bottom", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4888, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4889, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4890, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4891, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4892, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4893, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4894, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4895, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4896, "facing=east", "half=top", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4897, "facing=east", "half=top", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4898, "facing=east", "half=top", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4899, "facing=east", "half=top", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4900, "facing=east", "half=top", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4901, "facing=east", "half=top", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4902, "facing=east", "half=top", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4903, "facing=east", "half=top", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4904, "facing=east", "half=top", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4905, "facing=east", "half=top", "shape=outer_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4906, "facing=east", "half=bottom", "shape=straight", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4907, "facing=east", "half=bottom", "shape=straight", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4908, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4909, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4910, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4911, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4912, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4913, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=false"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4914, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=true"));
BRICK_STAIRS.addBlockAlternative(new BlockAlternative((short) 4915, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=false"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrickWall {
public static void initStates() {
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10331, "east=true", "north=true", "south=true", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10332, "east=true", "north=true", "south=true", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10333, "east=true", "north=true", "south=true", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10334, "east=true", "north=true", "south=true", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10335, "east=true", "north=true", "south=true", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10336, "east=true", "north=true", "south=true", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10337, "east=true", "north=true", "south=true", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10338, "east=true", "north=true", "south=true", "up=false", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10339, "east=true", "north=true", "south=false", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10340, "east=true", "north=true", "south=false", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10341, "east=true", "north=true", "south=false", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10342, "east=true", "north=true", "south=false", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10343, "east=true", "north=true", "south=false", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10344, "east=true", "north=true", "south=false", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10345, "east=true", "north=true", "south=false", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10346, "east=true", "north=true", "south=false", "up=false", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10347, "east=true", "north=false", "south=true", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10348, "east=true", "north=false", "south=true", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10349, "east=true", "north=false", "south=true", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10350, "east=true", "north=false", "south=true", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10351, "east=true", "north=false", "south=true", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10352, "east=true", "north=false", "south=true", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10353, "east=true", "north=false", "south=true", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10354, "east=true", "north=false", "south=true", "up=false", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10355, "east=true", "north=false", "south=false", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10356, "east=true", "north=false", "south=false", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10357, "east=true", "north=false", "south=false", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10358, "east=true", "north=false", "south=false", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10359, "east=true", "north=false", "south=false", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10360, "east=true", "north=false", "south=false", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10361, "east=true", "north=false", "south=false", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10362, "east=true", "north=false", "south=false", "up=false", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10363, "east=false", "north=true", "south=true", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10364, "east=false", "north=true", "south=true", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10365, "east=false", "north=true", "south=true", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10366, "east=false", "north=true", "south=true", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10367, "east=false", "north=true", "south=true", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10368, "east=false", "north=true", "south=true", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10369, "east=false", "north=true", "south=true", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10370, "east=false", "north=true", "south=true", "up=false", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10371, "east=false", "north=true", "south=false", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10372, "east=false", "north=true", "south=false", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10373, "east=false", "north=true", "south=false", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10374, "east=false", "north=true", "south=false", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10375, "east=false", "north=true", "south=false", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10376, "east=false", "north=true", "south=false", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10377, "east=false", "north=true", "south=false", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10378, "east=false", "north=true", "south=false", "up=false", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10379, "east=false", "north=false", "south=true", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10380, "east=false", "north=false", "south=true", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10381, "east=false", "north=false", "south=true", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10382, "east=false", "north=false", "south=true", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10383, "east=false", "north=false", "south=true", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10384, "east=false", "north=false", "south=true", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10385, "east=false", "north=false", "south=true", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10386, "east=false", "north=false", "south=true", "up=false", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10387, "east=false", "north=false", "south=false", "up=true", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10388, "east=false", "north=false", "south=false", "up=true", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10389, "east=false", "north=false", "south=false", "up=true", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10390, "east=false", "north=false", "south=false", "up=true", "waterlogged=false", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10391, "east=false", "north=false", "south=false", "up=false", "waterlogged=true", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10392, "east=false", "north=false", "south=false", "up=false", "waterlogged=true", "west=false"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10393, "east=false", "north=false", "south=false", "up=false", "waterlogged=false", "west=true"));
BRICK_WALL.addBlockAlternative(new BlockAlternative((short) 10394, "east=false", "north=false", "south=false", "up=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrownBanner {
public static void initStates() {
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7553, "rotation=0"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7554, "rotation=1"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7555, "rotation=2"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7556, "rotation=3"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7557, "rotation=4"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7558, "rotation=5"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7559, "rotation=6"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7560, "rotation=7"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7561, "rotation=8"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7562, "rotation=9"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7563, "rotation=10"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7564, "rotation=11"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7565, "rotation=12"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7566, "rotation=13"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7567, "rotation=14"));
BROWN_BANNER.addBlockAlternative(new BlockAlternative((short) 7568, "rotation=15"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrownBed {
public static void initStates() {
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1240, "facing=north", "occupied=true", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1241, "facing=north", "occupied=true", "part=foot"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1242, "facing=north", "occupied=false", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1243, "facing=north", "occupied=false", "part=foot"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1244, "facing=south", "occupied=true", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1245, "facing=south", "occupied=true", "part=foot"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1246, "facing=south", "occupied=false", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1247, "facing=south", "occupied=false", "part=foot"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1248, "facing=west", "occupied=true", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1249, "facing=west", "occupied=true", "part=foot"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1250, "facing=west", "occupied=false", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1251, "facing=west", "occupied=false", "part=foot"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1252, "facing=east", "occupied=true", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1253, "facing=east", "occupied=true", "part=foot"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1254, "facing=east", "occupied=false", "part=head"));
BROWN_BED.addBlockAlternative(new BlockAlternative((short) 1255, "facing=east", "occupied=false", "part=foot"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrownGlazedTerracotta {
public static void initStates() {
BROWN_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8886, "facing=north"));
BROWN_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8887, "facing=south"));
BROWN_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8888, "facing=west"));
BROWN_GLAZED_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 8889, "facing=east"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrownMushroomBlock {
public static void initStates() {
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4491, "down=true", "east=true", "north=true", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4492, "down=true", "east=true", "north=true", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4493, "down=true", "east=true", "north=true", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4494, "down=true", "east=true", "north=true", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4495, "down=true", "east=true", "north=true", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4496, "down=true", "east=true", "north=true", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4497, "down=true", "east=true", "north=true", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4498, "down=true", "east=true", "north=true", "south=false", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4499, "down=true", "east=true", "north=false", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4500, "down=true", "east=true", "north=false", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4501, "down=true", "east=true", "north=false", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4502, "down=true", "east=true", "north=false", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4503, "down=true", "east=true", "north=false", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4504, "down=true", "east=true", "north=false", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4505, "down=true", "east=true", "north=false", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4506, "down=true", "east=true", "north=false", "south=false", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4507, "down=true", "east=false", "north=true", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4508, "down=true", "east=false", "north=true", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4509, "down=true", "east=false", "north=true", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4510, "down=true", "east=false", "north=true", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4511, "down=true", "east=false", "north=true", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4512, "down=true", "east=false", "north=true", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4513, "down=true", "east=false", "north=true", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4514, "down=true", "east=false", "north=true", "south=false", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4515, "down=true", "east=false", "north=false", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4516, "down=true", "east=false", "north=false", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4517, "down=true", "east=false", "north=false", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4518, "down=true", "east=false", "north=false", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4519, "down=true", "east=false", "north=false", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4520, "down=true", "east=false", "north=false", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4521, "down=true", "east=false", "north=false", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4522, "down=true", "east=false", "north=false", "south=false", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4523, "down=false", "east=true", "north=true", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4524, "down=false", "east=true", "north=true", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4525, "down=false", "east=true", "north=true", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4526, "down=false", "east=true", "north=true", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4527, "down=false", "east=true", "north=true", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4528, "down=false", "east=true", "north=true", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4529, "down=false", "east=true", "north=true", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4530, "down=false", "east=true", "north=true", "south=false", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4531, "down=false", "east=true", "north=false", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4532, "down=false", "east=true", "north=false", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4533, "down=false", "east=true", "north=false", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4534, "down=false", "east=true", "north=false", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4535, "down=false", "east=true", "north=false", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4536, "down=false", "east=true", "north=false", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4537, "down=false", "east=true", "north=false", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4538, "down=false", "east=true", "north=false", "south=false", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4539, "down=false", "east=false", "north=true", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4540, "down=false", "east=false", "north=true", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4541, "down=false", "east=false", "north=true", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4542, "down=false", "east=false", "north=true", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4543, "down=false", "east=false", "north=true", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4544, "down=false", "east=false", "north=true", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4545, "down=false", "east=false", "north=true", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4546, "down=false", "east=false", "north=true", "south=false", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4547, "down=false", "east=false", "north=false", "south=true", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4548, "down=false", "east=false", "north=false", "south=true", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4549, "down=false", "east=false", "north=false", "south=true", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4550, "down=false", "east=false", "north=false", "south=true", "up=false", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4551, "down=false", "east=false", "north=false", "south=false", "up=true", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4552, "down=false", "east=false", "north=false", "south=false", "up=true", "west=false"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4553, "down=false", "east=false", "north=false", "south=false", "up=false", "west=true"));
BROWN_MUSHROOM_BLOCK.addBlockAlternative(new BlockAlternative((short) 4554, "down=false", "east=false", "north=false", "south=false", "up=false", "west=false"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrownShulkerBox {
public static void initStates() {
BROWN_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8814, "facing=north"));
BROWN_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8815, "facing=east"));
BROWN_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8816, "facing=south"));
BROWN_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8817, "facing=west"));
BROWN_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8818, "facing=up"));
BROWN_SHULKER_BOX.addBlockAlternative(new BlockAlternative((short) 8819, "facing=down"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrownStainedGlassPane {
public static void initStates() {
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6711, "east=true", "north=true", "south=true", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6712, "east=true", "north=true", "south=true", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6713, "east=true", "north=true", "south=true", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6714, "east=true", "north=true", "south=true", "waterlogged=false", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6715, "east=true", "north=true", "south=false", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6716, "east=true", "north=true", "south=false", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6717, "east=true", "north=true", "south=false", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6718, "east=true", "north=true", "south=false", "waterlogged=false", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6719, "east=true", "north=false", "south=true", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6720, "east=true", "north=false", "south=true", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6721, "east=true", "north=false", "south=true", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6722, "east=true", "north=false", "south=true", "waterlogged=false", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6723, "east=true", "north=false", "south=false", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6724, "east=true", "north=false", "south=false", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6725, "east=true", "north=false", "south=false", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6726, "east=true", "north=false", "south=false", "waterlogged=false", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6727, "east=false", "north=true", "south=true", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6728, "east=false", "north=true", "south=true", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6729, "east=false", "north=true", "south=true", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6730, "east=false", "north=true", "south=true", "waterlogged=false", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6731, "east=false", "north=true", "south=false", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6732, "east=false", "north=true", "south=false", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6733, "east=false", "north=true", "south=false", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6734, "east=false", "north=true", "south=false", "waterlogged=false", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6735, "east=false", "north=false", "south=true", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6736, "east=false", "north=false", "south=true", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6737, "east=false", "north=false", "south=true", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6738, "east=false", "north=false", "south=true", "waterlogged=false", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6739, "east=false", "north=false", "south=false", "waterlogged=true", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6740, "east=false", "north=false", "south=false", "waterlogged=true", "west=false"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6741, "east=false", "north=false", "south=false", "waterlogged=false", "west=true"));
BROWN_STAINED_GLASS_PANE.addBlockAlternative(new BlockAlternative((short) 6742, "east=false", "north=false", "south=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BrownWallBanner {
public static void initStates() {
BROWN_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7665, "facing=north"));
BROWN_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7666, "facing=south"));
BROWN_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7667, "facing=west"));
BROWN_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 7668, "facing=east"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BubbleColumn {
public static void initStates() {
BUBBLE_COLUMN.addBlockAlternative(new BlockAlternative((short) 9131, "drag=true"));
BUBBLE_COLUMN.addBlockAlternative(new BlockAlternative((short) 9132, "drag=false"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BubbleCoral {
public static void initStates() {
BUBBLE_CORAL.addBlockAlternative(new BlockAlternative((short) 8998, "waterlogged=true"));
BUBBLE_CORAL.addBlockAlternative(new BlockAlternative((short) 8999, "waterlogged=false"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BubbleCoralFan {
public static void initStates() {
BUBBLE_CORAL_FAN.addBlockAlternative(new BlockAlternative((short) 9018, "waterlogged=true"));
BUBBLE_CORAL_FAN.addBlockAlternative(new BlockAlternative((short) 9019, "waterlogged=false"));
}
}

View File

@ -0,0 +1,19 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class BubbleCoralWallFan {
public static void initStates() {
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9080, "facing=north", "waterlogged=true"));
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9081, "facing=north", "waterlogged=false"));
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9082, "facing=south", "waterlogged=true"));
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9083, "facing=south", "waterlogged=false"));
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9084, "facing=west", "waterlogged=true"));
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9085, "facing=west", "waterlogged=false"));
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9086, "facing=east", "waterlogged=true"));
BUBBLE_CORAL_WALL_FAN.addBlockAlternative(new BlockAlternative((short) 9087, "facing=east", "waterlogged=false"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Cactus {
public static void initStates() {
CACTUS.addBlockAlternative(new BlockAlternative((short) 3929, "age=0"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3930, "age=1"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3931, "age=2"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3932, "age=3"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3933, "age=4"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3934, "age=5"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3935, "age=6"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3936, "age=7"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3937, "age=8"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3938, "age=9"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3939, "age=10"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3940, "age=11"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3941, "age=12"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3942, "age=13"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3943, "age=14"));
CACTUS.addBlockAlternative(new BlockAlternative((short) 3944, "age=15"));
}
}

View File

@ -0,0 +1,18 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Cake {
public static void initStates() {
CAKE.addBlockAlternative(new BlockAlternative((short) 4010, "bites=0"));
CAKE.addBlockAlternative(new BlockAlternative((short) 4011, "bites=1"));
CAKE.addBlockAlternative(new BlockAlternative((short) 4012, "bites=2"));
CAKE.addBlockAlternative(new BlockAlternative((short) 4013, "bites=3"));
CAKE.addBlockAlternative(new BlockAlternative((short) 4014, "bites=4"));
CAKE.addBlockAlternative(new BlockAlternative((short) 4015, "bites=5"));
CAKE.addBlockAlternative(new BlockAlternative((short) 4016, "bites=6"));
}
}

View File

@ -0,0 +1,43 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Campfire {
public static void initStates() {
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11232, "facing=north", "lit=true", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11233, "facing=north", "lit=true", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11234, "facing=north", "lit=true", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11235, "facing=north", "lit=true", "signal_fire=false", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11236, "facing=north", "lit=false", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11237, "facing=north", "lit=false", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11238, "facing=north", "lit=false", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11239, "facing=north", "lit=false", "signal_fire=false", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11240, "facing=south", "lit=true", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11241, "facing=south", "lit=true", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11242, "facing=south", "lit=true", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11243, "facing=south", "lit=true", "signal_fire=false", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11244, "facing=south", "lit=false", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11245, "facing=south", "lit=false", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11246, "facing=south", "lit=false", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11247, "facing=south", "lit=false", "signal_fire=false", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11248, "facing=west", "lit=true", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11249, "facing=west", "lit=true", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11250, "facing=west", "lit=true", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11251, "facing=west", "lit=true", "signal_fire=false", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11252, "facing=west", "lit=false", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11253, "facing=west", "lit=false", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11254, "facing=west", "lit=false", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11255, "facing=west", "lit=false", "signal_fire=false", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11256, "facing=east", "lit=true", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11257, "facing=east", "lit=true", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11258, "facing=east", "lit=true", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11259, "facing=east", "lit=true", "signal_fire=false", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11260, "facing=east", "lit=false", "signal_fire=true", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11261, "facing=east", "lit=false", "signal_fire=true", "waterlogged=false"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11262, "facing=east", "lit=false", "signal_fire=false", "waterlogged=true"));
CAMPFIRE.addBlockAlternative(new BlockAlternative((short) 11263, "facing=east", "lit=false", "signal_fire=false", "waterlogged=false"));
}
}

View File

@ -0,0 +1,19 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Carrots {
public static void initStates() {
CARROTS.addBlockAlternative(new BlockAlternative((short) 5794, "age=0"));
CARROTS.addBlockAlternative(new BlockAlternative((short) 5795, "age=1"));
CARROTS.addBlockAlternative(new BlockAlternative((short) 5796, "age=2"));
CARROTS.addBlockAlternative(new BlockAlternative((short) 5797, "age=3"));
CARROTS.addBlockAlternative(new BlockAlternative((short) 5798, "age=4"));
CARROTS.addBlockAlternative(new BlockAlternative((short) 5799, "age=5"));
CARROTS.addBlockAlternative(new BlockAlternative((short) 5800, "age=6"));
CARROTS.addBlockAlternative(new BlockAlternative((short) 5801, "age=7"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class CarvedPumpkin {
public static void initStates() {
CARVED_PUMPKIN.addBlockAlternative(new BlockAlternative((short) 4002, "facing=north"));
CARVED_PUMPKIN.addBlockAlternative(new BlockAlternative((short) 4003, "facing=south"));
CARVED_PUMPKIN.addBlockAlternative(new BlockAlternative((short) 4004, "facing=west"));
CARVED_PUMPKIN.addBlockAlternative(new BlockAlternative((short) 4005, "facing=east"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Cauldron {
public static void initStates() {
CAULDRON.addBlockAlternative(new BlockAlternative((short) 5125, "level=0"));
CAULDRON.addBlockAlternative(new BlockAlternative((short) 5126, "level=1"));
CAULDRON.addBlockAlternative(new BlockAlternative((short) 5127, "level=2"));
CAULDRON.addBlockAlternative(new BlockAlternative((short) 5128, "level=3"));
}
}

View File

@ -0,0 +1,23 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class ChainCommandBlock {
public static void initStates() {
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8701, "conditional=true", "facing=north"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8702, "conditional=true", "facing=east"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8703, "conditional=true", "facing=south"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8704, "conditional=true", "facing=west"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8705, "conditional=true", "facing=up"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8706, "conditional=true", "facing=down"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8707, "conditional=false", "facing=north"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8708, "conditional=false", "facing=east"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8709, "conditional=false", "facing=south"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8710, "conditional=false", "facing=west"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8711, "conditional=false", "facing=up"));
CHAIN_COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 8712, "conditional=false", "facing=down"));
}
}

View File

@ -0,0 +1,35 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Chest {
public static void initStates() {
CHEST.addBlockAlternative(new BlockAlternative((short) 2032, "facing=north", "type=single", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2033, "facing=north", "type=single", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2034, "facing=north", "type=left", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2035, "facing=north", "type=left", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2036, "facing=north", "type=right", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2037, "facing=north", "type=right", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2038, "facing=south", "type=single", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2039, "facing=south", "type=single", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2040, "facing=south", "type=left", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2041, "facing=south", "type=left", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2042, "facing=south", "type=right", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2043, "facing=south", "type=right", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2044, "facing=west", "type=single", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2045, "facing=west", "type=single", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2046, "facing=west", "type=left", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2047, "facing=west", "type=left", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2048, "facing=west", "type=right", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2049, "facing=west", "type=right", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2050, "facing=east", "type=single", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2051, "facing=east", "type=single", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2052, "facing=east", "type=left", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2053, "facing=east", "type=left", "waterlogged=false"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2054, "facing=east", "type=right", "waterlogged=true"));
CHEST.addBlockAlternative(new BlockAlternative((short) 2055, "facing=east", "type=right", "waterlogged=false"));
}
}

View File

@ -0,0 +1,15 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class ChippedAnvil {
public static void initStates() {
CHIPPED_ANVIL.addBlockAlternative(new BlockAlternative((short) 6078, "facing=north"));
CHIPPED_ANVIL.addBlockAlternative(new BlockAlternative((short) 6079, "facing=south"));
CHIPPED_ANVIL.addBlockAlternative(new BlockAlternative((short) 6080, "facing=west"));
CHIPPED_ANVIL.addBlockAlternative(new BlockAlternative((short) 6081, "facing=east"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class ChorusFlower {
public static void initStates() {
CHORUS_FLOWER.addBlockAlternative(new BlockAlternative((short) 8592, "age=0"));
CHORUS_FLOWER.addBlockAlternative(new BlockAlternative((short) 8593, "age=1"));
CHORUS_FLOWER.addBlockAlternative(new BlockAlternative((short) 8594, "age=2"));
CHORUS_FLOWER.addBlockAlternative(new BlockAlternative((short) 8595, "age=3"));
CHORUS_FLOWER.addBlockAlternative(new BlockAlternative((short) 8596, "age=4"));
CHORUS_FLOWER.addBlockAlternative(new BlockAlternative((short) 8597, "age=5"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class ChorusPlant {
public static void initStates() {
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8528, "down=true", "east=true", "north=true", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8529, "down=true", "east=true", "north=true", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8530, "down=true", "east=true", "north=true", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8531, "down=true", "east=true", "north=true", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8532, "down=true", "east=true", "north=true", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8533, "down=true", "east=true", "north=true", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8534, "down=true", "east=true", "north=true", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8535, "down=true", "east=true", "north=true", "south=false", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8536, "down=true", "east=true", "north=false", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8537, "down=true", "east=true", "north=false", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8538, "down=true", "east=true", "north=false", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8539, "down=true", "east=true", "north=false", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8540, "down=true", "east=true", "north=false", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8541, "down=true", "east=true", "north=false", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8542, "down=true", "east=true", "north=false", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8543, "down=true", "east=true", "north=false", "south=false", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8544, "down=true", "east=false", "north=true", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8545, "down=true", "east=false", "north=true", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8546, "down=true", "east=false", "north=true", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8547, "down=true", "east=false", "north=true", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8548, "down=true", "east=false", "north=true", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8549, "down=true", "east=false", "north=true", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8550, "down=true", "east=false", "north=true", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8551, "down=true", "east=false", "north=true", "south=false", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8552, "down=true", "east=false", "north=false", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8553, "down=true", "east=false", "north=false", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8554, "down=true", "east=false", "north=false", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8555, "down=true", "east=false", "north=false", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8556, "down=true", "east=false", "north=false", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8557, "down=true", "east=false", "north=false", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8558, "down=true", "east=false", "north=false", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8559, "down=true", "east=false", "north=false", "south=false", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8560, "down=false", "east=true", "north=true", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8561, "down=false", "east=true", "north=true", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8562, "down=false", "east=true", "north=true", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8563, "down=false", "east=true", "north=true", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8564, "down=false", "east=true", "north=true", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8565, "down=false", "east=true", "north=true", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8566, "down=false", "east=true", "north=true", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8567, "down=false", "east=true", "north=true", "south=false", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8568, "down=false", "east=true", "north=false", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8569, "down=false", "east=true", "north=false", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8570, "down=false", "east=true", "north=false", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8571, "down=false", "east=true", "north=false", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8572, "down=false", "east=true", "north=false", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8573, "down=false", "east=true", "north=false", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8574, "down=false", "east=true", "north=false", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8575, "down=false", "east=true", "north=false", "south=false", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8576, "down=false", "east=false", "north=true", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8577, "down=false", "east=false", "north=true", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8578, "down=false", "east=false", "north=true", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8579, "down=false", "east=false", "north=true", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8580, "down=false", "east=false", "north=true", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8581, "down=false", "east=false", "north=true", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8582, "down=false", "east=false", "north=true", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8583, "down=false", "east=false", "north=true", "south=false", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8584, "down=false", "east=false", "north=false", "south=true", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8585, "down=false", "east=false", "north=false", "south=true", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8586, "down=false", "east=false", "north=false", "south=true", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8587, "down=false", "east=false", "north=false", "south=true", "up=false", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8588, "down=false", "east=false", "north=false", "south=false", "up=true", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8589, "down=false", "east=false", "north=false", "south=false", "up=true", "west=false"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8590, "down=false", "east=false", "north=false", "south=false", "up=false", "west=true"));
CHORUS_PLANT.addBlockAlternative(new BlockAlternative((short) 8591, "down=false", "east=false", "north=false", "south=false", "up=false", "west=false"));
}
}

View File

@ -0,0 +1,17 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class CobblestoneSlab {
public static void initStates() {
COBBLESTONE_SLAB.addBlockAlternative(new BlockAlternative((short) 7830, "type=top", "waterlogged=true"));
COBBLESTONE_SLAB.addBlockAlternative(new BlockAlternative((short) 7831, "type=top", "waterlogged=false"));
COBBLESTONE_SLAB.addBlockAlternative(new BlockAlternative((short) 7832, "type=bottom", "waterlogged=true"));
COBBLESTONE_SLAB.addBlockAlternative(new BlockAlternative((short) 7833, "type=bottom", "waterlogged=false"));
COBBLESTONE_SLAB.addBlockAlternative(new BlockAlternative((short) 7834, "type=double", "waterlogged=true"));
COBBLESTONE_SLAB.addBlockAlternative(new BlockAlternative((short) 7835, "type=double", "waterlogged=false"));
}
}

View File

@ -0,0 +1,91 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class CobblestoneStairs {
public static void initStates() {
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3653, "facing=north", "half=top", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3654, "facing=north", "half=top", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3655, "facing=north", "half=top", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3656, "facing=north", "half=top", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3657, "facing=north", "half=top", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3658, "facing=north", "half=top", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3659, "facing=north", "half=top", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3660, "facing=north", "half=top", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3661, "facing=north", "half=top", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3662, "facing=north", "half=top", "shape=outer_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3663, "facing=north", "half=bottom", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3664, "facing=north", "half=bottom", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3665, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3666, "facing=north", "half=bottom", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3667, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3668, "facing=north", "half=bottom", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3669, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3670, "facing=north", "half=bottom", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3671, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3672, "facing=north", "half=bottom", "shape=outer_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3673, "facing=south", "half=top", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3674, "facing=south", "half=top", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3675, "facing=south", "half=top", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3676, "facing=south", "half=top", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3677, "facing=south", "half=top", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3678, "facing=south", "half=top", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3679, "facing=south", "half=top", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3680, "facing=south", "half=top", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3681, "facing=south", "half=top", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3682, "facing=south", "half=top", "shape=outer_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3683, "facing=south", "half=bottom", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3684, "facing=south", "half=bottom", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3685, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3686, "facing=south", "half=bottom", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3687, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3688, "facing=south", "half=bottom", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3689, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3690, "facing=south", "half=bottom", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3691, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3692, "facing=south", "half=bottom", "shape=outer_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3693, "facing=west", "half=top", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3694, "facing=west", "half=top", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3695, "facing=west", "half=top", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3696, "facing=west", "half=top", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3697, "facing=west", "half=top", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3698, "facing=west", "half=top", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3699, "facing=west", "half=top", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3700, "facing=west", "half=top", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3701, "facing=west", "half=top", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3702, "facing=west", "half=top", "shape=outer_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3703, "facing=west", "half=bottom", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3704, "facing=west", "half=bottom", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3705, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3706, "facing=west", "half=bottom", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3707, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3708, "facing=west", "half=bottom", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3709, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3710, "facing=west", "half=bottom", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3711, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3712, "facing=west", "half=bottom", "shape=outer_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3713, "facing=east", "half=top", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3714, "facing=east", "half=top", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3715, "facing=east", "half=top", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3716, "facing=east", "half=top", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3717, "facing=east", "half=top", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3718, "facing=east", "half=top", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3719, "facing=east", "half=top", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3720, "facing=east", "half=top", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3721, "facing=east", "half=top", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3722, "facing=east", "half=top", "shape=outer_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3723, "facing=east", "half=bottom", "shape=straight", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3724, "facing=east", "half=bottom", "shape=straight", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3725, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3726, "facing=east", "half=bottom", "shape=inner_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3727, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3728, "facing=east", "half=bottom", "shape=inner_right", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3729, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3730, "facing=east", "half=bottom", "shape=outer_left", "waterlogged=false"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3731, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=true"));
COBBLESTONE_STAIRS.addBlockAlternative(new BlockAlternative((short) 3732, "facing=east", "half=bottom", "shape=outer_right", "waterlogged=false"));
}
}

View File

@ -0,0 +1,75 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class CobblestoneWall {
public static void initStates() {
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5641, "east=true", "north=true", "south=true", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5642, "east=true", "north=true", "south=true", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5643, "east=true", "north=true", "south=true", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5644, "east=true", "north=true", "south=true", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5645, "east=true", "north=true", "south=true", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5646, "east=true", "north=true", "south=true", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5647, "east=true", "north=true", "south=true", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5648, "east=true", "north=true", "south=true", "up=false", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5649, "east=true", "north=true", "south=false", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5650, "east=true", "north=true", "south=false", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5651, "east=true", "north=true", "south=false", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5652, "east=true", "north=true", "south=false", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5653, "east=true", "north=true", "south=false", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5654, "east=true", "north=true", "south=false", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5655, "east=true", "north=true", "south=false", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5656, "east=true", "north=true", "south=false", "up=false", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5657, "east=true", "north=false", "south=true", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5658, "east=true", "north=false", "south=true", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5659, "east=true", "north=false", "south=true", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5660, "east=true", "north=false", "south=true", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5661, "east=true", "north=false", "south=true", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5662, "east=true", "north=false", "south=true", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5663, "east=true", "north=false", "south=true", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5664, "east=true", "north=false", "south=true", "up=false", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5665, "east=true", "north=false", "south=false", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5666, "east=true", "north=false", "south=false", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5667, "east=true", "north=false", "south=false", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5668, "east=true", "north=false", "south=false", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5669, "east=true", "north=false", "south=false", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5670, "east=true", "north=false", "south=false", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5671, "east=true", "north=false", "south=false", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5672, "east=true", "north=false", "south=false", "up=false", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5673, "east=false", "north=true", "south=true", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5674, "east=false", "north=true", "south=true", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5675, "east=false", "north=true", "south=true", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5676, "east=false", "north=true", "south=true", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5677, "east=false", "north=true", "south=true", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5678, "east=false", "north=true", "south=true", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5679, "east=false", "north=true", "south=true", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5680, "east=false", "north=true", "south=true", "up=false", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5681, "east=false", "north=true", "south=false", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5682, "east=false", "north=true", "south=false", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5683, "east=false", "north=true", "south=false", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5684, "east=false", "north=true", "south=false", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5685, "east=false", "north=true", "south=false", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5686, "east=false", "north=true", "south=false", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5687, "east=false", "north=true", "south=false", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5688, "east=false", "north=true", "south=false", "up=false", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5689, "east=false", "north=false", "south=true", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5690, "east=false", "north=false", "south=true", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5691, "east=false", "north=false", "south=true", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5692, "east=false", "north=false", "south=true", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5693, "east=false", "north=false", "south=true", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5694, "east=false", "north=false", "south=true", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5695, "east=false", "north=false", "south=true", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5696, "east=false", "north=false", "south=true", "up=false", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5697, "east=false", "north=false", "south=false", "up=true", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5698, "east=false", "north=false", "south=false", "up=true", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5699, "east=false", "north=false", "south=false", "up=true", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5700, "east=false", "north=false", "south=false", "up=true", "waterlogged=false", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5701, "east=false", "north=false", "south=false", "up=false", "waterlogged=true", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5702, "east=false", "north=false", "south=false", "up=false", "waterlogged=true", "west=false"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5703, "east=false", "north=false", "south=false", "up=false", "waterlogged=false", "west=true"));
COBBLESTONE_WALL.addBlockAlternative(new BlockAlternative((short) 5704, "east=false", "north=false", "south=false", "up=false", "waterlogged=false", "west=false"));
}
}

View File

@ -0,0 +1,23 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Cocoa {
public static void initStates() {
COCOA.addBlockAlternative(new BlockAlternative((short) 5142, "age=0", "facing=north"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5143, "age=0", "facing=south"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5144, "age=0", "facing=west"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5145, "age=0", "facing=east"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5146, "age=1", "facing=north"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5147, "age=1", "facing=south"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5148, "age=1", "facing=west"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5149, "age=1", "facing=east"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5150, "age=2", "facing=north"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5151, "age=2", "facing=south"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5152, "age=2", "facing=west"));
COCOA.addBlockAlternative(new BlockAlternative((short) 5153, "age=2", "facing=east"));
}
}

View File

@ -0,0 +1,23 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class CommandBlock {
public static void initStates() {
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5628, "conditional=true", "facing=north"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5629, "conditional=true", "facing=east"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5630, "conditional=true", "facing=south"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5631, "conditional=true", "facing=west"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5632, "conditional=true", "facing=up"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5633, "conditional=true", "facing=down"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5634, "conditional=false", "facing=north"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5635, "conditional=false", "facing=east"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5636, "conditional=false", "facing=south"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5637, "conditional=false", "facing=west"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5638, "conditional=false", "facing=up"));
COMMAND_BLOCK.addBlockAlternative(new BlockAlternative((short) 5639, "conditional=false", "facing=down"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Comparator {
public static void initStates() {
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6142, "facing=north", "mode=compare", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6143, "facing=north", "mode=compare", "powered=false"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6144, "facing=north", "mode=subtract", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6145, "facing=north", "mode=subtract", "powered=false"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6146, "facing=south", "mode=compare", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6147, "facing=south", "mode=compare", "powered=false"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6148, "facing=south", "mode=subtract", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6149, "facing=south", "mode=subtract", "powered=false"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6150, "facing=west", "mode=compare", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6151, "facing=west", "mode=compare", "powered=false"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6152, "facing=west", "mode=subtract", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6153, "facing=west", "mode=subtract", "powered=false"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6154, "facing=east", "mode=compare", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6155, "facing=east", "mode=compare", "powered=false"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6156, "facing=east", "mode=subtract", "powered=true"));
COMPARATOR.addBlockAlternative(new BlockAlternative((short) 6157, "facing=east", "mode=subtract", "powered=false"));
}
}

View File

@ -0,0 +1,20 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Composter {
public static void initStates() {
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11278, "level=0"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11279, "level=1"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11280, "level=2"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11281, "level=3"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11282, "level=4"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11283, "level=5"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11284, "level=6"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11285, "level=7"));
COMPOSTER.addBlockAlternative(new BlockAlternative((short) 11286, "level=8"));
}
}

View File

@ -0,0 +1,13 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class Conduit {
public static void initStates() {
CONDUIT.addBlockAlternative(new BlockAlternative((short) 9113, "waterlogged=true"));
CONDUIT.addBlockAlternative(new BlockAlternative((short) 9114, "waterlogged=false"));
}
}

View File

@ -0,0 +1,27 @@
package net.minestom.server.instance.block.states;
import net.minestom.server.instance.block.BlockAlternative;
import static net.minestom.server.instance.block.Block.*;
/**
* Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU.
*/
@Deprecated(forRemoval = false, since = "forever")
public class CreeperHead {
public static void initStates() {
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6034, "rotation=0"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6035, "rotation=1"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6036, "rotation=2"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6037, "rotation=3"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6038, "rotation=4"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6039, "rotation=5"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6040, "rotation=6"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6041, "rotation=7"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6042, "rotation=8"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6043, "rotation=9"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6044, "rotation=10"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6045, "rotation=11"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6046, "rotation=12"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6047, "rotation=13"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6048, "rotation=14"));
CREEPER_HEAD.addBlockAlternative(new BlockAlternative((short) 6049, "rotation=15"));
}
}

Some files were not shown because too many files have changed in this diff Show More