@minecraft/vanilla-data 1.21.110-preview.20 → 1.21.110-preview.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/index.js +10 -10
- package/lib/mojang-block.d.ts +50 -1
- package/lib/mojang-item.d.ts +8 -0
- package/package.json +21 -21
package/lib/mojang-block.d.ts
CHANGED
|
@@ -515,6 +515,7 @@ export declare enum MinecraftBlockTypes {
|
|
|
515
515
|
ExposedCutCopperSlab = "minecraft:exposed_cut_copper_slab",
|
|
516
516
|
ExposedCutCopperStairs = "minecraft:exposed_cut_copper_stairs",
|
|
517
517
|
ExposedDoubleCutCopperSlab = "minecraft:exposed_double_cut_copper_slab",
|
|
518
|
+
ExposedLightningRod = "minecraft:exposed_lightning_rod",
|
|
518
519
|
Farmland = "minecraft:farmland",
|
|
519
520
|
FenceGate = "minecraft:fence_gate",
|
|
520
521
|
Fern = "minecraft:fern",
|
|
@@ -838,6 +839,7 @@ export declare enum MinecraftBlockTypes {
|
|
|
838
839
|
OxidizedCutCopperSlab = "minecraft:oxidized_cut_copper_slab",
|
|
839
840
|
OxidizedCutCopperStairs = "minecraft:oxidized_cut_copper_stairs",
|
|
840
841
|
OxidizedDoubleCutCopperSlab = "minecraft:oxidized_double_cut_copper_slab",
|
|
842
|
+
OxidizedLightningRod = "minecraft:oxidized_lightning_rod",
|
|
841
843
|
PackedIce = "minecraft:packed_ice",
|
|
842
844
|
PackedMud = "minecraft:packed_mud",
|
|
843
845
|
PaleHangingMoss = "minecraft:pale_hanging_moss",
|
|
@@ -1207,6 +1209,8 @@ export declare enum MinecraftBlockTypes {
|
|
|
1207
1209
|
WaxedExposedCutCopperSlab = "minecraft:waxed_exposed_cut_copper_slab",
|
|
1208
1210
|
WaxedExposedCutCopperStairs = "minecraft:waxed_exposed_cut_copper_stairs",
|
|
1209
1211
|
WaxedExposedDoubleCutCopperSlab = "minecraft:waxed_exposed_double_cut_copper_slab",
|
|
1212
|
+
WaxedExposedLightningRod = "minecraft:waxed_exposed_lightning_rod",
|
|
1213
|
+
WaxedLightningRod = "minecraft:waxed_lightning_rod",
|
|
1210
1214
|
WaxedOxidizedChiseledCopper = "minecraft:waxed_oxidized_chiseled_copper",
|
|
1211
1215
|
WaxedOxidizedCopper = "minecraft:waxed_oxidized_copper",
|
|
1212
1216
|
WaxedOxidizedCopperBulb = "minecraft:waxed_oxidized_copper_bulb",
|
|
@@ -1219,6 +1223,7 @@ export declare enum MinecraftBlockTypes {
|
|
|
1219
1223
|
WaxedOxidizedCutCopperSlab = "minecraft:waxed_oxidized_cut_copper_slab",
|
|
1220
1224
|
WaxedOxidizedCutCopperStairs = "minecraft:waxed_oxidized_cut_copper_stairs",
|
|
1221
1225
|
WaxedOxidizedDoubleCutCopperSlab = "minecraft:waxed_oxidized_double_cut_copper_slab",
|
|
1226
|
+
WaxedOxidizedLightningRod = "minecraft:waxed_oxidized_lightning_rod",
|
|
1222
1227
|
WaxedWeatheredChiseledCopper = "minecraft:waxed_weathered_chiseled_copper",
|
|
1223
1228
|
WaxedWeatheredCopper = "minecraft:waxed_weathered_copper",
|
|
1224
1229
|
WaxedWeatheredCopperBulb = "minecraft:waxed_weathered_copper_bulb",
|
|
@@ -1231,6 +1236,7 @@ export declare enum MinecraftBlockTypes {
|
|
|
1231
1236
|
WaxedWeatheredCutCopperSlab = "minecraft:waxed_weathered_cut_copper_slab",
|
|
1232
1237
|
WaxedWeatheredCutCopperStairs = "minecraft:waxed_weathered_cut_copper_stairs",
|
|
1233
1238
|
WaxedWeatheredDoubleCutCopperSlab = "minecraft:waxed_weathered_double_cut_copper_slab",
|
|
1239
|
+
WaxedWeatheredLightningRod = "minecraft:waxed_weathered_lightning_rod",
|
|
1234
1240
|
WeatheredChiseledCopper = "minecraft:weathered_chiseled_copper",
|
|
1235
1241
|
WeatheredCopper = "minecraft:weathered_copper",
|
|
1236
1242
|
WeatheredCopperBulb = "minecraft:weathered_copper_bulb",
|
|
@@ -1243,6 +1249,7 @@ export declare enum MinecraftBlockTypes {
|
|
|
1243
1249
|
WeatheredCutCopperSlab = "minecraft:weathered_cut_copper_slab",
|
|
1244
1250
|
WeatheredCutCopperStairs = "minecraft:weathered_cut_copper_stairs",
|
|
1245
1251
|
WeatheredDoubleCutCopperSlab = "minecraft:weathered_double_cut_copper_slab",
|
|
1252
|
+
WeatheredLightningRod = "minecraft:weathered_lightning_rod",
|
|
1246
1253
|
Web = "minecraft:web",
|
|
1247
1254
|
WeepingVines = "minecraft:weeping_vines",
|
|
1248
1255
|
WetSponge = "minecraft:wet_sponge",
|
|
@@ -2410,6 +2417,10 @@ export type ExposedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_down
|
|
|
2410
2417
|
* States specific to ExposedDoubleCutCopperSlab
|
|
2411
2418
|
*/
|
|
2412
2419
|
export type ExposedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;
|
|
2420
|
+
/**
|
|
2421
|
+
* States specific to ExposedLightningRod
|
|
2422
|
+
*/
|
|
2423
|
+
export type ExposedLightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
2413
2424
|
/**
|
|
2414
2425
|
* States specific to Farmland
|
|
2415
2426
|
*/
|
|
@@ -2978,6 +2989,10 @@ export type OxidizedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_dow
|
|
|
2978
2989
|
* States specific to OxidizedDoubleCutCopperSlab
|
|
2979
2990
|
*/
|
|
2980
2991
|
export type OxidizedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;
|
|
2992
|
+
/**
|
|
2993
|
+
* States specific to OxidizedLightningRod
|
|
2994
|
+
*/
|
|
2995
|
+
export type OxidizedLightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
2981
2996
|
/**
|
|
2982
2997
|
* States specific to PaleHangingMoss
|
|
2983
2998
|
*/
|
|
@@ -4030,6 +4045,14 @@ export type WaxedExposedCutCopperStairsStates = Pick<BlockStateSuperset, 'upside
|
|
|
4030
4045
|
* States specific to WaxedExposedDoubleCutCopperSlab
|
|
4031
4046
|
*/
|
|
4032
4047
|
export type WaxedExposedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;
|
|
4048
|
+
/**
|
|
4049
|
+
* States specific to WaxedExposedLightningRod
|
|
4050
|
+
*/
|
|
4051
|
+
export type WaxedExposedLightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
4052
|
+
/**
|
|
4053
|
+
* States specific to WaxedLightningRod
|
|
4054
|
+
*/
|
|
4055
|
+
export type WaxedLightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
4033
4056
|
/**
|
|
4034
4057
|
* States specific to WaxedOxidizedCopperBulb
|
|
4035
4058
|
*/
|
|
@@ -4062,6 +4085,10 @@ export type WaxedOxidizedCutCopperStairsStates = Pick<BlockStateSuperset, 'upsid
|
|
|
4062
4085
|
* States specific to WaxedOxidizedDoubleCutCopperSlab
|
|
4063
4086
|
*/
|
|
4064
4087
|
export type WaxedOxidizedDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;
|
|
4088
|
+
/**
|
|
4089
|
+
* States specific to WaxedOxidizedLightningRod
|
|
4090
|
+
*/
|
|
4091
|
+
export type WaxedOxidizedLightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
4065
4092
|
/**
|
|
4066
4093
|
* States specific to WaxedWeatheredCopperBulb
|
|
4067
4094
|
*/
|
|
@@ -4094,6 +4121,10 @@ export type WaxedWeatheredCutCopperStairsStates = Pick<BlockStateSuperset, 'upsi
|
|
|
4094
4121
|
* States specific to WaxedWeatheredDoubleCutCopperSlab
|
|
4095
4122
|
*/
|
|
4096
4123
|
export type WaxedWeatheredDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;
|
|
4124
|
+
/**
|
|
4125
|
+
* States specific to WaxedWeatheredLightningRod
|
|
4126
|
+
*/
|
|
4127
|
+
export type WaxedWeatheredLightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
4097
4128
|
/**
|
|
4098
4129
|
* States specific to WeatheredCopperBulb
|
|
4099
4130
|
*/
|
|
@@ -4126,6 +4157,10 @@ export type WeatheredCutCopperStairsStates = Pick<BlockStateSuperset, 'upside_do
|
|
|
4126
4157
|
* States specific to WeatheredDoubleCutCopperSlab
|
|
4127
4158
|
*/
|
|
4128
4159
|
export type WeatheredDoubleCutCopperSlabStates = Pick<BlockStateSuperset, 'minecraft:vertical_half'>;
|
|
4160
|
+
/**
|
|
4161
|
+
* States specific to WeatheredLightningRod
|
|
4162
|
+
*/
|
|
4163
|
+
export type WeatheredLightningRodStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
4129
4164
|
/**
|
|
4130
4165
|
* States specific to WeepingVines
|
|
4131
4166
|
*/
|
|
@@ -4185,7 +4220,7 @@ export type ZombieHeadStates = Pick<BlockStateSuperset, 'facing_direction'>;
|
|
|
4185
4220
|
/**
|
|
4186
4221
|
* Union of all types for Block states
|
|
4187
4222
|
*/
|
|
4188
|
-
export type BlockStates = AcaciaButtonStates | AcaciaDoorStates | AcaciaDoubleSlabStates | AcaciaFenceGateStates | AcaciaHangingSignStates | AcaciaLeavesStates | AcaciaLogStates | AcaciaPressurePlateStates | AcaciaSaplingStates | AcaciaShelfStates | AcaciaSlabStates | AcaciaStairsStates | AcaciaStandingSignStates | AcaciaTrapdoorStates | AcaciaWallSignStates | AcaciaWoodStates | ActivatorRailStates | AmethystClusterStates | AndesiteDoubleSlabStates | AndesiteSlabStates | AndesiteStairsStates | AndesiteWallStates | AnvilStates | AzaleaLeavesStates | AzaleaLeavesFloweredStates | BambooStates | BambooBlockStates | BambooButtonStates | BambooDoorStates | BambooDoubleSlabStates | BambooFenceGateStates | BambooHangingSignStates | BambooMosaicDoubleSlabStates | BambooMosaicSlabStates | BambooMosaicStairsStates | BambooPressurePlateStates | BambooSaplingStates | BambooShelfStates | BambooSlabStates | BambooStairsStates | BambooStandingSignStates | BambooTrapdoorStates | BambooWallSignStates | BarrelStates | BasaltStates | BedStates | BedrockStates | BeeNestStates | BeehiveStates | BeetrootStates | BellStates | BigDripleafStates | BirchButtonStates | BirchDoorStates | BirchDoubleSlabStates | BirchFenceGateStates | BirchHangingSignStates | BirchLeavesStates | BirchLogStates | BirchPressurePlateStates | BirchSaplingStates | BirchShelfStates | BirchSlabStates | BirchStairsStates | BirchStandingSignStates | BirchTrapdoorStates | BirchWallSignStates | BirchWoodStates | BlackCandleStates | BlackCandleCakeStates | BlackGlazedTerracottaStates | BlackstoneDoubleSlabStates | BlackstoneSlabStates | BlackstoneStairsStates | BlackstoneWallStates | BlastFurnaceStates | BlueCandleStates | BlueCandleCakeStates | BlueGlazedTerracottaStates | BoneBlockStates | BorderBlockStates | BrainCoralFanStates | BrainCoralWallFanStates | BrewingStandStates | BrickDoubleSlabStates | BrickSlabStates | BrickStairsStates | BrickWallStates | BrownCandleStates | BrownCandleCakeStates | BrownGlazedTerracottaStates | BrownMushroomBlockStates | BubbleColumnStates | BubbleCoralFanStates | BubbleCoralWallFanStates | CactusStates | CakeStates | CalibratedSculkSensorStates | CampfireStates | CandleStates | CandleCakeStates | CarrotsStates | CarvedPumpkinStates | CauldronStates | CaveVinesStates | CaveVinesBodyWithBerriesStates | CaveVinesHeadWithBerriesStates | ChainStates | ChainCommandBlockStates | CherryButtonStates | CherryDoorStates | CherryDoubleSlabStates | CherryFenceGateStates | CherryHangingSignStates | CherryLeavesStates | CherryLogStates | CherryPressurePlateStates | CherrySaplingStates | CherryShelfStates | CherrySlabStates | CherryStairsStates | CherryStandingSignStates | CherryTrapdoorStates | CherryWallSignStates | CherryWoodStates | ChestStates | ChippedAnvilStates | ChiseledBookshelfStates | ChiseledQuartzBlockStates | ChorusFlowerStates | CobbledDeepslateDoubleSlabStates | CobbledDeepslateSlabStates | CobbledDeepslateStairsStates | CobbledDeepslateWallStates | CobblestoneDoubleSlabStates | CobblestoneSlabStates | CobblestoneWallStates | CocoaStates | ColoredTorchBlueStates | ColoredTorchGreenStates | ColoredTorchPurpleStates | ColoredTorchRedStates | CommandBlockStates | ComposterStates | CompoundCreatorStates | CopperBulbStates | CopperChestStates | CopperDoorStates | CopperGolemStatueStates | CopperTrapdoorStates | CrafterStates | CreakingHeartStates | CreeperHeadStates | CrimsonButtonStates | CrimsonDoorStates | CrimsonDoubleSlabStates | CrimsonFenceGateStates | CrimsonHangingSignStates | CrimsonHyphaeStates | CrimsonPressurePlateStates | CrimsonShelfStates | CrimsonSlabStates | CrimsonStairsStates | CrimsonStandingSignStates | CrimsonStemStates | CrimsonTrapdoorStates | CrimsonWallSignStates | CutCopperSlabStates | CutCopperStairsStates | CutRedSandstoneDoubleSlabStates | CutRedSandstoneSlabStates | CutSandstoneDoubleSlabStates | CutSandstoneSlabStates | CyanCandleStates | CyanCandleCakeStates | CyanGlazedTerracottaStates | DamagedAnvilStates | DarkOakButtonStates | DarkOakDoorStates | DarkOakDoubleSlabStates | DarkOakFenceGateStates | DarkOakHangingSignStates | DarkOakLeavesStates | DarkOakLogStates | DarkOakPressurePlateStates | DarkOakSaplingStates | DarkOakShelfStates | DarkOakSlabStates | DarkOakStairsStates | DarkOakTrapdoorStates | DarkOakWoodStates | DarkPrismarineDoubleSlabStates | DarkPrismarineSlabStates | DarkPrismarineStairsStates | DarkoakStandingSignStates | DarkoakWallSignStates | DaylightDetectorStates | DaylightDetectorInvertedStates | DeadBrainCoralFanStates | DeadBrainCoralWallFanStates | DeadBubbleCoralFanStates | DeadBubbleCoralWallFanStates | DeadFireCoralFanStates | DeadFireCoralWallFanStates | DeadHornCoralFanStates | DeadHornCoralWallFanStates | DeadTubeCoralFanStates | DeadTubeCoralWallFanStates | DecoratedPotStates | DeepslateStates | DeepslateBrickDoubleSlabStates | DeepslateBrickSlabStates | DeepslateBrickStairsStates | DeepslateBrickWallStates | DeepslateTileDoubleSlabStates | DeepslateTileSlabStates | DeepslateTileStairsStates | DeepslateTileWallStates | DetectorRailStates | DioriteDoubleSlabStates | DioriteSlabStates | DioriteStairsStates | DioriteWallStates | DispenserStates | DoubleCutCopperSlabStates | DragonHeadStates | DriedGhastStates | DropperStates | ElementConstructorStates | EndBrickStairsStates | EndPortalFrameStates | EndRodStates | EndStoneBrickDoubleSlabStates | EndStoneBrickSlabStates | EndStoneBrickWallStates | EnderChestStates | ExposedCopperBulbStates | ExposedCopperChestStates | ExposedCopperDoorStates | ExposedCopperGolemStatueStates | ExposedCopperTrapdoorStates | ExposedCutCopperSlabStates | ExposedCutCopperStairsStates | ExposedDoubleCutCopperSlabStates | FarmlandStates | FenceGateStates | FireStates | FireCoralFanStates | FireCoralWallFanStates | FlowerPotStates | FlowingLavaStates | FlowingWaterStates | FrameStates | FrostedIceStates | FurnaceStates | GlowFrameStates | GlowLichenStates | GoldenRailStates | GraniteDoubleSlabStates | GraniteSlabStates | GraniteStairsStates | GraniteWallStates | GrayCandleStates | GrayCandleCakeStates | GrayGlazedTerracottaStates | GreenCandleStates | GreenCandleCakeStates | GreenGlazedTerracottaStates | GrindstoneStates | HayBlockStates | HeavyWeightedPressurePlateStates | HopperStates | HornCoralFanStates | HornCoralWallFanStates | InfestedDeepslateStates | IronDoorStates | IronTrapdoorStates | JigsawStates | JungleButtonStates | JungleDoorStates | JungleDoubleSlabStates | JungleFenceGateStates | JungleHangingSignStates | JungleLeavesStates | JungleLogStates | JunglePressurePlateStates | JungleSaplingStates | JungleShelfStates | JungleSlabStates | JungleStairsStates | JungleStandingSignStates | JungleTrapdoorStates | JungleWallSignStates | JungleWoodStates | KelpStates | LabTableStates | LadderStates | LanternStates | LargeAmethystBudStates | LargeFernStates | LavaStates | LeafLitterStates | LecternStates | LeverStates | LightBlueCandleStates | LightBlueCandleCakeStates | LightBlueGlazedTerracottaStates | LightGrayCandleStates | LightGrayCandleCakeStates | LightWeightedPressurePlateStates | LightningRodStates | LilacStates | LimeCandleStates | LimeCandleCakeStates | LimeGlazedTerracottaStates | LitBlastFurnaceStates | LitFurnaceStates | LitPumpkinStates | LitSmokerStates | LoomStates | MagentaCandleStates | MagentaCandleCakeStates | MagentaGlazedTerracottaStates | MangroveButtonStates | MangroveDoorStates | MangroveDoubleSlabStates | MangroveFenceGateStates | MangroveHangingSignStates | MangroveLeavesStates | MangroveLogStates | MangrovePressurePlateStates | MangrovePropaguleStates | MangroveShelfStates | MangroveSlabStates | MangroveStairsStates | MangroveStandingSignStates | MangroveTrapdoorStates | MangroveWallSignStates | MangroveWoodStates | MaterialReducerStates | MediumAmethystBudStates | MelonStemStates | MossyCobblestoneDoubleSlabStates | MossyCobblestoneSlabStates | MossyCobblestoneStairsStates | MossyCobblestoneWallStates | MossyStoneBrickDoubleSlabStates | MossyStoneBrickSlabStates | MossyStoneBrickStairsStates | MossyStoneBrickWallStates | MudBrickDoubleSlabStates | MudBrickSlabStates | MudBrickStairsStates | MudBrickWallStates | MuddyMangroveRootsStates | MushroomStemStates | NetherBrickDoubleSlabStates | NetherBrickSlabStates | NetherBrickStairsStates | NetherBrickWallStates | NetherWartStates | NormalStoneDoubleSlabStates | NormalStoneSlabStates | NormalStoneStairsStates | OakDoubleSlabStates | OakHangingSignStates | OakLeavesStates | OakLogStates | OakSaplingStates | OakShelfStates | OakSlabStates | OakStairsStates | OakWoodStates | ObserverStates | OchreFroglightStates | OrangeCandleStates | OrangeCandleCakeStates | OrangeGlazedTerracottaStates | OxidizedCopperBulbStates | OxidizedCopperChestStates | OxidizedCopperDoorStates | OxidizedCopperGolemStatueStates | OxidizedCopperTrapdoorStates | OxidizedCutCopperSlabStates | OxidizedCutCopperStairsStates | OxidizedDoubleCutCopperSlabStates | PaleHangingMossStates | PaleMossCarpetStates | PaleOakButtonStates | PaleOakDoorStates | PaleOakDoubleSlabStates | PaleOakFenceGateStates | PaleOakHangingSignStates | PaleOakLeavesStates | PaleOakLogStates | PaleOakPressurePlateStates | PaleOakSaplingStates | PaleOakShelfStates | PaleOakSlabStates | PaleOakStairsStates | PaleOakStandingSignStates | PaleOakTrapdoorStates | PaleOakWallSignStates | PaleOakWoodStates | PearlescentFroglightStates | PeonyStates | PetrifiedOakDoubleSlabStates | PetrifiedOakSlabStates | PiglinHeadStates | PinkCandleStates | PinkCandleCakeStates | PinkGlazedTerracottaStates | PinkPetalsStates | PistonStates | PistonArmCollisionStates | PitcherCropStates | PitcherPlantStates | PlayerHeadStates | PointedDripstoneStates | PolishedAndesiteDoubleSlabStates | PolishedAndesiteSlabStates | PolishedAndesiteStairsStates | PolishedBasaltStates | PolishedBlackstoneBrickDoubleSlabStates | PolishedBlackstoneBrickSlabStates | PolishedBlackstoneBrickStairsStates | PolishedBlackstoneBrickWallStates | PolishedBlackstoneButtonStates | PolishedBlackstoneDoubleSlabStates | PolishedBlackstonePressurePlateStates | PolishedBlackstoneSlabStates | PolishedBlackstoneStairsStates | PolishedBlackstoneWallStates | PolishedDeepslateDoubleSlabStates | PolishedDeepslateSlabStates | PolishedDeepslateStairsStates | PolishedDeepslateWallStates | PolishedDioriteDoubleSlabStates | PolishedDioriteSlabStates | PolishedDioriteStairsStates | PolishedGraniteDoubleSlabStates | PolishedGraniteSlabStates | PolishedGraniteStairsStates | PolishedTuffDoubleSlabStates | PolishedTuffSlabStates | PolishedTuffStairsStates | PolishedTuffWallStates | PortalStates | PotatoesStates | PoweredComparatorStates | PoweredRepeaterStates | PrismarineBrickDoubleSlabStates | PrismarineBrickSlabStates | PrismarineBricksStairsStates | PrismarineDoubleSlabStates | PrismarineSlabStates | PrismarineStairsStates | PrismarineWallStates | PumpkinStates | PumpkinStemStates | PurpleCandleStates | PurpleCandleCakeStates | PurpleGlazedTerracottaStates | PurpurBlockStates | PurpurDoubleSlabStates | PurpurPillarStates | PurpurSlabStates | PurpurStairsStates | QuartzBlockStates | QuartzDoubleSlabStates | QuartzPillarStates | QuartzSlabStates | QuartzStairsStates | RailStates | RedCandleStates | RedCandleCakeStates | RedGlazedTerracottaStates | RedMushroomBlockStates | RedNetherBrickDoubleSlabStates | RedNetherBrickSlabStates | RedNetherBrickStairsStates | RedNetherBrickWallStates | RedSandstoneDoubleSlabStates | RedSandstoneSlabStates | RedSandstoneStairsStates | RedSandstoneWallStates | RedstoneTorchStates | RedstoneWireStates | ReedsStates | RepeatingCommandBlockStates | ResinBrickDoubleSlabStates | ResinBrickSlabStates | ResinBrickStairsStates | ResinBrickWallStates | ResinClumpStates | RespawnAnchorStates | RoseBushStates | SandstoneDoubleSlabStates | SandstoneSlabStates | SandstoneStairsStates | SandstoneWallStates | ScaffoldingStates | SculkCatalystStates | SculkSensorStates | SculkShriekerStates | SculkVeinStates | SeaPickleStates | SeagrassStates | SilverGlazedTerracottaStates | SkeletonSkullStates | SmallAmethystBudStates | SmallDripleafBlockStates | SmokerStates | SmoothQuartzStates | SmoothQuartzDoubleSlabStates | SmoothQuartzSlabStates | SmoothQuartzStairsStates | SmoothRedSandstoneDoubleSlabStates | SmoothRedSandstoneSlabStates | SmoothRedSandstoneStairsStates | SmoothSandstoneDoubleSlabStates | SmoothSandstoneSlabStates | SmoothSandstoneStairsStates | SmoothStoneDoubleSlabStates | SmoothStoneSlabStates | SnifferEggStates | SnowLayerStates | SoulCampfireStates | SoulFireStates | SoulLanternStates | SoulTorchStates | SpruceButtonStates | SpruceDoorStates | SpruceDoubleSlabStates | SpruceFenceGateStates | SpruceHangingSignStates | SpruceLeavesStates | SpruceLogStates | SprucePressurePlateStates | SpruceSaplingStates | SpruceShelfStates | SpruceSlabStates | SpruceStairsStates | SpruceStandingSignStates | SpruceTrapdoorStates | SpruceWallSignStates | SpruceWoodStates | StandingBannerStates | StandingSignStates | StickyPistonStates | StickyPistonArmCollisionStates | StoneBrickDoubleSlabStates | StoneBrickSlabStates | StoneBrickStairsStates | StoneBrickWallStates | StoneButtonStates | StonePressurePlateStates | StoneStairsStates | StonecutterBlockStates | StrippedAcaciaLogStates | StrippedAcaciaWoodStates | StrippedBambooBlockStates | StrippedBirchLogStates | StrippedBirchWoodStates | StrippedCherryLogStates | StrippedCherryWoodStates | StrippedCrimsonHyphaeStates | StrippedCrimsonStemStates | StrippedDarkOakLogStates | StrippedDarkOakWoodStates | StrippedJungleLogStates | StrippedJungleWoodStates | StrippedMangroveLogStates | StrippedMangroveWoodStates | StrippedOakLogStates | StrippedOakWoodStates | StrippedPaleOakLogStates | StrippedPaleOakWoodStates | StrippedSpruceLogStates | StrippedSpruceWoodStates | StrippedWarpedHyphaeStates | StrippedWarpedStemStates | StructureBlockStates | SunflowerStates | SuspiciousGravelStates | SuspiciousSandStates | SweetBerryBushStates | TallGrassStates | TntStates | TorchStates | TorchflowerCropStates | TrapdoorStates | TrappedChestStates | TrialSpawnerStates | TripWireStates | TripwireHookStates | TubeCoralFanStates | TubeCoralWallFanStates | TuffBrickDoubleSlabStates | TuffBrickSlabStates | TuffBrickStairsStates | TuffBrickWallStates | TuffDoubleSlabStates | TuffSlabStates | TuffStairsStates | TuffWallStates | TurtleEggStates | TwistingVinesStates | UnderwaterTntStates | UnderwaterTorchStates | UnlitRedstoneTorchStates | UnpoweredComparatorStates | UnpoweredRepeaterStates | VaultStates | VerdantFroglightStates | VineStates | WallBannerStates | WallSignStates | WarpedButtonStates | WarpedDoorStates | WarpedDoubleSlabStates | WarpedFenceGateStates | WarpedHangingSignStates | WarpedHyphaeStates | WarpedPressurePlateStates | WarpedShelfStates | WarpedSlabStates | WarpedStairsStates | WarpedStandingSignStates | WarpedStemStates | WarpedTrapdoorStates | WarpedWallSignStates | WaterStates | WaxedCopperBulbStates | WaxedCopperChestStates | WaxedCopperDoorStates | WaxedCopperGolemStatueStates | WaxedCopperTrapdoorStates | WaxedCutCopperSlabStates | WaxedCutCopperStairsStates | WaxedDoubleCutCopperSlabStates | WaxedExposedCopperBulbStates | WaxedExposedCopperChestStates | WaxedExposedCopperDoorStates | WaxedExposedCopperGolemStatueStates | WaxedExposedCopperTrapdoorStates | WaxedExposedCutCopperSlabStates | WaxedExposedCutCopperStairsStates | WaxedExposedDoubleCutCopperSlabStates | WaxedOxidizedCopperBulbStates | WaxedOxidizedCopperChestStates | WaxedOxidizedCopperDoorStates | WaxedOxidizedCopperGolemStatueStates | WaxedOxidizedCopperTrapdoorStates | WaxedOxidizedCutCopperSlabStates | WaxedOxidizedCutCopperStairsStates | WaxedOxidizedDoubleCutCopperSlabStates | WaxedWeatheredCopperBulbStates | WaxedWeatheredCopperChestStates | WaxedWeatheredCopperDoorStates | WaxedWeatheredCopperGolemStatueStates | WaxedWeatheredCopperTrapdoorStates | WaxedWeatheredCutCopperSlabStates | WaxedWeatheredCutCopperStairsStates | WaxedWeatheredDoubleCutCopperSlabStates | WeatheredCopperBulbStates | WeatheredCopperChestStates | WeatheredCopperDoorStates | WeatheredCopperGolemStatueStates | WeatheredCopperTrapdoorStates | WeatheredCutCopperSlabStates | WeatheredCutCopperStairsStates | WeatheredDoubleCutCopperSlabStates | WeepingVinesStates | WheatStates | WhiteCandleStates | WhiteCandleCakeStates | WhiteGlazedTerracottaStates | WildflowersStates | WitherSkeletonSkullStates | WoodenButtonStates | WoodenDoorStates | WoodenPressurePlateStates | YellowCandleStates | YellowCandleCakeStates | YellowGlazedTerracottaStates | ZombieHeadStates;
|
|
4223
|
+
export type BlockStates = AcaciaButtonStates | AcaciaDoorStates | AcaciaDoubleSlabStates | AcaciaFenceGateStates | AcaciaHangingSignStates | AcaciaLeavesStates | AcaciaLogStates | AcaciaPressurePlateStates | AcaciaSaplingStates | AcaciaShelfStates | AcaciaSlabStates | AcaciaStairsStates | AcaciaStandingSignStates | AcaciaTrapdoorStates | AcaciaWallSignStates | AcaciaWoodStates | ActivatorRailStates | AmethystClusterStates | AndesiteDoubleSlabStates | AndesiteSlabStates | AndesiteStairsStates | AndesiteWallStates | AnvilStates | AzaleaLeavesStates | AzaleaLeavesFloweredStates | BambooStates | BambooBlockStates | BambooButtonStates | BambooDoorStates | BambooDoubleSlabStates | BambooFenceGateStates | BambooHangingSignStates | BambooMosaicDoubleSlabStates | BambooMosaicSlabStates | BambooMosaicStairsStates | BambooPressurePlateStates | BambooSaplingStates | BambooShelfStates | BambooSlabStates | BambooStairsStates | BambooStandingSignStates | BambooTrapdoorStates | BambooWallSignStates | BarrelStates | BasaltStates | BedStates | BedrockStates | BeeNestStates | BeehiveStates | BeetrootStates | BellStates | BigDripleafStates | BirchButtonStates | BirchDoorStates | BirchDoubleSlabStates | BirchFenceGateStates | BirchHangingSignStates | BirchLeavesStates | BirchLogStates | BirchPressurePlateStates | BirchSaplingStates | BirchShelfStates | BirchSlabStates | BirchStairsStates | BirchStandingSignStates | BirchTrapdoorStates | BirchWallSignStates | BirchWoodStates | BlackCandleStates | BlackCandleCakeStates | BlackGlazedTerracottaStates | BlackstoneDoubleSlabStates | BlackstoneSlabStates | BlackstoneStairsStates | BlackstoneWallStates | BlastFurnaceStates | BlueCandleStates | BlueCandleCakeStates | BlueGlazedTerracottaStates | BoneBlockStates | BorderBlockStates | BrainCoralFanStates | BrainCoralWallFanStates | BrewingStandStates | BrickDoubleSlabStates | BrickSlabStates | BrickStairsStates | BrickWallStates | BrownCandleStates | BrownCandleCakeStates | BrownGlazedTerracottaStates | BrownMushroomBlockStates | BubbleColumnStates | BubbleCoralFanStates | BubbleCoralWallFanStates | CactusStates | CakeStates | CalibratedSculkSensorStates | CampfireStates | CandleStates | CandleCakeStates | CarrotsStates | CarvedPumpkinStates | CauldronStates | CaveVinesStates | CaveVinesBodyWithBerriesStates | CaveVinesHeadWithBerriesStates | ChainStates | ChainCommandBlockStates | CherryButtonStates | CherryDoorStates | CherryDoubleSlabStates | CherryFenceGateStates | CherryHangingSignStates | CherryLeavesStates | CherryLogStates | CherryPressurePlateStates | CherrySaplingStates | CherryShelfStates | CherrySlabStates | CherryStairsStates | CherryStandingSignStates | CherryTrapdoorStates | CherryWallSignStates | CherryWoodStates | ChestStates | ChippedAnvilStates | ChiseledBookshelfStates | ChiseledQuartzBlockStates | ChorusFlowerStates | CobbledDeepslateDoubleSlabStates | CobbledDeepslateSlabStates | CobbledDeepslateStairsStates | CobbledDeepslateWallStates | CobblestoneDoubleSlabStates | CobblestoneSlabStates | CobblestoneWallStates | CocoaStates | ColoredTorchBlueStates | ColoredTorchGreenStates | ColoredTorchPurpleStates | ColoredTorchRedStates | CommandBlockStates | ComposterStates | CompoundCreatorStates | CopperBulbStates | CopperChestStates | CopperDoorStates | CopperGolemStatueStates | CopperTrapdoorStates | CrafterStates | CreakingHeartStates | CreeperHeadStates | CrimsonButtonStates | CrimsonDoorStates | CrimsonDoubleSlabStates | CrimsonFenceGateStates | CrimsonHangingSignStates | CrimsonHyphaeStates | CrimsonPressurePlateStates | CrimsonShelfStates | CrimsonSlabStates | CrimsonStairsStates | CrimsonStandingSignStates | CrimsonStemStates | CrimsonTrapdoorStates | CrimsonWallSignStates | CutCopperSlabStates | CutCopperStairsStates | CutRedSandstoneDoubleSlabStates | CutRedSandstoneSlabStates | CutSandstoneDoubleSlabStates | CutSandstoneSlabStates | CyanCandleStates | CyanCandleCakeStates | CyanGlazedTerracottaStates | DamagedAnvilStates | DarkOakButtonStates | DarkOakDoorStates | DarkOakDoubleSlabStates | DarkOakFenceGateStates | DarkOakHangingSignStates | DarkOakLeavesStates | DarkOakLogStates | DarkOakPressurePlateStates | DarkOakSaplingStates | DarkOakShelfStates | DarkOakSlabStates | DarkOakStairsStates | DarkOakTrapdoorStates | DarkOakWoodStates | DarkPrismarineDoubleSlabStates | DarkPrismarineSlabStates | DarkPrismarineStairsStates | DarkoakStandingSignStates | DarkoakWallSignStates | DaylightDetectorStates | DaylightDetectorInvertedStates | DeadBrainCoralFanStates | DeadBrainCoralWallFanStates | DeadBubbleCoralFanStates | DeadBubbleCoralWallFanStates | DeadFireCoralFanStates | DeadFireCoralWallFanStates | DeadHornCoralFanStates | DeadHornCoralWallFanStates | DeadTubeCoralFanStates | DeadTubeCoralWallFanStates | DecoratedPotStates | DeepslateStates | DeepslateBrickDoubleSlabStates | DeepslateBrickSlabStates | DeepslateBrickStairsStates | DeepslateBrickWallStates | DeepslateTileDoubleSlabStates | DeepslateTileSlabStates | DeepslateTileStairsStates | DeepslateTileWallStates | DetectorRailStates | DioriteDoubleSlabStates | DioriteSlabStates | DioriteStairsStates | DioriteWallStates | DispenserStates | DoubleCutCopperSlabStates | DragonHeadStates | DriedGhastStates | DropperStates | ElementConstructorStates | EndBrickStairsStates | EndPortalFrameStates | EndRodStates | EndStoneBrickDoubleSlabStates | EndStoneBrickSlabStates | EndStoneBrickWallStates | EnderChestStates | ExposedCopperBulbStates | ExposedCopperChestStates | ExposedCopperDoorStates | ExposedCopperGolemStatueStates | ExposedCopperTrapdoorStates | ExposedCutCopperSlabStates | ExposedCutCopperStairsStates | ExposedDoubleCutCopperSlabStates | ExposedLightningRodStates | FarmlandStates | FenceGateStates | FireStates | FireCoralFanStates | FireCoralWallFanStates | FlowerPotStates | FlowingLavaStates | FlowingWaterStates | FrameStates | FrostedIceStates | FurnaceStates | GlowFrameStates | GlowLichenStates | GoldenRailStates | GraniteDoubleSlabStates | GraniteSlabStates | GraniteStairsStates | GraniteWallStates | GrayCandleStates | GrayCandleCakeStates | GrayGlazedTerracottaStates | GreenCandleStates | GreenCandleCakeStates | GreenGlazedTerracottaStates | GrindstoneStates | HayBlockStates | HeavyWeightedPressurePlateStates | HopperStates | HornCoralFanStates | HornCoralWallFanStates | InfestedDeepslateStates | IronDoorStates | IronTrapdoorStates | JigsawStates | JungleButtonStates | JungleDoorStates | JungleDoubleSlabStates | JungleFenceGateStates | JungleHangingSignStates | JungleLeavesStates | JungleLogStates | JunglePressurePlateStates | JungleSaplingStates | JungleShelfStates | JungleSlabStates | JungleStairsStates | JungleStandingSignStates | JungleTrapdoorStates | JungleWallSignStates | JungleWoodStates | KelpStates | LabTableStates | LadderStates | LanternStates | LargeAmethystBudStates | LargeFernStates | LavaStates | LeafLitterStates | LecternStates | LeverStates | LightBlueCandleStates | LightBlueCandleCakeStates | LightBlueGlazedTerracottaStates | LightGrayCandleStates | LightGrayCandleCakeStates | LightWeightedPressurePlateStates | LightningRodStates | LilacStates | LimeCandleStates | LimeCandleCakeStates | LimeGlazedTerracottaStates | LitBlastFurnaceStates | LitFurnaceStates | LitPumpkinStates | LitSmokerStates | LoomStates | MagentaCandleStates | MagentaCandleCakeStates | MagentaGlazedTerracottaStates | MangroveButtonStates | MangroveDoorStates | MangroveDoubleSlabStates | MangroveFenceGateStates | MangroveHangingSignStates | MangroveLeavesStates | MangroveLogStates | MangrovePressurePlateStates | MangrovePropaguleStates | MangroveShelfStates | MangroveSlabStates | MangroveStairsStates | MangroveStandingSignStates | MangroveTrapdoorStates | MangroveWallSignStates | MangroveWoodStates | MaterialReducerStates | MediumAmethystBudStates | MelonStemStates | MossyCobblestoneDoubleSlabStates | MossyCobblestoneSlabStates | MossyCobblestoneStairsStates | MossyCobblestoneWallStates | MossyStoneBrickDoubleSlabStates | MossyStoneBrickSlabStates | MossyStoneBrickStairsStates | MossyStoneBrickWallStates | MudBrickDoubleSlabStates | MudBrickSlabStates | MudBrickStairsStates | MudBrickWallStates | MuddyMangroveRootsStates | MushroomStemStates | NetherBrickDoubleSlabStates | NetherBrickSlabStates | NetherBrickStairsStates | NetherBrickWallStates | NetherWartStates | NormalStoneDoubleSlabStates | NormalStoneSlabStates | NormalStoneStairsStates | OakDoubleSlabStates | OakHangingSignStates | OakLeavesStates | OakLogStates | OakSaplingStates | OakShelfStates | OakSlabStates | OakStairsStates | OakWoodStates | ObserverStates | OchreFroglightStates | OrangeCandleStates | OrangeCandleCakeStates | OrangeGlazedTerracottaStates | OxidizedCopperBulbStates | OxidizedCopperChestStates | OxidizedCopperDoorStates | OxidizedCopperGolemStatueStates | OxidizedCopperTrapdoorStates | OxidizedCutCopperSlabStates | OxidizedCutCopperStairsStates | OxidizedDoubleCutCopperSlabStates | OxidizedLightningRodStates | PaleHangingMossStates | PaleMossCarpetStates | PaleOakButtonStates | PaleOakDoorStates | PaleOakDoubleSlabStates | PaleOakFenceGateStates | PaleOakHangingSignStates | PaleOakLeavesStates | PaleOakLogStates | PaleOakPressurePlateStates | PaleOakSaplingStates | PaleOakShelfStates | PaleOakSlabStates | PaleOakStairsStates | PaleOakStandingSignStates | PaleOakTrapdoorStates | PaleOakWallSignStates | PaleOakWoodStates | PearlescentFroglightStates | PeonyStates | PetrifiedOakDoubleSlabStates | PetrifiedOakSlabStates | PiglinHeadStates | PinkCandleStates | PinkCandleCakeStates | PinkGlazedTerracottaStates | PinkPetalsStates | PistonStates | PistonArmCollisionStates | PitcherCropStates | PitcherPlantStates | PlayerHeadStates | PointedDripstoneStates | PolishedAndesiteDoubleSlabStates | PolishedAndesiteSlabStates | PolishedAndesiteStairsStates | PolishedBasaltStates | PolishedBlackstoneBrickDoubleSlabStates | PolishedBlackstoneBrickSlabStates | PolishedBlackstoneBrickStairsStates | PolishedBlackstoneBrickWallStates | PolishedBlackstoneButtonStates | PolishedBlackstoneDoubleSlabStates | PolishedBlackstonePressurePlateStates | PolishedBlackstoneSlabStates | PolishedBlackstoneStairsStates | PolishedBlackstoneWallStates | PolishedDeepslateDoubleSlabStates | PolishedDeepslateSlabStates | PolishedDeepslateStairsStates | PolishedDeepslateWallStates | PolishedDioriteDoubleSlabStates | PolishedDioriteSlabStates | PolishedDioriteStairsStates | PolishedGraniteDoubleSlabStates | PolishedGraniteSlabStates | PolishedGraniteStairsStates | PolishedTuffDoubleSlabStates | PolishedTuffSlabStates | PolishedTuffStairsStates | PolishedTuffWallStates | PortalStates | PotatoesStates | PoweredComparatorStates | PoweredRepeaterStates | PrismarineBrickDoubleSlabStates | PrismarineBrickSlabStates | PrismarineBricksStairsStates | PrismarineDoubleSlabStates | PrismarineSlabStates | PrismarineStairsStates | PrismarineWallStates | PumpkinStates | PumpkinStemStates | PurpleCandleStates | PurpleCandleCakeStates | PurpleGlazedTerracottaStates | PurpurBlockStates | PurpurDoubleSlabStates | PurpurPillarStates | PurpurSlabStates | PurpurStairsStates | QuartzBlockStates | QuartzDoubleSlabStates | QuartzPillarStates | QuartzSlabStates | QuartzStairsStates | RailStates | RedCandleStates | RedCandleCakeStates | RedGlazedTerracottaStates | RedMushroomBlockStates | RedNetherBrickDoubleSlabStates | RedNetherBrickSlabStates | RedNetherBrickStairsStates | RedNetherBrickWallStates | RedSandstoneDoubleSlabStates | RedSandstoneSlabStates | RedSandstoneStairsStates | RedSandstoneWallStates | RedstoneTorchStates | RedstoneWireStates | ReedsStates | RepeatingCommandBlockStates | ResinBrickDoubleSlabStates | ResinBrickSlabStates | ResinBrickStairsStates | ResinBrickWallStates | ResinClumpStates | RespawnAnchorStates | RoseBushStates | SandstoneDoubleSlabStates | SandstoneSlabStates | SandstoneStairsStates | SandstoneWallStates | ScaffoldingStates | SculkCatalystStates | SculkSensorStates | SculkShriekerStates | SculkVeinStates | SeaPickleStates | SeagrassStates | SilverGlazedTerracottaStates | SkeletonSkullStates | SmallAmethystBudStates | SmallDripleafBlockStates | SmokerStates | SmoothQuartzStates | SmoothQuartzDoubleSlabStates | SmoothQuartzSlabStates | SmoothQuartzStairsStates | SmoothRedSandstoneDoubleSlabStates | SmoothRedSandstoneSlabStates | SmoothRedSandstoneStairsStates | SmoothSandstoneDoubleSlabStates | SmoothSandstoneSlabStates | SmoothSandstoneStairsStates | SmoothStoneDoubleSlabStates | SmoothStoneSlabStates | SnifferEggStates | SnowLayerStates | SoulCampfireStates | SoulFireStates | SoulLanternStates | SoulTorchStates | SpruceButtonStates | SpruceDoorStates | SpruceDoubleSlabStates | SpruceFenceGateStates | SpruceHangingSignStates | SpruceLeavesStates | SpruceLogStates | SprucePressurePlateStates | SpruceSaplingStates | SpruceShelfStates | SpruceSlabStates | SpruceStairsStates | SpruceStandingSignStates | SpruceTrapdoorStates | SpruceWallSignStates | SpruceWoodStates | StandingBannerStates | StandingSignStates | StickyPistonStates | StickyPistonArmCollisionStates | StoneBrickDoubleSlabStates | StoneBrickSlabStates | StoneBrickStairsStates | StoneBrickWallStates | StoneButtonStates | StonePressurePlateStates | StoneStairsStates | StonecutterBlockStates | StrippedAcaciaLogStates | StrippedAcaciaWoodStates | StrippedBambooBlockStates | StrippedBirchLogStates | StrippedBirchWoodStates | StrippedCherryLogStates | StrippedCherryWoodStates | StrippedCrimsonHyphaeStates | StrippedCrimsonStemStates | StrippedDarkOakLogStates | StrippedDarkOakWoodStates | StrippedJungleLogStates | StrippedJungleWoodStates | StrippedMangroveLogStates | StrippedMangroveWoodStates | StrippedOakLogStates | StrippedOakWoodStates | StrippedPaleOakLogStates | StrippedPaleOakWoodStates | StrippedSpruceLogStates | StrippedSpruceWoodStates | StrippedWarpedHyphaeStates | StrippedWarpedStemStates | StructureBlockStates | SunflowerStates | SuspiciousGravelStates | SuspiciousSandStates | SweetBerryBushStates | TallGrassStates | TntStates | TorchStates | TorchflowerCropStates | TrapdoorStates | TrappedChestStates | TrialSpawnerStates | TripWireStates | TripwireHookStates | TubeCoralFanStates | TubeCoralWallFanStates | TuffBrickDoubleSlabStates | TuffBrickSlabStates | TuffBrickStairsStates | TuffBrickWallStates | TuffDoubleSlabStates | TuffSlabStates | TuffStairsStates | TuffWallStates | TurtleEggStates | TwistingVinesStates | UnderwaterTntStates | UnderwaterTorchStates | UnlitRedstoneTorchStates | UnpoweredComparatorStates | UnpoweredRepeaterStates | VaultStates | VerdantFroglightStates | VineStates | WallBannerStates | WallSignStates | WarpedButtonStates | WarpedDoorStates | WarpedDoubleSlabStates | WarpedFenceGateStates | WarpedHangingSignStates | WarpedHyphaeStates | WarpedPressurePlateStates | WarpedShelfStates | WarpedSlabStates | WarpedStairsStates | WarpedStandingSignStates | WarpedStemStates | WarpedTrapdoorStates | WarpedWallSignStates | WaterStates | WaxedCopperBulbStates | WaxedCopperChestStates | WaxedCopperDoorStates | WaxedCopperGolemStatueStates | WaxedCopperTrapdoorStates | WaxedCutCopperSlabStates | WaxedCutCopperStairsStates | WaxedDoubleCutCopperSlabStates | WaxedExposedCopperBulbStates | WaxedExposedCopperChestStates | WaxedExposedCopperDoorStates | WaxedExposedCopperGolemStatueStates | WaxedExposedCopperTrapdoorStates | WaxedExposedCutCopperSlabStates | WaxedExposedCutCopperStairsStates | WaxedExposedDoubleCutCopperSlabStates | WaxedExposedLightningRodStates | WaxedLightningRodStates | WaxedOxidizedCopperBulbStates | WaxedOxidizedCopperChestStates | WaxedOxidizedCopperDoorStates | WaxedOxidizedCopperGolemStatueStates | WaxedOxidizedCopperTrapdoorStates | WaxedOxidizedCutCopperSlabStates | WaxedOxidizedCutCopperStairsStates | WaxedOxidizedDoubleCutCopperSlabStates | WaxedOxidizedLightningRodStates | WaxedWeatheredCopperBulbStates | WaxedWeatheredCopperChestStates | WaxedWeatheredCopperDoorStates | WaxedWeatheredCopperGolemStatueStates | WaxedWeatheredCopperTrapdoorStates | WaxedWeatheredCutCopperSlabStates | WaxedWeatheredCutCopperStairsStates | WaxedWeatheredDoubleCutCopperSlabStates | WaxedWeatheredLightningRodStates | WeatheredCopperBulbStates | WeatheredCopperChestStates | WeatheredCopperDoorStates | WeatheredCopperGolemStatueStates | WeatheredCopperTrapdoorStates | WeatheredCutCopperSlabStates | WeatheredCutCopperStairsStates | WeatheredDoubleCutCopperSlabStates | WeatheredLightningRodStates | WeepingVinesStates | WheatStates | WhiteCandleStates | WhiteCandleCakeStates | WhiteGlazedTerracottaStates | WildflowersStates | WitherSkeletonSkullStates | WoodenButtonStates | WoodenDoorStates | WoodenPressurePlateStates | YellowCandleStates | YellowCandleCakeStates | YellowGlazedTerracottaStates | ZombieHeadStates;
|
|
4189
4224
|
/**
|
|
4190
4225
|
* Mapping of each Block name to it's states
|
|
4191
4226
|
*/
|
|
@@ -4678,6 +4713,8 @@ export type BlockStateMapping = {
|
|
|
4678
4713
|
'minecraft:exposed_cut_copper_stairs': ExposedCutCopperStairsStates;
|
|
4679
4714
|
exposed_double_cut_copper_slab: ExposedDoubleCutCopperSlabStates;
|
|
4680
4715
|
'minecraft:exposed_double_cut_copper_slab': ExposedDoubleCutCopperSlabStates;
|
|
4716
|
+
exposed_lightning_rod: ExposedLightningRodStates;
|
|
4717
|
+
'minecraft:exposed_lightning_rod': ExposedLightningRodStates;
|
|
4681
4718
|
farmland: FarmlandStates;
|
|
4682
4719
|
'minecraft:farmland': FarmlandStates;
|
|
4683
4720
|
fence_gate: FenceGateStates;
|
|
@@ -4962,6 +4999,8 @@ export type BlockStateMapping = {
|
|
|
4962
4999
|
'minecraft:oxidized_cut_copper_stairs': OxidizedCutCopperStairsStates;
|
|
4963
5000
|
oxidized_double_cut_copper_slab: OxidizedDoubleCutCopperSlabStates;
|
|
4964
5001
|
'minecraft:oxidized_double_cut_copper_slab': OxidizedDoubleCutCopperSlabStates;
|
|
5002
|
+
oxidized_lightning_rod: OxidizedLightningRodStates;
|
|
5003
|
+
'minecraft:oxidized_lightning_rod': OxidizedLightningRodStates;
|
|
4965
5004
|
pale_hanging_moss: PaleHangingMossStates;
|
|
4966
5005
|
'minecraft:pale_hanging_moss': PaleHangingMossStates;
|
|
4967
5006
|
pale_moss_carpet: PaleMossCarpetStates;
|
|
@@ -5488,6 +5527,10 @@ export type BlockStateMapping = {
|
|
|
5488
5527
|
'minecraft:waxed_exposed_cut_copper_stairs': WaxedExposedCutCopperStairsStates;
|
|
5489
5528
|
waxed_exposed_double_cut_copper_slab: WaxedExposedDoubleCutCopperSlabStates;
|
|
5490
5529
|
'minecraft:waxed_exposed_double_cut_copper_slab': WaxedExposedDoubleCutCopperSlabStates;
|
|
5530
|
+
waxed_exposed_lightning_rod: WaxedExposedLightningRodStates;
|
|
5531
|
+
'minecraft:waxed_exposed_lightning_rod': WaxedExposedLightningRodStates;
|
|
5532
|
+
waxed_lightning_rod: WaxedLightningRodStates;
|
|
5533
|
+
'minecraft:waxed_lightning_rod': WaxedLightningRodStates;
|
|
5491
5534
|
waxed_oxidized_copper_bulb: WaxedOxidizedCopperBulbStates;
|
|
5492
5535
|
'minecraft:waxed_oxidized_copper_bulb': WaxedOxidizedCopperBulbStates;
|
|
5493
5536
|
waxed_oxidized_copper_chest: WaxedOxidizedCopperChestStates;
|
|
@@ -5504,6 +5547,8 @@ export type BlockStateMapping = {
|
|
|
5504
5547
|
'minecraft:waxed_oxidized_cut_copper_stairs': WaxedOxidizedCutCopperStairsStates;
|
|
5505
5548
|
waxed_oxidized_double_cut_copper_slab: WaxedOxidizedDoubleCutCopperSlabStates;
|
|
5506
5549
|
'minecraft:waxed_oxidized_double_cut_copper_slab': WaxedOxidizedDoubleCutCopperSlabStates;
|
|
5550
|
+
waxed_oxidized_lightning_rod: WaxedOxidizedLightningRodStates;
|
|
5551
|
+
'minecraft:waxed_oxidized_lightning_rod': WaxedOxidizedLightningRodStates;
|
|
5507
5552
|
waxed_weathered_copper_bulb: WaxedWeatheredCopperBulbStates;
|
|
5508
5553
|
'minecraft:waxed_weathered_copper_bulb': WaxedWeatheredCopperBulbStates;
|
|
5509
5554
|
waxed_weathered_copper_chest: WaxedWeatheredCopperChestStates;
|
|
@@ -5520,6 +5565,8 @@ export type BlockStateMapping = {
|
|
|
5520
5565
|
'minecraft:waxed_weathered_cut_copper_stairs': WaxedWeatheredCutCopperStairsStates;
|
|
5521
5566
|
waxed_weathered_double_cut_copper_slab: WaxedWeatheredDoubleCutCopperSlabStates;
|
|
5522
5567
|
'minecraft:waxed_weathered_double_cut_copper_slab': WaxedWeatheredDoubleCutCopperSlabStates;
|
|
5568
|
+
waxed_weathered_lightning_rod: WaxedWeatheredLightningRodStates;
|
|
5569
|
+
'minecraft:waxed_weathered_lightning_rod': WaxedWeatheredLightningRodStates;
|
|
5523
5570
|
weathered_copper_bulb: WeatheredCopperBulbStates;
|
|
5524
5571
|
'minecraft:weathered_copper_bulb': WeatheredCopperBulbStates;
|
|
5525
5572
|
weathered_copper_chest: WeatheredCopperChestStates;
|
|
@@ -5536,6 +5583,8 @@ export type BlockStateMapping = {
|
|
|
5536
5583
|
'minecraft:weathered_cut_copper_stairs': WeatheredCutCopperStairsStates;
|
|
5537
5584
|
weathered_double_cut_copper_slab: WeatheredDoubleCutCopperSlabStates;
|
|
5538
5585
|
'minecraft:weathered_double_cut_copper_slab': WeatheredDoubleCutCopperSlabStates;
|
|
5586
|
+
weathered_lightning_rod: WeatheredLightningRodStates;
|
|
5587
|
+
'minecraft:weathered_lightning_rod': WeatheredLightningRodStates;
|
|
5539
5588
|
weeping_vines: WeepingVinesStates;
|
|
5540
5589
|
'minecraft:weeping_vines': WeepingVinesStates;
|
|
5541
5590
|
wheat: WheatStates;
|
package/lib/mojang-item.d.ts
CHANGED
|
@@ -295,6 +295,7 @@ export declare enum MinecraftItemTypes {
|
|
|
295
295
|
CopperGrate = "minecraft:copper_grate",
|
|
296
296
|
CopperHelmet = "minecraft:copper_helmet",
|
|
297
297
|
CopperHoe = "minecraft:copper_hoe",
|
|
298
|
+
CopperHorseArmor = "minecraft:copper_horse_armor",
|
|
298
299
|
CopperIngot = "minecraft:copper_ingot",
|
|
299
300
|
CopperLeggings = "minecraft:copper_leggings",
|
|
300
301
|
CopperNugget = "minecraft:copper_nugget",
|
|
@@ -489,6 +490,7 @@ export declare enum MinecraftItemTypes {
|
|
|
489
490
|
ExposedCutCopper = "minecraft:exposed_cut_copper",
|
|
490
491
|
ExposedCutCopperSlab = "minecraft:exposed_cut_copper_slab",
|
|
491
492
|
ExposedCutCopperStairs = "minecraft:exposed_cut_copper_stairs",
|
|
493
|
+
ExposedLightningRod = "minecraft:exposed_lightning_rod",
|
|
492
494
|
EyeArmorTrimSmithingTemplate = "minecraft:eye_armor_trim_smithing_template",
|
|
493
495
|
Farmland = "minecraft:farmland",
|
|
494
496
|
Feather = "minecraft:feather",
|
|
@@ -911,6 +913,7 @@ export declare enum MinecraftItemTypes {
|
|
|
911
913
|
OxidizedCutCopper = "minecraft:oxidized_cut_copper",
|
|
912
914
|
OxidizedCutCopperSlab = "minecraft:oxidized_cut_copper_slab",
|
|
913
915
|
OxidizedCutCopperStairs = "minecraft:oxidized_cut_copper_stairs",
|
|
916
|
+
OxidizedLightningRod = "minecraft:oxidized_lightning_rod",
|
|
914
917
|
PackedIce = "minecraft:packed_ice",
|
|
915
918
|
PackedMud = "minecraft:packed_mud",
|
|
916
919
|
Painting = "minecraft:painting",
|
|
@@ -1347,6 +1350,8 @@ export declare enum MinecraftItemTypes {
|
|
|
1347
1350
|
WaxedExposedCutCopper = "minecraft:waxed_exposed_cut_copper",
|
|
1348
1351
|
WaxedExposedCutCopperSlab = "minecraft:waxed_exposed_cut_copper_slab",
|
|
1349
1352
|
WaxedExposedCutCopperStairs = "minecraft:waxed_exposed_cut_copper_stairs",
|
|
1353
|
+
WaxedExposedLightningRod = "minecraft:waxed_exposed_lightning_rod",
|
|
1354
|
+
WaxedLightningRod = "minecraft:waxed_lightning_rod",
|
|
1350
1355
|
WaxedOxidizedChiseledCopper = "minecraft:waxed_oxidized_chiseled_copper",
|
|
1351
1356
|
WaxedOxidizedCopper = "minecraft:waxed_oxidized_copper",
|
|
1352
1357
|
WaxedOxidizedCopperBulb = "minecraft:waxed_oxidized_copper_bulb",
|
|
@@ -1358,6 +1363,7 @@ export declare enum MinecraftItemTypes {
|
|
|
1358
1363
|
WaxedOxidizedCutCopper = "minecraft:waxed_oxidized_cut_copper",
|
|
1359
1364
|
WaxedOxidizedCutCopperSlab = "minecraft:waxed_oxidized_cut_copper_slab",
|
|
1360
1365
|
WaxedOxidizedCutCopperStairs = "minecraft:waxed_oxidized_cut_copper_stairs",
|
|
1366
|
+
WaxedOxidizedLightningRod = "minecraft:waxed_oxidized_lightning_rod",
|
|
1361
1367
|
WaxedWeatheredChiseledCopper = "minecraft:waxed_weathered_chiseled_copper",
|
|
1362
1368
|
WaxedWeatheredCopper = "minecraft:waxed_weathered_copper",
|
|
1363
1369
|
WaxedWeatheredCopperBulb = "minecraft:waxed_weathered_copper_bulb",
|
|
@@ -1369,6 +1375,7 @@ export declare enum MinecraftItemTypes {
|
|
|
1369
1375
|
WaxedWeatheredCutCopper = "minecraft:waxed_weathered_cut_copper",
|
|
1370
1376
|
WaxedWeatheredCutCopperSlab = "minecraft:waxed_weathered_cut_copper_slab",
|
|
1371
1377
|
WaxedWeatheredCutCopperStairs = "minecraft:waxed_weathered_cut_copper_stairs",
|
|
1378
|
+
WaxedWeatheredLightningRod = "minecraft:waxed_weathered_lightning_rod",
|
|
1372
1379
|
WayfinderArmorTrimSmithingTemplate = "minecraft:wayfinder_armor_trim_smithing_template",
|
|
1373
1380
|
WeatheredChiseledCopper = "minecraft:weathered_chiseled_copper",
|
|
1374
1381
|
WeatheredCopper = "minecraft:weathered_copper",
|
|
@@ -1381,6 +1388,7 @@ export declare enum MinecraftItemTypes {
|
|
|
1381
1388
|
WeatheredCutCopper = "minecraft:weathered_cut_copper",
|
|
1382
1389
|
WeatheredCutCopperSlab = "minecraft:weathered_cut_copper_slab",
|
|
1383
1390
|
WeatheredCutCopperStairs = "minecraft:weathered_cut_copper_stairs",
|
|
1391
|
+
WeatheredLightningRod = "minecraft:weathered_lightning_rod",
|
|
1384
1392
|
Web = "minecraft:web",
|
|
1385
1393
|
WeepingVines = "minecraft:weeping_vines",
|
|
1386
1394
|
WetSponge = "minecraft:wet_sponge",
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@minecraft/vanilla-data",
|
|
3
|
-
"version": "1.21.110-preview.
|
|
4
|
-
"description": "Contains types for Minecraft Vanilla Content",
|
|
5
|
-
"exports": "./lib/index.js",
|
|
6
|
-
"types": "./lib/index.d.ts",
|
|
7
|
-
"contributors": [
|
|
8
|
-
{
|
|
9
|
-
"name": "Jake Shirley",
|
|
10
|
-
"email": "jake@xbox.com"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"name": "Mike Ammerlaan",
|
|
14
|
-
"email": "mikeam@microsoft.com"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"name": "Raphael Landaverde",
|
|
18
|
-
"email": "rlandav@microsoft.com"
|
|
19
|
-
}
|
|
20
|
-
],
|
|
21
|
-
"license": "MIT"
|
|
1
|
+
{
|
|
2
|
+
"name": "@minecraft/vanilla-data",
|
|
3
|
+
"version": "1.21.110-preview.22",
|
|
4
|
+
"description": "Contains types for Minecraft Vanilla Content",
|
|
5
|
+
"exports": "./lib/index.js",
|
|
6
|
+
"types": "./lib/index.d.ts",
|
|
7
|
+
"contributors": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Jake Shirley",
|
|
10
|
+
"email": "jake@xbox.com"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Mike Ammerlaan",
|
|
14
|
+
"email": "mikeam@microsoft.com"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "Raphael Landaverde",
|
|
18
|
+
"email": "rlandav@microsoft.com"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"license": "MIT"
|
|
22
22
|
}
|