aboutsummaryrefslogtreecommitdiff
path: root/azalea-registry/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-03-30 18:18:13 +0000
committermat <github@matdoes.dev>2023-03-30 18:18:13 +0000
commit659c5fea1451c041e2dcf6d8dc3ab7bb8fd0d38c (patch)
tree76aa1717e06e12f932d1cf6e453c825d6ced8760 /azalea-registry/src
parentac680d39f23f0fe004970fb9e48ca9a60437f607 (diff)
downloadazalea-drasl-659c5fea1451c041e2dcf6d8dc3ab7bb8fd0d38c.tar.xz
23w13a
Diffstat (limited to 'azalea-registry/src')
-rwxr-xr-xazalea-registry/src/lib.rs117
1 files changed, 98 insertions, 19 deletions
diff --git a/azalea-registry/src/lib.rs b/azalea-registry/src/lib.rs
index 19af0eea..eaeb6147 100755
--- a/azalea-registry/src/lib.rs
+++ b/azalea-registry/src/lib.rs
@@ -184,6 +184,7 @@ enum Block {
SuspiciousSand => "minecraft:suspicious_sand",
RedSand => "minecraft:red_sand",
Gravel => "minecraft:gravel",
+ SuspiciousGravel => "minecraft:suspicious_gravel",
GoldOre => "minecraft:gold_ore",
DeepslateGoldOre => "minecraft:deepslate_gold_ore",
IronOre => "minecraft:iron_ore",
@@ -744,6 +745,8 @@ enum Block {
PurpurStairs => "minecraft:purpur_stairs",
EndStoneBricks => "minecraft:end_stone_bricks",
TorchflowerCrop => "minecraft:torchflower_crop",
+ PitcherCrop => "minecraft:pitcher_crop",
+ PitcherPlant => "minecraft:pitcher_plant",
Beetroots => "minecraft:beetroots",
DirtPath => "minecraft:dirt_path",
EndGateway => "minecraft:end_gateway",
@@ -825,6 +828,7 @@ enum Block {
KelpPlant => "minecraft:kelp_plant",
DriedKelpBlock => "minecraft:dried_kelp_block",
TurtleEgg => "minecraft:turtle_egg",
+ SnifferEgg => "minecraft:sniffer_egg",
DeadTubeCoralBlock => "minecraft:dead_tube_coral_block",
DeadBrainCoralBlock => "minecraft:dead_brain_coral_block",
DeadBubbleCoralBlock => "minecraft:dead_bubble_coral_block",
@@ -1056,6 +1060,7 @@ enum Block {
TintedGlass => "minecraft:tinted_glass",
PowderSnow => "minecraft:powder_snow",
SculkSensor => "minecraft:sculk_sensor",
+ CalibratedSculkSensor => "minecraft:calibrated_sculk_sensor",
Sculk => "minecraft:sculk",
SculkVein => "minecraft:sculk_vein",
SculkCatalyst => "minecraft:sculk_catalyst",
@@ -1187,10 +1192,11 @@ enum BlockEntityKind {
Campfire => "minecraft:campfire",
Beehive => "minecraft:beehive",
SculkSensor => "minecraft:sculk_sensor",
+ CalibratedSculkSensor => "minecraft:calibrated_sculk_sensor",
SculkCatalyst => "minecraft:sculk_catalyst",
SculkShrieker => "minecraft:sculk_shrieker",
ChiseledBookshelf => "minecraft:chiseled_bookshelf",
- SuspiciousSand => "minecraft:suspicious_sand",
+ BrushableBlock => "minecraft:brushable_block",
DecoratedPot => "minecraft:decorated_pot",
}
}
@@ -1594,7 +1600,6 @@ enum GameEvent {
BlockPlace => "minecraft:block_place",
ContainerClose => "minecraft:container_close",
ContainerOpen => "minecraft:container_open",
- DispenseFail => "minecraft:dispense_fail",
Drink => "minecraft:drink",
Eat => "minecraft:eat",
ElytraGlide => "minecraft:elytra_glide",
@@ -1619,8 +1624,6 @@ enum GameEvent {
JukeboxStopPlay => "minecraft:jukebox_stop_play",
LightningStrike => "minecraft:lightning_strike",
NoteBlockPlay => "minecraft:note_block_play",
- PistonContract => "minecraft:piston_contract",
- PistonExtend => "minecraft:piston_extend",
PrimeFuse => "minecraft:prime_fuse",
ProjectileLand => "minecraft:projectile_land",
ProjectileShoot => "minecraft:projectile_shoot",
@@ -1631,6 +1634,21 @@ enum GameEvent {
Step => "minecraft:step",
Swim => "minecraft:swim",
Teleport => "minecraft:teleport",
+ Resonate1 => "minecraft:resonate_1",
+ Resonate2 => "minecraft:resonate_2",
+ Resonate3 => "minecraft:resonate_3",
+ Resonate4 => "minecraft:resonate_4",
+ Resonate5 => "minecraft:resonate_5",
+ Resonate6 => "minecraft:resonate_6",
+ Resonate7 => "minecraft:resonate_7",
+ Resonate8 => "minecraft:resonate_8",
+ Resonate9 => "minecraft:resonate_9",
+ Resonate10 => "minecraft:resonate_10",
+ Resonate11 => "minecraft:resonate_11",
+ Resonate12 => "minecraft:resonate_12",
+ Resonate13 => "minecraft:resonate_13",
+ Resonate14 => "minecraft:resonate_14",
+ Resonate15 => "minecraft:resonate_15",
}
}
@@ -1717,6 +1735,7 @@ enum Item {
Bedrock => "minecraft:bedrock",
Sand => "minecraft:sand",
SuspiciousSand => "minecraft:suspicious_sand",
+ SuspiciousGravel => "minecraft:suspicious_gravel",
RedSand => "minecraft:red_sand",
Gravel => "minecraft:gravel",
CoalOre => "minecraft:coal_ore",
@@ -1880,6 +1899,7 @@ enum Item {
LilyOfTheValley => "minecraft:lily_of_the_valley",
WitherRose => "minecraft:wither_rose",
Torchflower => "minecraft:torchflower",
+ PitcherPlant => "minecraft:pitcher_plant",
SporeBlossom => "minecraft:spore_blossom",
BrownMushroom => "minecraft:brown_mushroom",
RedMushroom => "minecraft:red_mushroom",
@@ -2235,6 +2255,7 @@ enum Item {
RedConcretePowder => "minecraft:red_concrete_powder",
BlackConcretePowder => "minecraft:black_concrete_powder",
TurtleEgg => "minecraft:turtle_egg",
+ SnifferEgg => "minecraft:sniffer_egg",
DeadTubeCoralBlock => "minecraft:dead_tube_coral_block",
DeadBrainCoralBlock => "minecraft:dead_brain_coral_block",
DeadBubbleCoralBlock => "minecraft:dead_bubble_coral_block",
@@ -2322,6 +2343,7 @@ enum Item {
LightningRod => "minecraft:lightning_rod",
DaylightDetector => "minecraft:daylight_detector",
SculkSensor => "minecraft:sculk_sensor",
+ CalibratedSculkSensor => "minecraft:calibrated_sculk_sensor",
TripwireHook => "minecraft:tripwire_hook",
TrappedChest => "minecraft:trapped_chest",
Tnt => "minecraft:tnt",
@@ -2774,6 +2796,7 @@ enum Item {
ChorusFruit => "minecraft:chorus_fruit",
PoppedChorusFruit => "minecraft:popped_chorus_fruit",
TorchflowerSeeds => "minecraft:torchflower_seeds",
+ PitcherPod => "minecraft:pitcher_pod",
Beetroot => "minecraft:beetroot",
BeetrootSeeds => "minecraft:beetroot_seeds",
BeetrootSoup => "minecraft:beetroot_soup",
@@ -2895,10 +2918,31 @@ enum Item {
SnoutArmorTrimSmithingTemplate => "minecraft:snout_armor_trim_smithing_template",
RibArmorTrimSmithingTemplate => "minecraft:rib_armor_trim_smithing_template",
SpireArmorTrimSmithingTemplate => "minecraft:spire_armor_trim_smithing_template",
- PotteryShardArcher => "minecraft:pottery_shard_archer",
- PotteryShardPrize => "minecraft:pottery_shard_prize",
- PotteryShardArmsUp => "minecraft:pottery_shard_arms_up",
- PotteryShardSkull => "minecraft:pottery_shard_skull",
+ WayfinderArmorTrimSmithingTemplate => "minecraft:wayfinder_armor_trim_smithing_template",
+ ShaperArmorTrimSmithingTemplate => "minecraft:shaper_armor_trim_smithing_template",
+ SilenceArmorTrimSmithingTemplate => "minecraft:silence_armor_trim_smithing_template",
+ RaiserArmorTrimSmithingTemplate => "minecraft:raiser_armor_trim_smithing_template",
+ HostArmorTrimSmithingTemplate => "minecraft:host_armor_trim_smithing_template",
+ AnglerPotteryShard => "minecraft:angler_pottery_shard",
+ ArcherPotteryShard => "minecraft:archer_pottery_shard",
+ ArmsUpPotteryShard => "minecraft:arms_up_pottery_shard",
+ BladePotteryShard => "minecraft:blade_pottery_shard",
+ BrewerPotteryShard => "minecraft:brewer_pottery_shard",
+ BurnPotteryShard => "minecraft:burn_pottery_shard",
+ DangerPotteryShard => "minecraft:danger_pottery_shard",
+ ExplorerPotteryShard => "minecraft:explorer_pottery_shard",
+ FriendPotteryShard => "minecraft:friend_pottery_shard",
+ HeartPotteryShard => "minecraft:heart_pottery_shard",
+ HeartbreakPotteryShard => "minecraft:heartbreak_pottery_shard",
+ HowlPotteryShard => "minecraft:howl_pottery_shard",
+ MinerPotteryShard => "minecraft:miner_pottery_shard",
+ MournerPotteryShard => "minecraft:mourner_pottery_shard",
+ PlentyPotteryShard => "minecraft:plenty_pottery_shard",
+ PrizePotteryShard => "minecraft:prize_pottery_shard",
+ SheafPotteryShard => "minecraft:sheaf_pottery_shard",
+ ShelterPotteryShard => "minecraft:shelter_pottery_shard",
+ SkullPotteryShard => "minecraft:skull_pottery_shard",
+ SnortPotteryShard => "minecraft:snort_pottery_shard",
}
}
@@ -3114,7 +3158,6 @@ enum Menu {
Loom => "minecraft:loom",
Merchant => "minecraft:merchant",
ShulkerBox => "minecraft:shulker_box",
- LegacySmithing => "minecraft:legacy_smithing",
Smithing => "minecraft:smithing",
Smoker => "minecraft:smoker",
CartographyTable => "minecraft:cartography_table",
@@ -3226,9 +3269,7 @@ enum ParticleKind {
Firework => "minecraft:firework",
Fishing => "minecraft:fishing",
Flame => "minecraft:flame",
- DrippingCherryLeaves => "minecraft:dripping_cherry_leaves",
- FallingCherryLeaves => "minecraft:falling_cherry_leaves",
- LandingCherryLeaves => "minecraft:landing_cherry_leaves",
+ CherryLeaves => "minecraft:cherry_leaves",
SculkSoul => "minecraft:sculk_soul",
SculkCharge => "minecraft:sculk_charge",
SculkChargePop => "minecraft:sculk_charge_pop",
@@ -3293,6 +3334,7 @@ enum ParticleKind {
ElectricSpark => "minecraft:electric_spark",
Scrape => "minecraft:scrape",
Shriek => "minecraft:shriek",
+ EggCrack => "minecraft:egg_crack",
}
}
@@ -3406,7 +3448,6 @@ enum RecipeSerializer {
Smoking => "minecraft:smoking",
CampfireCooking => "minecraft:campfire_cooking",
Stonecutting => "minecraft:stonecutting",
- Smithing => "minecraft:smithing",
SmithingTransform => "minecraft:smithing_transform",
SmithingTrim => "minecraft:smithing_trim",
CraftingDecoratedPot => "minecraft:crafting_decorated_pot",
@@ -3508,6 +3549,7 @@ enum SoundEvent {
BlockAmethystBlockFall => "minecraft:block.amethyst_block.fall",
BlockAmethystBlockHit => "minecraft:block.amethyst_block.hit",
BlockAmethystBlockPlace => "minecraft:block.amethyst_block.place",
+ BlockAmethystBlockResonate => "minecraft:block.amethyst_block.resonate",
BlockAmethystBlockStep => "minecraft:block.amethyst_block.step",
BlockAmethystClusterBreak => "minecraft:block.amethyst_cluster.break",
BlockAmethystClusterFall => "minecraft:block.amethyst_cluster.fall",
@@ -3640,8 +3682,11 @@ enum SoundEvent {
ItemBottleFill => "minecraft:item.bottle.fill",
ItemBottleFillDragonbreath => "minecraft:item.bottle.fill_dragonbreath",
BlockBrewingStandBrew => "minecraft:block.brewing_stand.brew",
- ItemBrushBrushing => "minecraft:item.brush.brushing",
- ItemBrushBrushSandCompleted => "minecraft:item.brush.brush_sand_completed",
+ ItemBrushBrushingGeneric => "minecraft:item.brush.brushing.generic",
+ ItemBrushBrushingSand => "minecraft:item.brush.brushing.sand",
+ ItemBrushBrushingGravel => "minecraft:item.brush.brushing.gravel",
+ ItemBrushBrushingSandComplete => "minecraft:item.brush.brushing.sand.complete",
+ ItemBrushBrushingGravelComplete => "minecraft:item.brush.brushing.gravel.complete",
BlockBubbleColumnBubblePop => "minecraft:block.bubble_column.bubble_pop",
BlockBubbleColumnUpwardsAmbient => "minecraft:block.bubble_column.upwards_ambient",
BlockBubbleColumnUpwardsInside => "minecraft:block.bubble_column.upwards_inside",
@@ -3952,6 +3997,11 @@ enum SoundEvent {
BlockSuspiciousSandPlace => "minecraft:block.suspicious_sand.place",
BlockSuspiciousSandHit => "minecraft:block.suspicious_sand.hit",
BlockSuspiciousSandFall => "minecraft:block.suspicious_sand.fall",
+ BlockSuspiciousGravelBreak => "minecraft:block.suspicious_gravel.break",
+ BlockSuspiciousGravelStep => "minecraft:block.suspicious_gravel.step",
+ BlockSuspiciousGravelPlace => "minecraft:block.suspicious_gravel.place",
+ BlockSuspiciousGravelHit => "minecraft:block.suspicious_gravel.hit",
+ BlockSuspiciousGravelFall => "minecraft:block.suspicious_gravel.fall",
BlockFroglightBreak => "minecraft:block.froglight.break",
BlockFroglightFall => "minecraft:block.froglight.fall",
BlockFroglightHit => "minecraft:block.froglight.hit",
@@ -4696,6 +4746,8 @@ enum SoundEvent {
EntitySnifferDigging => "minecraft:entity.sniffer.digging",
EntitySnifferDiggingStop => "minecraft:entity.sniffer.digging_stop",
EntitySnifferHappy => "minecraft:entity.sniffer.happy",
+ EntitySnifferEggCrack => "minecraft:entity.sniffer.egg_crack",
+ EntitySnifferEggHatch => "minecraft:entity.sniffer.egg_hatch",
EntitySnowballThrow => "minecraft:entity.snowball.throw",
BlockSnowBreak => "minecraft:block.snow.break",
BlockSnowFall => "minecraft:block.snow.fall",
@@ -4848,6 +4900,7 @@ enum SoundEvent {
EntityWardenSonicCharge => "minecraft:entity.warden.sonic_charge",
EntityWardenStep => "minecraft:entity.warden.step",
EntityWardenTendrilClicks => "minecraft:entity.warden.tendril_clicks",
+ BlockSignWaxedInteractFail => "minecraft:block.sign.waxed_interact_fail",
BlockWaterAmbient => "minecraft:block.water.ambient",
WeatherRain => "minecraft:weather.rain",
WeatherRainAbove => "minecraft:weather.rain.above",
@@ -5281,6 +5334,7 @@ enum WorldgenStructureProcessor {
BlackstoneReplace => "minecraft:blackstone_replace",
LavaSubmergedBlock => "minecraft:lava_submerged_block",
ProtectedBlocks => "minecraft:protected_blocks",
+ Capped => "minecraft:capped",
}
}
@@ -5332,11 +5386,36 @@ enum WorldgenTrunkPlacerKind {
registry! {
enum DecoratedPotPatterns {
- PotteryPatternArcher => "minecraft:pottery_pattern_archer",
- PotteryPatternPrize => "minecraft:pottery_pattern_prize",
- PotteryPatternArmsUp => "minecraft:pottery_pattern_arms_up",
- PotteryPatternSkull => "minecraft:pottery_pattern_skull",
DecoratedPotSide => "minecraft:decorated_pot_side",
+ AnglerPotteryPattern => "minecraft:angler_pottery_pattern",
+ ArcherPotteryPattern => "minecraft:archer_pottery_pattern",
+ ArmsUpPotteryPattern => "minecraft:arms_up_pottery_pattern",
+ BladePotteryPattern => "minecraft:blade_pottery_pattern",
+ BrewerPotteryPattern => "minecraft:brewer_pottery_pattern",
+ BurnPotteryPattern => "minecraft:burn_pottery_pattern",
+ DangerPotteryPattern => "minecraft:danger_pottery_pattern",
+ ExplorerPotteryPattern => "minecraft:explorer_pottery_pattern",
+ FriendPotteryPattern => "minecraft:friend_pottery_pattern",
+ HeartPotteryPattern => "minecraft:heart_pottery_pattern",
+ HeartbreakPotteryPattern => "minecraft:heartbreak_pottery_pattern",
+ HowlPotteryPattern => "minecraft:howl_pottery_pattern",
+ MinerPotteryPattern => "minecraft:miner_pottery_pattern",
+ MournerPotteryPattern => "minecraft:mourner_pottery_pattern",
+ PlentyPotteryPattern => "minecraft:plenty_pottery_pattern",
+ PrizePotteryPattern => "minecraft:prize_pottery_pattern",
+ SheafPotteryPattern => "minecraft:sheaf_pottery_pattern",
+ ShelterPotteryPattern => "minecraft:shelter_pottery_pattern",
+ SkullPotteryPattern => "minecraft:skull_pottery_pattern",
+ SnortPotteryPattern => "minecraft:snort_pottery_pattern",
DecoratedPotBase => "minecraft:decorated_pot_base",
}
}
+
+registry! {
+enum RuleBlockEntityModifier {
+ Clear => "minecraft:clear",
+ Passthrough => "minecraft:passthrough",
+ AppendStatic => "minecraft:append_static",
+ AppendLoot => "minecraft:append_loot",
+}
+}