diff options
Diffstat (limited to 'azalea-registry/src')
| -rwxr-xr-x | azalea-registry/src/lib.rs | 67 |
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", +} +} |
