aboutsummaryrefslogtreecommitdiff
path: root/azalea-registry/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-04-20 17:11:52 +0000
committermat <github@matdoes.dev>2023-04-20 17:11:52 +0000
commitc4c5edf80b364b9e1281e04b26446cdff499a8b5 (patch)
treede64e328921604b2aef4ad22f23102e257f55cd3 /azalea-registry/src
parent5121bf9ee1b665168280d2df3f995efe1aa1cd35 (diff)
downloadazalea-drasl-c4c5edf80b364b9e1281e04b26446cdff499a8b5.tar.xz
23w16a
Diffstat (limited to 'azalea-registry/src')
-rwxr-xr-xazalea-registry/src/lib.rs67
1 files changed, 43 insertions, 24 deletions
diff --git a/azalea-registry/src/lib.rs b/azalea-registry/src/lib.rs
index acdcd676..1cea7afd 100755
--- a/azalea-registry/src/lib.rs
+++ b/azalea-registry/src/lib.rs
@@ -1243,11 +1243,10 @@ enum ChunkStatus {
Noise => "minecraft:noise",
Surface => "minecraft:surface",
Carvers => "minecraft:carvers",
- LiquidCarvers => "minecraft:liquid_carvers",
Features => "minecraft:features",
+ InitializeLight => "minecraft:initialize_light",
Light => "minecraft:light",
Spawn => "minecraft:spawn",
- Heightmaps => "minecraft:heightmaps",
Full => "minecraft:full",
}
}
@@ -2923,26 +2922,26 @@ enum Item {
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",
+ AnglerPotterySherd => "minecraft:angler_pottery_sherd",
+ ArcherPotterySherd => "minecraft:archer_pottery_sherd",
+ ArmsUpPotterySherd => "minecraft:arms_up_pottery_sherd",
+ BladePotterySherd => "minecraft:blade_pottery_sherd",
+ BrewerPotterySherd => "minecraft:brewer_pottery_sherd",
+ BurnPotterySherd => "minecraft:burn_pottery_sherd",
+ DangerPotterySherd => "minecraft:danger_pottery_sherd",
+ ExplorerPotterySherd => "minecraft:explorer_pottery_sherd",
+ FriendPotterySherd => "minecraft:friend_pottery_sherd",
+ HeartPotterySherd => "minecraft:heart_pottery_sherd",
+ HeartbreakPotterySherd => "minecraft:heartbreak_pottery_sherd",
+ HowlPotterySherd => "minecraft:howl_pottery_sherd",
+ MinerPotterySherd => "minecraft:miner_pottery_sherd",
+ MournerPotterySherd => "minecraft:mourner_pottery_sherd",
+ PlentyPotterySherd => "minecraft:plenty_pottery_sherd",
+ PrizePotterySherd => "minecraft:prize_pottery_sherd",
+ SheafPotterySherd => "minecraft:sheaf_pottery_sherd",
+ ShelterPotterySherd => "minecraft:shelter_pottery_sherd",
+ SkullPotterySherd => "minecraft:skull_pottery_sherd",
+ SnortPotterySherd => "minecraft:snort_pottery_sherd",
}
}
@@ -4748,8 +4747,9 @@ enum SoundEvent {
EntitySnifferDigging => "minecraft:entity.sniffer.digging",
EntitySnifferDiggingStop => "minecraft:entity.sniffer.digging_stop",
EntitySnifferHappy => "minecraft:entity.sniffer.happy",
- BlockSnifferEggCrack => "minecraft:block.sniffer.egg_crack",
- BlockSnifferEggHatch => "minecraft:block.sniffer.egg_hatch",
+ BlockSnifferEggPlop => "minecraft:block.sniffer_egg.plop",
+ BlockSnifferEggCrack => "minecraft:block.sniffer_egg.crack",
+ BlockSnifferEggHatch => "minecraft:block.sniffer_egg.hatch",
EntitySnowballThrow => "minecraft:entity.snowball.throw",
BlockSnowBreak => "minecraft:block.snow.break",
BlockSnowFall => "minecraft:block.snow.fall",
@@ -5421,3 +5421,22 @@ enum RuleBlockEntityModifier {
AppendLoot => "minecraft:append_loot",
}
}
+
+registry! {
+enum CreativeModeTab {
+ BuildingBlocks => "minecraft:building_blocks",
+ ColoredBlocks => "minecraft:colored_blocks",
+ NaturalBlocks => "minecraft:natural_blocks",
+ FunctionalBlocks => "minecraft:functional_blocks",
+ RedstoneBlocks => "minecraft:redstone_blocks",
+ Hotbar => "minecraft:hotbar",
+ Search => "minecraft:search",
+ ToolsAndUtilities => "minecraft:tools_and_utilities",
+ Combat => "minecraft:combat",
+ FoodAndDrinks => "minecraft:food_and_drinks",
+ Ingredients => "minecraft:ingredients",
+ SpawnEggs => "minecraft:spawn_eggs",
+ OpBlocks => "minecraft:op_blocks",
+ Inventory => "minecraft:inventory",
+}
+}