Skip to main content

azalea_registry/
builtin.rs

1//! All built-in registries.
2//!
3//! This is different from data-driven registries, which are defined in
4//! [`azalea_registry::data`](crate::data).
5
6use azalea_registry_macros::registry;
7
8registry! {
9/// The AI code that's currently being executed for the entity.
10enum Activity {
11    Core => "core",
12    Idle => "idle",
13    Work => "work",
14    Play => "play",
15    Rest => "rest",
16    Meet => "meet",
17    Panic => "panic",
18    Raid => "raid",
19    PreRaid => "pre_raid",
20    Hide => "hide",
21    Fight => "fight",
22    Celebrate => "celebrate",
23    AdmireItem => "admire_item",
24    Avoid => "avoid",
25    Ride => "ride",
26    PlayDead => "play_dead",
27    LongJump => "long_jump",
28    Ram => "ram",
29    Tongue => "tongue",
30    Swim => "swim",
31    LaySpawn => "lay_spawn",
32    Sniff => "sniff",
33    Investigate => "investigate",
34    Roar => "roar",
35    Emerge => "emerge",
36    Dig => "dig",
37}
38}
39
40registry! {
41enum Attribute {
42    AirDragModifier => "air_drag_modifier",
43    Armor => "armor",
44    ArmorToughness => "armor_toughness",
45    AttackDamage => "attack_damage",
46    AttackKnockback => "attack_knockback",
47    AttackSpeed => "attack_speed",
48    BelowNameDistance => "below_name_distance",
49    BlockBreakSpeed => "block_break_speed",
50    BlockInteractionRange => "block_interaction_range",
51    Bounciness => "bounciness",
52    BurningTime => "burning_time",
53    CameraDistance => "camera_distance",
54    ExplosionKnockbackResistance => "explosion_knockback_resistance",
55    EntityInteractionRange => "entity_interaction_range",
56    FallDamageMultiplier => "fall_damage_multiplier",
57    FlyingSpeed => "flying_speed",
58    FollowRange => "follow_range",
59    FrictionModifier => "friction_modifier",
60    Gravity => "gravity",
61    JumpStrength => "jump_strength",
62    KnockbackResistance => "knockback_resistance",
63    Luck => "luck",
64    MaxAbsorption => "max_absorption",
65    MaxHealth => "max_health",
66    MiningEfficiency => "mining_efficiency",
67    MovementEfficiency => "movement_efficiency",
68    MovementSpeed => "movement_speed",
69    NameTagDistance => "name_tag_distance",
70    OxygenBonus => "oxygen_bonus",
71    SafeFallDistance => "safe_fall_distance",
72    Scale => "scale",
73    SneakingSpeed => "sneaking_speed",
74    SpawnReinforcements => "spawn_reinforcements",
75    StepHeight => "step_height",
76    SubmergedMiningSpeed => "submerged_mining_speed",
77    SweepingDamageRatio => "sweeping_damage_ratio",
78    TemptRange => "tempt_range",
79    WaterMovementEfficiency => "water_movement_efficiency",
80    WaypointTransmitRange => "waypoint_transmit_range",
81    WaypointReceiveRange => "waypoint_receive_range",
82}
83}
84
85registry! {
86/// An enum that contains every type of block entity.
87///
88/// A block entity is a block that contains data that can't be represented as
89/// just a block state, like how chests store items.
90enum BlockEntityKind {
91    Furnace => "furnace",
92    Chest => "chest",
93    TrappedChest => "trapped_chest",
94    EnderChest => "ender_chest",
95    Jukebox => "jukebox",
96    Dispenser => "dispenser",
97    Dropper => "dropper",
98    Sign => "sign",
99    HangingSign => "hanging_sign",
100    MobSpawner => "mob_spawner",
101    CreakingHeart => "creaking_heart",
102    Piston => "piston",
103    BrewingStand => "brewing_stand",
104    EnchantingTable => "enchanting_table",
105    EndPortal => "end_portal",
106    Beacon => "beacon",
107    Skull => "skull",
108    DaylightDetector => "daylight_detector",
109    Hopper => "hopper",
110    Comparator => "comparator",
111    Banner => "banner",
112    StructureBlock => "structure_block",
113    EndGateway => "end_gateway",
114    CommandBlock => "command_block",
115    ShulkerBox => "shulker_box",
116    Conduit => "conduit",
117    Barrel => "barrel",
118    Smoker => "smoker",
119    BlastFurnace => "blast_furnace",
120    Lectern => "lectern",
121    Bell => "bell",
122    Jigsaw => "jigsaw",
123    Campfire => "campfire",
124    Beehive => "beehive",
125    SculkSensor => "sculk_sensor",
126    CalibratedSculkSensor => "calibrated_sculk_sensor",
127    SculkCatalyst => "sculk_catalyst",
128    SculkShrieker => "sculk_shrieker",
129    ChiseledBookshelf => "chiseled_bookshelf",
130    Shelf => "shelf",
131    BrushableBlock => "brushable_block",
132    DecoratedPot => "decorated_pot",
133    Crafter => "crafter",
134    TrialSpawner => "trial_spawner",
135    Vault => "vault",
136    TestBlock => "test_block",
137    TestInstanceBlock => "test_instance_block",
138    CopperGolemStatue => "copper_golem_statue",
139    PotentSulfur => "potent_sulfur",
140}
141}
142
143registry! {
144enum BlockPredicateKind {
145    MatchingBlocks => "matching_blocks",
146    MatchingBlockTag => "matching_block_tag",
147    MatchingFluids => "matching_fluids",
148    MatchingBiomes => "matching_biomes",
149    HasSturdyFace => "has_sturdy_face",
150    Solid => "solid",
151    Replaceable => "replaceable",
152    WouldSurvive => "would_survive",
153    InsideWorldBounds => "inside_world_bounds",
154    AnyOf => "any_of",
155    AllOf => "all_of",
156    Not => "not",
157    True => "true",
158    Unobstructed => "unobstructed",
159}
160}
161
162registry! {
163enum ChunkStatus {
164    Empty => "empty",
165    StructureStarts => "structure_starts",
166    StructureReferences => "structure_references",
167    Biomes => "biomes",
168    Noise => "noise",
169    Surface => "surface",
170    Carvers => "carvers",
171    Features => "features",
172    InitializeLight => "initialize_light",
173    Light => "light",
174    Spawn => "spawn",
175    Full => "full",
176}
177}
178
179registry! {
180enum CommandArgumentKind {
181    Bool => "bool",
182    Float => "float",
183    Double => "double",
184    Integer => "integer",
185    Long => "long",
186    String => "string",
187    Entity => "entity",
188    GameProfile => "game_profile",
189    BlockPos => "block_pos",
190    ColumnPos => "column_pos",
191    Vec3 => "vec3",
192    Vec2 => "vec2",
193    BlockState => "block_state",
194    BlockPredicate => "block_predicate",
195    ItemStack => "item_stack",
196    ItemPredicate => "item_predicate",
197    TeamColor => "team_color",
198    HexColor => "hex_color",
199    Component => "component",
200    Style => "style",
201    Message => "message",
202    NbtCompoundTag => "nbt_compound_tag",
203    NbtTag => "nbt_tag",
204    NbtPath => "nbt_path",
205    Objective => "objective",
206    ObjectiveCriteria => "objective_criteria",
207    Operation => "operation",
208    Particle => "particle",
209    Angle => "angle",
210    Rotation => "rotation",
211    ScoreboardSlot => "scoreboard_slot",
212    ScoreHolder => "score_holder",
213    Swizzle => "swizzle",
214    Team => "team",
215    ItemSlot => "item_slot",
216    ItemSlots => "item_slots",
217    ResourceLocation => "resource_location",
218    Function => "function",
219    EntityAnchor => "entity_anchor",
220    IntRange => "int_range",
221    FloatRange => "float_range",
222    Dimension => "dimension",
223    Gamemode => "gamemode",
224    Time => "time",
225    ResourceOrTag => "resource_or_tag",
226    ResourceOrTagKey => "resource_or_tag_key",
227    Resource => "resource",
228    ResourceKey => "resource_key",
229    ResourceSelector => "resource_selector",
230    TemplateMirror => "template_mirror",
231    TemplateRotation => "template_rotation",
232    Heightmap => "heightmap",
233    LootTable => "loot_table",
234    LootPredicate => "loot_predicate",
235    LootModifier => "loot_modifier",
236    Dialog => "dialog",
237    Uuid => "uuid",
238}
239}
240
241registry! {
242enum CustomStat {
243    LeaveGame => "leave_game",
244    PlayTime => "play_time",
245    TotalWorldTime => "total_world_time",
246    TimeSinceDeath => "time_since_death",
247    TimeSinceRest => "time_since_rest",
248    SneakTime => "sneak_time",
249    WalkOneCm => "walk_one_cm",
250    CrouchOneCm => "crouch_one_cm",
251    SprintOneCm => "sprint_one_cm",
252    WalkOnWaterOneCm => "walk_on_water_one_cm",
253    FallOneCm => "fall_one_cm",
254    ClimbOneCm => "climb_one_cm",
255    FlyOneCm => "fly_one_cm",
256    WalkUnderWaterOneCm => "walk_under_water_one_cm",
257    MinecartOneCm => "minecart_one_cm",
258    BoatOneCm => "boat_one_cm",
259    PigOneCm => "pig_one_cm",
260    HappyGhastOneCm => "happy_ghast_one_cm",
261    HorseOneCm => "horse_one_cm",
262    AviateOneCm => "aviate_one_cm",
263    SwimOneCm => "swim_one_cm",
264    StriderOneCm => "strider_one_cm",
265    NautilusOneCm => "nautilus_one_cm",
266    Jump => "jump",
267    Drop => "drop",
268    DamageDealt => "damage_dealt",
269    DamageDealtAbsorbed => "damage_dealt_absorbed",
270    DamageDealtResisted => "damage_dealt_resisted",
271    DamageTaken => "damage_taken",
272    DamageBlockedByShield => "damage_blocked_by_shield",
273    DamageAbsorbed => "damage_absorbed",
274    DamageResisted => "damage_resisted",
275    Deaths => "deaths",
276    MobKills => "mob_kills",
277    AnimalsBred => "animals_bred",
278    PlayerKills => "player_kills",
279    FishCaught => "fish_caught",
280    TalkedToVillager => "talked_to_villager",
281    TradedWithVillager => "traded_with_villager",
282    EatCakeSlice => "eat_cake_slice",
283    FillCauldron => "fill_cauldron",
284    UseCauldron => "use_cauldron",
285    CleanArmor => "clean_armor",
286    CleanBanner => "clean_banner",
287    CleanShulkerBox => "clean_shulker_box",
288    InteractWithBrewingstand => "interact_with_brewingstand",
289    InteractWithBeacon => "interact_with_beacon",
290    InspectDropper => "inspect_dropper",
291    InspectHopper => "inspect_hopper",
292    InspectDispenser => "inspect_dispenser",
293    PlayNoteblock => "play_noteblock",
294    TuneNoteblock => "tune_noteblock",
295    PotFlower => "pot_flower",
296    TriggerTrappedChest => "trigger_trapped_chest",
297    OpenEnderchest => "open_enderchest",
298    EnchantItem => "enchant_item",
299    PlayRecord => "play_record",
300    InteractWithFurnace => "interact_with_furnace",
301    InteractWithCraftingTable => "interact_with_crafting_table",
302    OpenChest => "open_chest",
303    SleepInBed => "sleep_in_bed",
304    OpenShulkerBox => "open_shulker_box",
305    OpenBarrel => "open_barrel",
306    InteractWithBlastFurnace => "interact_with_blast_furnace",
307    InteractWithSmoker => "interact_with_smoker",
308    InteractWithLectern => "interact_with_lectern",
309    InteractWithCampfire => "interact_with_campfire",
310    InteractWithCartographyTable => "interact_with_cartography_table",
311    InteractWithLoom => "interact_with_loom",
312    InteractWithStonecutter => "interact_with_stonecutter",
313    BellRing => "bell_ring",
314    RaidTrigger => "raid_trigger",
315    RaidWin => "raid_win",
316    InteractWithAnvil => "interact_with_anvil",
317    InteractWithGrindstone => "interact_with_grindstone",
318    TargetHit => "target_hit",
319    InteractWithSmithingTable => "interact_with_smithing_table",
320}
321}
322
323registry! {
324/// An enum that contains every type of entity.
325enum EntityKind {
326    AcaciaBoat => "acacia_boat",
327    AcaciaChestBoat => "acacia_chest_boat",
328    Allay => "allay",
329    AreaEffectCloud => "area_effect_cloud",
330    Armadillo => "armadillo",
331    ArmorStand => "armor_stand",
332    Arrow => "arrow",
333    Axolotl => "axolotl",
334    BambooChestRaft => "bamboo_chest_raft",
335    BambooRaft => "bamboo_raft",
336    Bat => "bat",
337    Bee => "bee",
338    BirchBoat => "birch_boat",
339    BirchChestBoat => "birch_chest_boat",
340    Blaze => "blaze",
341    BlockDisplay => "block_display",
342    Bogged => "bogged",
343    Breeze => "breeze",
344    BreezeWindCharge => "breeze_wind_charge",
345    Camel => "camel",
346    CamelHusk => "camel_husk",
347    Cat => "cat",
348    CaveSpider => "cave_spider",
349    CherryBoat => "cherry_boat",
350    CherryChestBoat => "cherry_chest_boat",
351    ChestMinecart => "chest_minecart",
352    Chicken => "chicken",
353    Cod => "cod",
354    CopperGolem => "copper_golem",
355    CommandBlockMinecart => "command_block_minecart",
356    Cow => "cow",
357    Creaking => "creaking",
358    Creeper => "creeper",
359    DarkOakBoat => "dark_oak_boat",
360    DarkOakChestBoat => "dark_oak_chest_boat",
361    Dolphin => "dolphin",
362    Donkey => "donkey",
363    DragonFireball => "dragon_fireball",
364    Drowned => "drowned",
365    Egg => "egg",
366    ElderGuardian => "elder_guardian",
367    Enderman => "enderman",
368    Endermite => "endermite",
369    EnderDragon => "ender_dragon",
370    EnderPearl => "ender_pearl",
371    EndCrystal => "end_crystal",
372    Evoker => "evoker",
373    EvokerFangs => "evoker_fangs",
374    ExperienceBottle => "experience_bottle",
375    ExperienceOrb => "experience_orb",
376    EyeOfEnder => "eye_of_ender",
377    FallingBlock => "falling_block",
378    Fireball => "fireball",
379    FireworkRocket => "firework_rocket",
380    Fox => "fox",
381    Frog => "frog",
382    FurnaceMinecart => "furnace_minecart",
383    Ghast => "ghast",
384    HappyGhast => "happy_ghast",
385    Giant => "giant",
386    GlowItemFrame => "glow_item_frame",
387    GlowSquid => "glow_squid",
388    Goat => "goat",
389    Guardian => "guardian",
390    Hoglin => "hoglin",
391    HopperMinecart => "hopper_minecart",
392    Horse => "horse",
393    Husk => "husk",
394    Illusioner => "illusioner",
395    Interaction => "interaction",
396    IronGolem => "iron_golem",
397    Item => "item",
398    ItemDisplay => "item_display",
399    ItemFrame => "item_frame",
400    JungleBoat => "jungle_boat",
401    JungleChestBoat => "jungle_chest_boat",
402    LeashKnot => "leash_knot",
403    LightningBolt => "lightning_bolt",
404    Llama => "llama",
405    LlamaSpit => "llama_spit",
406    MagmaCube => "magma_cube",
407    MangroveBoat => "mangrove_boat",
408    MangroveChestBoat => "mangrove_chest_boat",
409    Mannequin => "mannequin",
410    Marker => "marker",
411    Minecart => "minecart",
412    Mooshroom => "mooshroom",
413    Mule => "mule",
414    Nautilus => "nautilus",
415    OakBoat => "oak_boat",
416    OakChestBoat => "oak_chest_boat",
417    Ocelot => "ocelot",
418    OminousItemSpawner => "ominous_item_spawner",
419    Painting => "painting",
420    PaleOakBoat => "pale_oak_boat",
421    PaleOakChestBoat => "pale_oak_chest_boat",
422    Panda => "panda",
423    Parched => "parched",
424    Parrot => "parrot",
425    Phantom => "phantom",
426    Pig => "pig",
427    Piglin => "piglin",
428    PiglinBrute => "piglin_brute",
429    Pillager => "pillager",
430    PolarBear => "polar_bear",
431    SplashPotion => "splash_potion",
432    LingeringPotion => "lingering_potion",
433    Pufferfish => "pufferfish",
434    Rabbit => "rabbit",
435    Ravager => "ravager",
436    Salmon => "salmon",
437    Sheep => "sheep",
438    Shulker => "shulker",
439    ShulkerBullet => "shulker_bullet",
440    Silverfish => "silverfish",
441    Skeleton => "skeleton",
442    SkeletonHorse => "skeleton_horse",
443    Slime => "slime",
444    SmallFireball => "small_fireball",
445    Sniffer => "sniffer",
446    Snowball => "snowball",
447    SnowGolem => "snow_golem",
448    SpawnerMinecart => "spawner_minecart",
449    SpectralArrow => "spectral_arrow",
450    Spider => "spider",
451    SpruceBoat => "spruce_boat",
452    SpruceChestBoat => "spruce_chest_boat",
453    Squid => "squid",
454    Stray => "stray",
455    Strider => "strider",
456    SulfurCube => "sulfur_cube",
457    Tadpole => "tadpole",
458    TextDisplay => "text_display",
459    Tnt => "tnt",
460    TntMinecart => "tnt_minecart",
461    TraderLlama => "trader_llama",
462    Trident => "trident",
463    TropicalFish => "tropical_fish",
464    Turtle => "turtle",
465    Vex => "vex",
466    Villager => "villager",
467    Vindicator => "vindicator",
468    WanderingTrader => "wandering_trader",
469    Warden => "warden",
470    WindCharge => "wind_charge",
471    Witch => "witch",
472    Wither => "wither",
473    WitherSkeleton => "wither_skeleton",
474    WitherSkull => "wither_skull",
475    Wolf => "wolf",
476    Zoglin => "zoglin",
477    Zombie => "zombie",
478    ZombieHorse => "zombie_horse",
479    ZombieNautilus => "zombie_nautilus",
480    ZombieVillager => "zombie_villager",
481    ZombifiedPiglin => "zombified_piglin",
482    Player => "player",
483    FishingBobber => "fishing_bobber",
484}
485}
486
487registry! {
488enum FloatProviderKind {
489    Constant => "constant",
490    Uniform => "uniform",
491    ClampedNormal => "clamped_normal",
492    Trapezoid => "trapezoid",
493}
494}
495
496registry! {
497enum Fluid {
498    Empty => "empty",
499    FlowingWater => "flowing_water",
500    Water => "water",
501    FlowingLava => "flowing_lava",
502    Lava => "lava",
503}
504}
505
506registry! {
507enum GameEvent {
508    BlockActivate => "block_activate",
509    BlockAttach => "block_attach",
510    BlockChange => "block_change",
511    BlockClose => "block_close",
512    BlockDeactivate => "block_deactivate",
513    BlockDestroy => "block_destroy",
514    BlockDetach => "block_detach",
515    BlockOpen => "block_open",
516    BlockPlace => "block_place",
517    Bounce => "bounce",
518    ContainerClose => "container_close",
519    ContainerOpen => "container_open",
520    Drink => "drink",
521    Eat => "eat",
522    ElytraGlide => "elytra_glide",
523    EntityDamage => "entity_damage",
524    EntityDie => "entity_die",
525    EntityDismount => "entity_dismount",
526    EntityInteract => "entity_interact",
527    EntityMount => "entity_mount",
528    EntityPlace => "entity_place",
529    EntityAction => "entity_action",
530    Equip => "equip",
531    Explode => "explode",
532    Flap => "flap",
533    FluidPickup => "fluid_pickup",
534    FluidPlace => "fluid_place",
535    HitGround => "hit_ground",
536    InstrumentPlay => "instrument_play",
537    ItemInteractFinish => "item_interact_finish",
538    ItemInteractStart => "item_interact_start",
539    JukeboxPlay => "jukebox_play",
540    JukeboxStopPlay => "jukebox_stop_play",
541    LightningStrike => "lightning_strike",
542    NoteBlockPlay => "note_block_play",
543    PrimeFuse => "prime_fuse",
544    ProjectileLand => "projectile_land",
545    ProjectileShoot => "projectile_shoot",
546    SculkSensorTendrilsClicking => "sculk_sensor_tendrils_clicking",
547    Shear => "shear",
548    Shriek => "shriek",
549    Splash => "splash",
550    Step => "step",
551    Swim => "swim",
552    Teleport => "teleport",
553    Unequip => "unequip",
554    Resonate1 => "resonate_1",
555    Resonate2 => "resonate_2",
556    Resonate3 => "resonate_3",
557    Resonate4 => "resonate_4",
558    Resonate5 => "resonate_5",
559    Resonate6 => "resonate_6",
560    Resonate7 => "resonate_7",
561    Resonate8 => "resonate_8",
562    Resonate9 => "resonate_9",
563    Resonate10 => "resonate_10",
564    Resonate11 => "resonate_11",
565    Resonate12 => "resonate_12",
566    Resonate13 => "resonate_13",
567    Resonate14 => "resonate_14",
568    Resonate15 => "resonate_15",
569}
570}
571
572registry! {
573enum HeightProviderKind {
574    Constant => "constant",
575    Uniform => "uniform",
576    BiasedToBottom => "biased_to_bottom",
577    VeryBiasedToBottom => "very_biased_to_bottom",
578    Trapezoid => "trapezoid",
579    WeightedList => "weighted_list",
580}
581}
582
583registry! {
584enum IntProviderKind {
585    Constant => "constant",
586    Uniform => "uniform",
587    BiasedToBottom => "biased_to_bottom",
588    Clamped => "clamped",
589    WeightedList => "weighted_list",
590    ClampedNormal => "clamped_normal",
591    Trapezoid => "trapezoid",
592}
593}
594
595registry! {
596enum LootConditionKind {
597    Inverted => "inverted",
598    AnyOf => "any_of",
599    AllOf => "all_of",
600    RandomChance => "random_chance",
601    RandomChanceWithEnchantedBonus => "random_chance_with_enchanted_bonus",
602    EntityProperties => "entity_properties",
603    KilledByPlayer => "killed_by_player",
604    EntityScores => "entity_scores",
605    BlockStateProperty => "block_state_property",
606    MatchTool => "match_tool",
607    TableBonus => "table_bonus",
608    SurvivesExplosion => "survives_explosion",
609    DamageSourceProperties => "damage_source_properties",
610    LocationCheck => "location_check",
611    WeatherCheck => "weather_check",
612    Reference => "reference",
613    TimeCheck => "time_check",
614    ValueCheck => "value_check",
615    EnchantmentActiveCheck => "enchantment_active_check",
616    EnvironmentAttributeCheck => "environment_attribute_check",
617}
618}
619
620registry! {
621enum LootFunctionKind {
622    SetCount => "set_count",
623    SetItem => "set_item",
624    EnchantWithLevels => "enchant_with_levels",
625    EnchantRandomly => "enchant_randomly",
626    SetEnchantments => "set_enchantments",
627    SetCustomData => "set_custom_data",
628    SetComponents => "set_components",
629    FurnaceSmelt => "furnace_smelt",
630    EnchantedCountIncrease => "enchanted_count_increase",
631    SetDamage => "set_damage",
632    SetAttributes => "set_attributes",
633    SetName => "set_name",
634    ExplorationMap => "exploration_map",
635    SetStewEffect => "set_stew_effect",
636    CopyName => "copy_name",
637    SetContents => "set_contents",
638    ModifyContents => "modify_contents",
639    Filtered => "filtered",
640    LimitCount => "limit_count",
641    ApplyBonus => "apply_bonus",
642    SetLootTable => "set_loot_table",
643    ExplosionDecay => "explosion_decay",
644    SetLore => "set_lore",
645    FillPlayerHead => "fill_player_head",
646    CopyCustomData => "copy_custom_data",
647    CopyState => "copy_state",
648    SetBannerPattern => "set_banner_pattern",
649    SetPotion => "set_potion",
650    SetRandomDyes => "set_random_dyes",
651    SetRandomPotion => "set_random_potion",
652    SetInstrument => "set_instrument",
653    Reference => "reference",
654    Sequence => "sequence",
655    CopyComponents => "copy_components",
656    SetFireworks => "set_fireworks",
657    SetFireworkExplosion => "set_firework_explosion",
658    SetBookCover => "set_book_cover",
659    SetWrittenBookPages => "set_written_book_pages",
660    SetWritableBookPages => "set_writable_book_pages",
661    ToggleTooltips => "toggle_tooltips",
662    SetOminousBottleAmplifier => "set_ominous_bottle_amplifier",
663    SetCustomModelData => "set_custom_model_data",
664    Discard => "discard",
665}
666}
667
668registry! {
669enum LootNbtProviderKind {
670    Storage => "storage",
671    Context => "context",
672}
673}
674
675registry! {
676enum LootNumberProviderKind {
677    Constant => "constant",
678    Uniform => "uniform",
679    Binomial => "binomial",
680    Score => "score",
681    Storage => "storage",
682    Sum => "sum",
683    EnchantmentLevel => "enchantment_level",
684    EnvironmentAttribute => "environment_attribute",
685}
686}
687
688registry! {
689enum LootPoolEntryKind {
690    Empty => "empty",
691    Item => "item",
692    LootTable => "loot_table",
693    Dynamic => "dynamic",
694    Tag => "tag",
695    Slots => "slots",
696    Alternatives => "alternatives",
697    Sequence => "sequence",
698    Group => "group",
699}
700}
701
702registry! {
703enum LootScoreProviderKind {
704    Fixed => "fixed",
705    Context => "context",
706}
707}
708
709registry! {
710enum MemoryModuleKind {
711    Dummy => "dummy",
712    Home => "home",
713    JobSite => "job_site",
714    PotentialJobSite => "potential_job_site",
715    MeetingPoint => "meeting_point",
716    SecondaryJobSite => "secondary_job_site",
717    Mobs => "mobs",
718    VisibleMobs => "visible_mobs",
719    VisibleVillagerBabies => "visible_villager_babies",
720    NearestPlayers => "nearest_players",
721    NearestVisiblePlayer => "nearest_visible_player",
722    NearestVisibleTargetablePlayer => "nearest_visible_targetable_player",
723    NearestVisibleTargetablePlayers => "nearest_visible_targetable_players",
724    WalkTarget => "walk_target",
725    LookTarget => "look_target",
726    AttackTarget => "attack_target",
727    AttackCoolingDown => "attack_cooling_down",
728    InteractionTarget => "interaction_target",
729    BreedTarget => "breed_target",
730    RideTarget => "ride_target",
731    Path => "path",
732    DoorsToClose => "doors_to_close",
733    NearestBed => "nearest_bed",
734    HurtBy => "hurt_by",
735    HurtByEntity => "hurt_by_entity",
736    AvoidTarget => "avoid_target",
737    NearestHostile => "nearest_hostile",
738    NearestAttackable => "nearest_attackable",
739    HidingPlace => "hiding_place",
740    HeardBellTime => "heard_bell_time",
741    CantReachWalkTargetSince => "cant_reach_walk_target_since",
742    GolemDetectedRecently => "golem_detected_recently",
743    DangerDetectedRecently => "danger_detected_recently",
744    LastSlept => "last_slept",
745    LastWoken => "last_woken",
746    LastWorkedAtPoi => "last_worked_at_poi",
747    NearestVisibleAdult => "nearest_visible_adult",
748    NearestVisibleWantedItem => "nearest_visible_wanted_item",
749    NearestVisibleNemesis => "nearest_visible_nemesis",
750    PlayDeadTicks => "play_dead_ticks",
751    TemptingPlayer => "tempting_player",
752    TemptationCooldownTicks => "temptation_cooldown_ticks",
753    GazeCooldownTicks => "gaze_cooldown_ticks",
754    IsTempted => "is_tempted",
755    LongJumpCoolingDown => "long_jump_cooling_down",
756    LongJumpMidJump => "long_jump_mid_jump",
757    HasHuntingCooldown => "has_hunting_cooldown",
758    RamCooldownTicks => "ram_cooldown_ticks",
759    RamTarget => "ram_target",
760    IsInWater => "is_in_water",
761    IsPregnant => "is_pregnant",
762    IsPanicking => "is_panicking",
763    UnreachableTongueTargets => "unreachable_tongue_targets",
764    VisitedBlockPositions => "visited_block_positions",
765    UnreachableTransportBlockPositions => "unreachable_transport_block_positions",
766    TransportItemsCooldownTicks => "transport_items_cooldown_ticks",
767    ChargeCooldownTicks => "charge_cooldown_ticks",
768    AttackTargetCooldown => "attack_target_cooldown",
769    SpearFleeingTime => "spear_fleeing_time",
770    SpearFleeingPosition => "spear_fleeing_position",
771    SpearChargePosition => "spear_charge_position",
772    SpearEngageTime => "spear_engage_time",
773    SpearStatus => "spear_status",
774    AngryAt => "angry_at",
775    UniversalAnger => "universal_anger",
776    AdmiringItem => "admiring_item",
777    TimeTryingToReachAdmireItem => "time_trying_to_reach_admire_item",
778    DisableWalkToAdmireItem => "disable_walk_to_admire_item",
779    AdmiringDisabled => "admiring_disabled",
780    HuntedRecently => "hunted_recently",
781    CelebrateLocation => "celebrate_location",
782    Dancing => "dancing",
783    NearestVisibleHuntableHoglin => "nearest_visible_huntable_hoglin",
784    NearestVisibleBabyHoglin => "nearest_visible_baby_hoglin",
785    NearestTargetablePlayerNotWearingGold => "nearest_targetable_player_not_wearing_gold",
786    NearbyAdultPiglins => "nearby_adult_piglins",
787    NearestVisibleAdultPiglins => "nearest_visible_adult_piglins",
788    NearestVisibleAdultHoglins => "nearest_visible_adult_hoglins",
789    NearestVisibleAdultPiglin => "nearest_visible_adult_piglin",
790    NearestVisibleZombified => "nearest_visible_zombified",
791    VisibleAdultPiglinCount => "visible_adult_piglin_count",
792    VisibleAdultHoglinCount => "visible_adult_hoglin_count",
793    NearestPlayerHoldingWantedItem => "nearest_player_holding_wanted_item",
794    AteRecently => "ate_recently",
795    NearestRepellent => "nearest_repellent",
796    Pacified => "pacified",
797    RoarTarget => "roar_target",
798    DisturbanceLocation => "disturbance_location",
799    RecentProjectile => "recent_projectile",
800    IsSniffing => "is_sniffing",
801    IsEmerging => "is_emerging",
802    RoarSoundDelay => "roar_sound_delay",
803    DigCooldown => "dig_cooldown",
804    RoarSoundCooldown => "roar_sound_cooldown",
805    SniffCooldown => "sniff_cooldown",
806    TouchCooldown => "touch_cooldown",
807    VibrationCooldown => "vibration_cooldown",
808    SonicBoomCooldown => "sonic_boom_cooldown",
809    SonicBoomSoundCooldown => "sonic_boom_sound_cooldown",
810    SonicBoomSoundDelay => "sonic_boom_sound_delay",
811    LikedPlayer => "liked_player",
812    LikedNoteblock => "liked_noteblock",
813    LikedNoteblockCooldownTicks => "liked_noteblock_cooldown_ticks",
814    ItemPickupCooldownTicks => "item_pickup_cooldown_ticks",
815    SnifferExploredPositions => "sniffer_explored_positions",
816    SnifferSniffingTarget => "sniffer_sniffing_target",
817    SnifferDigging => "sniffer_digging",
818    SnifferHappy => "sniffer_happy",
819    BreezeJumpCooldown => "breeze_jump_cooldown",
820    BreezeShoot => "breeze_shoot",
821    BreezeShootCharging => "breeze_shoot_charging",
822    BreezeShootRecover => "breeze_shoot_recover",
823    BreezeShootCooldown => "breeze_shoot_cooldown",
824    BreezeJumpInhaling => "breeze_jump_inhaling",
825    BreezeJumpTarget => "breeze_jump_target",
826    BreezeLeavingWater => "breeze_leaving_water",
827}
828}
829
830registry! {
831enum MobEffect {
832    Speed => "speed",
833    Slowness => "slowness",
834    Haste => "haste",
835    MiningFatigue => "mining_fatigue",
836    Strength => "strength",
837    InstantHealth => "instant_health",
838    InstantDamage => "instant_damage",
839    JumpBoost => "jump_boost",
840    Nausea => "nausea",
841    Regeneration => "regeneration",
842    Resistance => "resistance",
843    FireResistance => "fire_resistance",
844    WaterBreathing => "water_breathing",
845    Invisibility => "invisibility",
846    Blindness => "blindness",
847    NightVision => "night_vision",
848    Hunger => "hunger",
849    Weakness => "weakness",
850    Poison => "poison",
851    Wither => "wither",
852    HealthBoost => "health_boost",
853    Absorption => "absorption",
854    Saturation => "saturation",
855    Glowing => "glowing",
856    Levitation => "levitation",
857    Luck => "luck",
858    Unluck => "unluck",
859    SlowFalling => "slow_falling",
860    ConduitPower => "conduit_power",
861    DolphinsGrace => "dolphins_grace",
862    BadOmen => "bad_omen",
863    HeroOfTheVillage => "hero_of_the_village",
864    Darkness => "darkness",
865    TrialOmen => "trial_omen",
866    RaidOmen => "raid_omen",
867    WindCharged => "wind_charged",
868    Weaving => "weaving",
869    Oozing => "oozing",
870    Infested => "infested",
871    BreathOfTheNautilus => "breath_of_the_nautilus",
872}
873}
874
875registry! {
876enum ParticleKind {
877    AngryVillager => "angry_villager",
878    Block => "block",
879    BlockMarker => "block_marker",
880    Bubble => "bubble",
881    SulfurBubbles => "sulfur_bubbles",
882    NoxiousGas => "noxious_gas",
883    NoxiousGasCloud => "noxious_gas_cloud",
884    Geyser => "geyser",
885    GeyserBase => "geyser_base",
886    GeyserPoof => "geyser_poof",
887    GeyserPlume => "geyser_plume",
888    Cloud => "cloud",
889    CopperFireFlame => "copper_fire_flame",
890    Crit => "crit",
891    DamageIndicator => "damage_indicator",
892    DragonBreath => "dragon_breath",
893    DrippingLava => "dripping_lava",
894    FallingLava => "falling_lava",
895    LandingLava => "landing_lava",
896    DrippingWater => "dripping_water",
897    FallingWater => "falling_water",
898    Dust => "dust",
899    DustColorTransition => "dust_color_transition",
900    Effect => "effect",
901    ElderGuardian => "elder_guardian",
902    EnchantedHit => "enchanted_hit",
903    Enchant => "enchant",
904    EndRod => "end_rod",
905    EntityEffect => "entity_effect",
906    ExplosionEmitter => "explosion_emitter",
907    Explosion => "explosion",
908    Gust => "gust",
909    SmallGust => "small_gust",
910    GustEmitterLarge => "gust_emitter_large",
911    GustEmitterSmall => "gust_emitter_small",
912    SonicBoom => "sonic_boom",
913    FallingDust => "falling_dust",
914    Firework => "firework",
915    Fishing => "fishing",
916    Flame => "flame",
917    Infested => "infested",
918    CherryLeaves => "cherry_leaves",
919    PaleOakLeaves => "pale_oak_leaves",
920    TintedLeaves => "tinted_leaves",
921    SculkSoul => "sculk_soul",
922    SculkCharge => "sculk_charge",
923    SculkChargePop => "sculk_charge_pop",
924    SoulFireFlame => "soul_fire_flame",
925    Soul => "soul",
926    Flash => "flash",
927    HappyVillager => "happy_villager",
928    Composter => "composter",
929    Heart => "heart",
930    InstantEffect => "instant_effect",
931    Item => "item",
932    Vibration => "vibration",
933    Trail => "trail",
934    PauseMobGrowth => "pause_mob_growth",
935    ResetMobGrowth => "reset_mob_growth",
936    ItemSlime => "item_slime",
937    ItemCobweb => "item_cobweb",
938    ItemSnowball => "item_snowball",
939    LargeSmoke => "large_smoke",
940    Lava => "lava",
941    Mycelium => "mycelium",
942    Note => "note",
943    Poof => "poof",
944    Portal => "portal",
945    Rain => "rain",
946    Smoke => "smoke",
947    WhiteSmoke => "white_smoke",
948    Sneeze => "sneeze",
949    Spit => "spit",
950    SquidInk => "squid_ink",
951    SweepAttack => "sweep_attack",
952    TotemOfUndying => "totem_of_undying",
953    Underwater => "underwater",
954    Splash => "splash",
955    Witch => "witch",
956    BubblePop => "bubble_pop",
957    CurrentDown => "current_down",
958    BubbleColumnUp => "bubble_column_up",
959    Nautilus => "nautilus",
960    Dolphin => "dolphin",
961    CampfireCosySmoke => "campfire_cosy_smoke",
962    CampfireSignalSmoke => "campfire_signal_smoke",
963    DrippingHoney => "dripping_honey",
964    FallingHoney => "falling_honey",
965    LandingHoney => "landing_honey",
966    FallingNectar => "falling_nectar",
967    FallingSporeBlossom => "falling_spore_blossom",
968    Ash => "ash",
969    CrimsonSpore => "crimson_spore",
970    WarpedSpore => "warped_spore",
971    SporeBlossomAir => "spore_blossom_air",
972    DrippingObsidianTear => "dripping_obsidian_tear",
973    FallingObsidianTear => "falling_obsidian_tear",
974    LandingObsidianTear => "landing_obsidian_tear",
975    ReversePortal => "reverse_portal",
976    WhiteAsh => "white_ash",
977    SmallFlame => "small_flame",
978    Snowflake => "snowflake",
979    DrippingDripstoneLava => "dripping_dripstone_lava",
980    FallingDripstoneLava => "falling_dripstone_lava",
981    DrippingDripstoneWater => "dripping_dripstone_water",
982    FallingDripstoneWater => "falling_dripstone_water",
983    GlowSquidInk => "glow_squid_ink",
984    Glow => "glow",
985    WaxOn => "wax_on",
986    WaxOff => "wax_off",
987    ElectricSpark => "electric_spark",
988    Scrape => "scrape",
989    Shriek => "shriek",
990    EggCrack => "egg_crack",
991    DustPlume => "dust_plume",
992    TrialSpawnerDetection => "trial_spawner_detection",
993    TrialSpawnerDetectionOminous => "trial_spawner_detection_ominous",
994    VaultConnection => "vault_connection",
995    DustPillar => "dust_pillar",
996    OminousSpawning => "ominous_spawning",
997    RaidOmen => "raid_omen",
998    TrialOmen => "trial_omen",
999    BlockCrumble => "block_crumble",
1000    Firefly => "firefly",
1001    SulfurCubeGoo => "sulfur_cube_goo",
1002}
1003}
1004
1005registry! {
1006enum PointOfInterestKind {
1007    Armorer => "armorer",
1008    Butcher => "butcher",
1009    Cartographer => "cartographer",
1010    Cleric => "cleric",
1011    Farmer => "farmer",
1012    Fisherman => "fisherman",
1013    Fletcher => "fletcher",
1014    Leatherworker => "leatherworker",
1015    Librarian => "librarian",
1016    Mason => "mason",
1017    Shepherd => "shepherd",
1018    Toolsmith => "toolsmith",
1019    Weaponsmith => "weaponsmith",
1020    Home => "home",
1021    Meeting => "meeting",
1022    Beehive => "beehive",
1023    BeeNest => "bee_nest",
1024    NetherPortal => "nether_portal",
1025    Lodestone => "lodestone",
1026    TestInstance => "test_instance",
1027    LightningRod => "lightning_rod",
1028}
1029}
1030
1031registry! {
1032enum PosRuleTest {
1033    AlwaysTrue => "always_true",
1034    LinearPos => "linear_pos",
1035    AxisAlignedLinearPos => "axis_aligned_linear_pos",
1036}
1037}
1038
1039registry! {
1040enum PositionSourceKind {
1041    Block => "block",
1042    Entity => "entity",
1043}
1044}
1045
1046registry! {
1047enum Potion {
1048    Water => "water",
1049    Mundane => "mundane",
1050    Thick => "thick",
1051    Awkward => "awkward",
1052    NightVision => "night_vision",
1053    LongNightVision => "long_night_vision",
1054    Invisibility => "invisibility",
1055    LongInvisibility => "long_invisibility",
1056    Leaping => "leaping",
1057    LongLeaping => "long_leaping",
1058    StrongLeaping => "strong_leaping",
1059    FireResistance => "fire_resistance",
1060    LongFireResistance => "long_fire_resistance",
1061    Swiftness => "swiftness",
1062    LongSwiftness => "long_swiftness",
1063    StrongSwiftness => "strong_swiftness",
1064    Slowness => "slowness",
1065    LongSlowness => "long_slowness",
1066    StrongSlowness => "strong_slowness",
1067    TurtleMaster => "turtle_master",
1068    LongTurtleMaster => "long_turtle_master",
1069    StrongTurtleMaster => "strong_turtle_master",
1070    WaterBreathing => "water_breathing",
1071    LongWaterBreathing => "long_water_breathing",
1072    Healing => "healing",
1073    StrongHealing => "strong_healing",
1074    Harming => "harming",
1075    StrongHarming => "strong_harming",
1076    Poison => "poison",
1077    LongPoison => "long_poison",
1078    StrongPoison => "strong_poison",
1079    Regeneration => "regeneration",
1080    LongRegeneration => "long_regeneration",
1081    StrongRegeneration => "strong_regeneration",
1082    Strength => "strength",
1083    LongStrength => "long_strength",
1084    StrongStrength => "strong_strength",
1085    Weakness => "weakness",
1086    LongWeakness => "long_weakness",
1087    Luck => "luck",
1088    SlowFalling => "slow_falling",
1089    LongSlowFalling => "long_slow_falling",
1090    WindCharged => "wind_charged",
1091    Weaving => "weaving",
1092    Oozing => "oozing",
1093    Infested => "infested",
1094}
1095}
1096
1097registry! {
1098enum RecipeSerializer {
1099    CraftingShaped => "crafting_shaped",
1100    CraftingShapeless => "crafting_shapeless",
1101    CraftingDye => "crafting_dye",
1102    CraftingImbue => "crafting_imbue",
1103    CraftingTransmute => "crafting_transmute",
1104    CraftingDecoratedPot => "crafting_decorated_pot",
1105    CraftingSpecialBookcloning => "crafting_special_bookcloning",
1106    CraftingSpecialMapextending => "crafting_special_mapextending",
1107    CraftingSpecialFireworkRocket => "crafting_special_firework_rocket",
1108    CraftingSpecialFireworkStar => "crafting_special_firework_star",
1109    CraftingSpecialFireworkStarFade => "crafting_special_firework_star_fade",
1110    CraftingSpecialBannerduplicate => "crafting_special_bannerduplicate",
1111    CraftingSpecialShielddecoration => "crafting_special_shielddecoration",
1112    CraftingSpecialRepairitem => "crafting_special_repairitem",
1113    Smelting => "smelting",
1114    Blasting => "blasting",
1115    Smoking => "smoking",
1116    CampfireCooking => "campfire_cooking",
1117    Stonecutting => "stonecutting",
1118    SmithingTransform => "smithing_transform",
1119    SmithingTrim => "smithing_trim",
1120}
1121}
1122
1123registry! {
1124enum RecipeKind {
1125    Crafting => "crafting",
1126    Smelting => "smelting",
1127    Blasting => "blasting",
1128    Smoking => "smoking",
1129    CampfireCooking => "campfire_cooking",
1130    Stonecutting => "stonecutting",
1131    Smithing => "smithing",
1132}
1133}
1134
1135registry! {
1136enum RuleTest {
1137    AlwaysTrue => "always_true",
1138    BlockMatch => "block_match",
1139    BlockstateMatch => "blockstate_match",
1140    TagMatch => "tag_match",
1141    RandomBlockMatch => "random_block_match",
1142    RandomBlockstateMatch => "random_blockstate_match",
1143}
1144}
1145
1146registry! {
1147enum SensorKind {
1148    Dummy => "dummy",
1149    NearestItems => "nearest_items",
1150    NearestLivingEntities => "nearest_living_entities",
1151    NearestPlayers => "nearest_players",
1152    NearestBed => "nearest_bed",
1153    HurtBy => "hurt_by",
1154    VillagerHostiles => "villager_hostiles",
1155    VillagerBabies => "villager_babies",
1156    SecondaryPois => "secondary_pois",
1157    GolemDetected => "golem_detected",
1158    ArmadilloScareDetected => "armadillo_scare_detected",
1159    PiglinSpecificSensor => "piglin_specific_sensor",
1160    PiglinBruteSpecificSensor => "piglin_brute_specific_sensor",
1161    HoglinSpecificSensor => "hoglin_specific_sensor",
1162    NearestAdult => "nearest_adult",
1163    NearestAdultAnyType => "nearest_adult_any_type",
1164    AxolotlAttackables => "axolotl_attackables",
1165    FoodTemptations => "food_temptations",
1166    FrogTemptations => "frog_temptations",
1167    NautilusTemptations => "nautilus_temptations",
1168    FrogAttackables => "frog_attackables",
1169    IsInWater => "is_in_water",
1170    WardenEntitySensor => "warden_entity_sensor",
1171    BreezeAttackEntitySensor => "breeze_attack_entity_sensor",
1172}
1173}
1174
1175registry! {
1176/// A known type of sound in Minecraft.
1177///
1178/// If you need to support custom sounds from resource packs, you should use
1179/// `azalea_registry::Holder<SoundEvent, azalea_core::sound::CustomSound>` instead.
1180enum SoundEvent {
1181    EntityAllayAmbientWithItem => "entity.allay.ambient_with_item",
1182    EntityAllayAmbientWithoutItem => "entity.allay.ambient_without_item",
1183    EntityAllayDeath => "entity.allay.death",
1184    EntityAllayHurt => "entity.allay.hurt",
1185    EntityAllayItemGiven => "entity.allay.item_given",
1186    EntityAllayItemTaken => "entity.allay.item_taken",
1187    EntityAllayItemThrown => "entity.allay.item_thrown",
1188    AmbientCave => "ambient.cave",
1189    AmbientBasaltDeltasAdditions => "ambient.basalt_deltas.additions",
1190    AmbientBasaltDeltasLoop => "ambient.basalt_deltas.loop",
1191    AmbientBasaltDeltasMood => "ambient.basalt_deltas.mood",
1192    AmbientCrimsonForestAdditions => "ambient.crimson_forest.additions",
1193    AmbientCrimsonForestLoop => "ambient.crimson_forest.loop",
1194    AmbientCrimsonForestMood => "ambient.crimson_forest.mood",
1195    AmbientNetherWastesAdditions => "ambient.nether_wastes.additions",
1196    AmbientNetherWastesLoop => "ambient.nether_wastes.loop",
1197    AmbientNetherWastesMood => "ambient.nether_wastes.mood",
1198    AmbientSoulSandValleyAdditions => "ambient.soul_sand_valley.additions",
1199    AmbientSoulSandValleyLoop => "ambient.soul_sand_valley.loop",
1200    AmbientSoulSandValleyMood => "ambient.soul_sand_valley.mood",
1201    AmbientWarpedForestAdditions => "ambient.warped_forest.additions",
1202    AmbientWarpedForestLoop => "ambient.warped_forest.loop",
1203    AmbientWarpedForestMood => "ambient.warped_forest.mood",
1204    AmbientUnderwaterEnter => "ambient.underwater.enter",
1205    AmbientUnderwaterExit => "ambient.underwater.exit",
1206    AmbientUnderwaterLoop => "ambient.underwater.loop",
1207    AmbientUnderwaterLoopAdditions => "ambient.underwater.loop.additions",
1208    AmbientUnderwaterLoopAdditionsRare => "ambient.underwater.loop.additions.rare",
1209    AmbientUnderwaterLoopAdditionsUltraRare => "ambient.underwater.loop.additions.ultra_rare",
1210    BlockAmethystBlockBreak => "block.amethyst_block.break",
1211    BlockAmethystBlockChime => "block.amethyst_block.chime",
1212    BlockAmethystBlockFall => "block.amethyst_block.fall",
1213    BlockAmethystBlockHit => "block.amethyst_block.hit",
1214    BlockAmethystBlockPlace => "block.amethyst_block.place",
1215    BlockAmethystBlockResonate => "block.amethyst_block.resonate",
1216    BlockAmethystBlockStep => "block.amethyst_block.step",
1217    BlockAmethystClusterBreak => "block.amethyst_cluster.break",
1218    BlockAmethystClusterFall => "block.amethyst_cluster.fall",
1219    BlockAmethystClusterHit => "block.amethyst_cluster.hit",
1220    BlockAmethystClusterPlace => "block.amethyst_cluster.place",
1221    BlockAmethystClusterStep => "block.amethyst_cluster.step",
1222    BlockAncientDebrisBreak => "block.ancient_debris.break",
1223    BlockAncientDebrisStep => "block.ancient_debris.step",
1224    BlockAncientDebrisPlace => "block.ancient_debris.place",
1225    BlockAncientDebrisHit => "block.ancient_debris.hit",
1226    BlockAncientDebrisFall => "block.ancient_debris.fall",
1227    BlockAnvilBreak => "block.anvil.break",
1228    BlockAnvilDestroy => "block.anvil.destroy",
1229    BlockAnvilFall => "block.anvil.fall",
1230    BlockAnvilHit => "block.anvil.hit",
1231    BlockAnvilLand => "block.anvil.land",
1232    BlockAnvilPlace => "block.anvil.place",
1233    BlockAnvilStep => "block.anvil.step",
1234    BlockAnvilUse => "block.anvil.use",
1235    EntityArmadilloEat => "entity.armadillo.eat",
1236    EntityArmadilloHurt => "entity.armadillo.hurt",
1237    EntityArmadilloHurtReduced => "entity.armadillo.hurt_reduced",
1238    EntityArmadilloAmbient => "entity.armadillo.ambient",
1239    EntityArmadilloStep => "entity.armadillo.step",
1240    EntityArmadilloDeath => "entity.armadillo.death",
1241    EntityArmadilloRoll => "entity.armadillo.roll",
1242    EntityArmadilloLand => "entity.armadillo.land",
1243    EntityArmadilloScuteDrop => "entity.armadillo.scute_drop",
1244    EntityArmadilloUnrollFinish => "entity.armadillo.unroll_finish",
1245    EntityArmadilloPeek => "entity.armadillo.peek",
1246    EntityArmadilloUnrollStart => "entity.armadillo.unroll_start",
1247    EntityArmadilloBrush => "entity.armadillo.brush",
1248    ItemArmorEquipChain => "item.armor.equip_chain",
1249    ItemArmorEquipDiamond => "item.armor.equip_diamond",
1250    ItemArmorEquipElytra => "item.armor.equip_elytra",
1251    ItemArmorEquipGeneric => "item.armor.equip_generic",
1252    ItemArmorEquipGold => "item.armor.equip_gold",
1253    ItemArmorEquipIron => "item.armor.equip_iron",
1254    ItemArmorEquipLeather => "item.armor.equip_leather",
1255    ItemArmorEquipCopper => "item.armor.equip_copper",
1256    ItemArmorEquipNetherite => "item.armor.equip_netherite",
1257    ItemArmorEquipTurtle => "item.armor.equip_turtle",
1258    ItemArmorEquipWolf => "item.armor.equip_wolf",
1259    ItemArmorUnequipWolf => "item.armor.unequip_wolf",
1260    ItemArmorEquipNautilus => "item.armor.equip_nautilus",
1261    ItemArmorUnequipNautilus => "item.armor.unequip_nautilus",
1262    EntityArmorStandBreak => "entity.armor_stand.break",
1263    EntityArmorStandFall => "entity.armor_stand.fall",
1264    EntityArmorStandHit => "entity.armor_stand.hit",
1265    EntityArmorStandPlace => "entity.armor_stand.place",
1266    EntityArrowHit => "entity.arrow.hit",
1267    EntityArrowHitPlayer => "entity.arrow.hit_player",
1268    EntityArrowShoot => "entity.arrow.shoot",
1269    ItemAxeStrip => "item.axe.strip",
1270    ItemAxeScrape => "item.axe.scrape",
1271    ItemAxeWaxOff => "item.axe.wax_off",
1272    EntityAxolotlAttack => "entity.axolotl.attack",
1273    EntityAxolotlDeath => "entity.axolotl.death",
1274    EntityAxolotlHurt => "entity.axolotl.hurt",
1275    EntityAxolotlIdleAir => "entity.axolotl.idle_air",
1276    EntityAxolotlIdleWater => "entity.axolotl.idle_water",
1277    EntityAxolotlSplash => "entity.axolotl.splash",
1278    EntityAxolotlSwim => "entity.axolotl.swim",
1279    BlockAzaleaBreak => "block.azalea.break",
1280    BlockAzaleaFall => "block.azalea.fall",
1281    BlockAzaleaHit => "block.azalea.hit",
1282    BlockAzaleaPlace => "block.azalea.place",
1283    BlockAzaleaStep => "block.azalea.step",
1284    BlockAzaleaLeavesBreak => "block.azalea_leaves.break",
1285    BlockAzaleaLeavesFall => "block.azalea_leaves.fall",
1286    BlockAzaleaLeavesHit => "block.azalea_leaves.hit",
1287    BlockAzaleaLeavesPlace => "block.azalea_leaves.place",
1288    BlockAzaleaLeavesStep => "block.azalea_leaves.step",
1289    EntityBabyNautilusAmbient => "entity.baby_nautilus.ambient",
1290    EntityBabyNautilusAmbientLand => "entity.baby_nautilus.ambient_land",
1291    EntityBabyNautilusDeath => "entity.baby_nautilus.death",
1292    EntityBabyNautilusDeathLand => "entity.baby_nautilus.death_land",
1293    EntityBabyNautilusEat => "entity.baby_nautilus.eat",
1294    EntityBabyNautilusHurt => "entity.baby_nautilus.hurt",
1295    EntityBabyNautilusHurtLand => "entity.baby_nautilus.hurt_land",
1296    EntityNautilusRiding => "entity.nautilus.riding",
1297    EntityBabyNautilusSwim => "entity.baby_nautilus.swim",
1298    BlockBambooBreak => "block.bamboo.break",
1299    BlockBambooFall => "block.bamboo.fall",
1300    BlockBambooHit => "block.bamboo.hit",
1301    BlockBambooPlace => "block.bamboo.place",
1302    BlockBambooStep => "block.bamboo.step",
1303    BlockBambooSaplingBreak => "block.bamboo_sapling.break",
1304    BlockBambooSaplingHit => "block.bamboo_sapling.hit",
1305    BlockBambooSaplingPlace => "block.bamboo_sapling.place",
1306    BlockBambooWoodBreak => "block.bamboo_wood.break",
1307    BlockBambooWoodFall => "block.bamboo_wood.fall",
1308    BlockBambooWoodHit => "block.bamboo_wood.hit",
1309    BlockBambooWoodPlace => "block.bamboo_wood.place",
1310    BlockBambooWoodStep => "block.bamboo_wood.step",
1311    BlockBambooWoodDoorClose => "block.bamboo_wood_door.close",
1312    BlockBambooWoodDoorOpen => "block.bamboo_wood_door.open",
1313    BlockBambooWoodTrapdoorClose => "block.bamboo_wood_trapdoor.close",
1314    BlockBambooWoodTrapdoorOpen => "block.bamboo_wood_trapdoor.open",
1315    BlockBambooWoodButtonClickOff => "block.bamboo_wood_button.click_off",
1316    BlockBambooWoodButtonClickOn => "block.bamboo_wood_button.click_on",
1317    BlockBambooWoodPressurePlateClickOff => "block.bamboo_wood_pressure_plate.click_off",
1318    BlockBambooWoodPressurePlateClickOn => "block.bamboo_wood_pressure_plate.click_on",
1319    BlockBambooWoodFenceGateClose => "block.bamboo_wood_fence_gate.close",
1320    BlockBambooWoodFenceGateOpen => "block.bamboo_wood_fence_gate.open",
1321    BlockBarrelClose => "block.barrel.close",
1322    BlockBarrelOpen => "block.barrel.open",
1323    BlockBasaltBreak => "block.basalt.break",
1324    BlockBasaltStep => "block.basalt.step",
1325    BlockBasaltPlace => "block.basalt.place",
1326    BlockBasaltHit => "block.basalt.hit",
1327    BlockBasaltFall => "block.basalt.fall",
1328    EntityBatAmbient => "entity.bat.ambient",
1329    EntityBatDeath => "entity.bat.death",
1330    EntityBatHurt => "entity.bat.hurt",
1331    EntityBatLoop => "entity.bat.loop",
1332    EntityBatTakeoff => "entity.bat.takeoff",
1333    BlockBeaconActivate => "block.beacon.activate",
1334    BlockBeaconAmbient => "block.beacon.ambient",
1335    BlockBeaconDeactivate => "block.beacon.deactivate",
1336    BlockBeaconPowerSelect => "block.beacon.power_select",
1337    EntityBeeDeath => "entity.bee.death",
1338    EntityBeeHurt => "entity.bee.hurt",
1339    EntityBeeLoopAggressive => "entity.bee.loop_aggressive",
1340    EntityBeeLoop => "entity.bee.loop",
1341    EntityBeeSting => "entity.bee.sting",
1342    EntityBeePollinate => "entity.bee.pollinate",
1343    BlockBeehiveDrip => "block.beehive.drip",
1344    BlockBeehiveEnter => "block.beehive.enter",
1345    BlockBeehiveExit => "block.beehive.exit",
1346    BlockBeehiveShear => "block.beehive.shear",
1347    BlockBeehiveWork => "block.beehive.work",
1348    BlockBellUse => "block.bell.use",
1349    BlockBellResonate => "block.bell.resonate",
1350    BlockBigDripleafBreak => "block.big_dripleaf.break",
1351    BlockBigDripleafFall => "block.big_dripleaf.fall",
1352    BlockBigDripleafHit => "block.big_dripleaf.hit",
1353    BlockBigDripleafPlace => "block.big_dripleaf.place",
1354    BlockBigDripleafStep => "block.big_dripleaf.step",
1355    EntityBlazeAmbient => "entity.blaze.ambient",
1356    EntityBlazeBurn => "entity.blaze.burn",
1357    EntityBlazeDeath => "entity.blaze.death",
1358    EntityBlazeHurt => "entity.blaze.hurt",
1359    EntityBlazeShoot => "entity.blaze.shoot",
1360    EntityBoatPaddleLand => "entity.boat.paddle_land",
1361    EntityBoatPaddleWater => "entity.boat.paddle_water",
1362    EntityBoggedAmbient => "entity.bogged.ambient",
1363    EntityBoggedDeath => "entity.bogged.death",
1364    EntityBoggedHurt => "entity.bogged.hurt",
1365    EntityBoggedShear => "entity.bogged.shear",
1366    EntityBoggedStep => "entity.bogged.step",
1367    BlockBoneBlockBreak => "block.bone_block.break",
1368    BlockBoneBlockFall => "block.bone_block.fall",
1369    BlockBoneBlockHit => "block.bone_block.hit",
1370    BlockBoneBlockPlace => "block.bone_block.place",
1371    BlockBoneBlockStep => "block.bone_block.step",
1372    ItemBoneMealUse => "item.bone_meal.use",
1373    ItemBookPageTurn => "item.book.page_turn",
1374    ItemBookPut => "item.book.put",
1375    BlockBlastfurnaceFireCrackle => "block.blastfurnace.fire_crackle",
1376    ItemBottleEmpty => "item.bottle.empty",
1377    ItemBottleFill => "item.bottle.fill",
1378    ItemBottleFillDragonbreath => "item.bottle.fill_dragonbreath",
1379    EntityBreezeCharge => "entity.breeze.charge",
1380    EntityBreezeDeflect => "entity.breeze.deflect",
1381    EntityBreezeInhale => "entity.breeze.inhale",
1382    EntityBreezeIdleGround => "entity.breeze.idle_ground",
1383    EntityBreezeIdleAir => "entity.breeze.idle_air",
1384    EntityBreezeShoot => "entity.breeze.shoot",
1385    EntityBreezeJump => "entity.breeze.jump",
1386    EntityBreezeLand => "entity.breeze.land",
1387    EntityBreezeSlide => "entity.breeze.slide",
1388    EntityBreezeDeath => "entity.breeze.death",
1389    EntityBreezeHurt => "entity.breeze.hurt",
1390    EntityBreezeWhirl => "entity.breeze.whirl",
1391    EntityBreezeWindBurst => "entity.breeze.wind_burst",
1392    BlockBrewingStandBrew => "block.brewing_stand.brew",
1393    ItemBrushBrushingGeneric => "item.brush.brushing.generic",
1394    ItemBrushBrushingSand => "item.brush.brushing.sand",
1395    ItemBrushBrushingGravel => "item.brush.brushing.gravel",
1396    ItemBrushBrushingSandComplete => "item.brush.brushing.sand.complete",
1397    ItemBrushBrushingGravelComplete => "item.brush.brushing.gravel.complete",
1398    BlockBubbleColumnBubblePop => "block.bubble_column.bubble_pop",
1399    BlockBubbleColumnUpwardsAmbient => "block.bubble_column.upwards_ambient",
1400    BlockBubbleColumnUpwardsInside => "block.bubble_column.upwards_inside",
1401    BlockBubbleColumnWhirlpoolAmbient => "block.bubble_column.whirlpool_ambient",
1402    BlockBubbleColumnWhirlpoolInside => "block.bubble_column.whirlpool_inside",
1403    UiHudBubblePop => "ui.hud.bubble_pop",
1404    ItemBucketEmpty => "item.bucket.empty",
1405    ItemBucketEmptyAxolotl => "item.bucket.empty_axolotl",
1406    ItemBucketEmptyFish => "item.bucket.empty_fish",
1407    ItemBucketEmptyLava => "item.bucket.empty_lava",
1408    ItemBucketEmptyPowderSnow => "item.bucket.empty_powder_snow",
1409    ItemBucketEmptySulfurCube => "item.bucket.empty_sulfur_cube",
1410    ItemBucketEmptyTadpole => "item.bucket.empty_tadpole",
1411    ItemBucketFill => "item.bucket.fill",
1412    ItemBucketFillAxolotl => "item.bucket.fill_axolotl",
1413    ItemBucketFillFish => "item.bucket.fill_fish",
1414    ItemBucketFillLava => "item.bucket.fill_lava",
1415    ItemBucketFillPowderSnow => "item.bucket.fill_powder_snow",
1416    ItemBucketFillSulfurCube => "item.bucket.fill_sulfur_cube",
1417    ItemBucketFillTadpole => "item.bucket.fill_tadpole",
1418    ItemBundleDropContents => "item.bundle.drop_contents",
1419    ItemBundleInsert => "item.bundle.insert",
1420    ItemBundleInsertFail => "item.bundle.insert_fail",
1421    ItemBundleRemoveOne => "item.bundle.remove_one",
1422    BlockCactusFlowerBreak => "block.cactus_flower.break",
1423    BlockCactusFlowerPlace => "block.cactus_flower.place",
1424    BlockCakeAddCandle => "block.cake.add_candle",
1425    BlockCalciteBreak => "block.calcite.break",
1426    BlockCalciteStep => "block.calcite.step",
1427    BlockCalcitePlace => "block.calcite.place",
1428    BlockCalciteHit => "block.calcite.hit",
1429    BlockCalciteFall => "block.calcite.fall",
1430    EntityCamelHuskAmbient => "entity.camel_husk.ambient",
1431    EntityCamelHuskDash => "entity.camel_husk.dash",
1432    EntityCamelHuskDashReady => "entity.camel_husk.dash_ready",
1433    EntityCamelHuskDeath => "entity.camel_husk.death",
1434    EntityCamelHuskEat => "entity.camel_husk.eat",
1435    EntityCamelHuskHurt => "entity.camel_husk.hurt",
1436    EntityCamelHuskSaddle => "entity.camel_husk.saddle",
1437    EntityCamelHuskSit => "entity.camel_husk.sit",
1438    EntityCamelHuskStand => "entity.camel_husk.stand",
1439    EntityCamelHuskStep => "entity.camel_husk.step",
1440    EntityCamelHuskStepSand => "entity.camel_husk.step_sand",
1441    EntityCamelAmbient => "entity.camel.ambient",
1442    EntityCamelDash => "entity.camel.dash",
1443    EntityCamelDashReady => "entity.camel.dash_ready",
1444    EntityCamelDeath => "entity.camel.death",
1445    EntityCamelEat => "entity.camel.eat",
1446    EntityCamelHurt => "entity.camel.hurt",
1447    EntityCamelSaddle => "entity.camel.saddle",
1448    EntityCamelSit => "entity.camel.sit",
1449    EntityCamelStand => "entity.camel.stand",
1450    EntityCamelStep => "entity.camel.step",
1451    EntityCamelStepSand => "entity.camel.step_sand",
1452    BlockCampfireCrackle => "block.campfire.crackle",
1453    BlockCandleAmbient => "block.candle.ambient",
1454    BlockCandleBreak => "block.candle.break",
1455    BlockCandleExtinguish => "block.candle.extinguish",
1456    BlockCandleFall => "block.candle.fall",
1457    BlockCandleHit => "block.candle.hit",
1458    BlockCandlePlace => "block.candle.place",
1459    BlockCandleStep => "block.candle.step",
1460    EntityBabyCatAmbient => "entity.baby_cat.ambient",
1461    EntityBabyCatStrayAmbient => "entity.baby_cat.stray_ambient",
1462    EntityBabyCatDeath => "entity.baby_cat.death",
1463    EntityBabyCatEat => "entity.baby_cat.eat",
1464    EntityBabyCatHiss => "entity.baby_cat.hiss",
1465    EntityBabyCatBegForFood => "entity.baby_cat.beg_for_food",
1466    EntityBabyCatHurt => "entity.baby_cat.hurt",
1467    EntityBabyCatPurr => "entity.baby_cat.purr",
1468    EntityBabyCatPurreow => "entity.baby_cat.purreow",
1469    EntityCatAmbient => "entity.cat.ambient",
1470    EntityCatStrayAmbient => "entity.cat.stray_ambient",
1471    EntityCatHiss => "entity.cat.hiss",
1472    EntityCatHurt => "entity.cat.hurt",
1473    EntityCatDeath => "entity.cat.death",
1474    EntityCatEat => "entity.cat.eat",
1475    EntityCatBegForFood => "entity.cat.beg_for_food",
1476    EntityCatPurr => "entity.cat.purr",
1477    EntityCatPurreow => "entity.cat.purreow",
1478    EntityCatRoyalAmbient => "entity.cat_royal.ambient",
1479    EntityCatRoyalStrayAmbient => "entity.cat_royal.stray_ambient",
1480    EntityCatRoyalHiss => "entity.cat_royal.hiss",
1481    EntityCatRoyalHurt => "entity.cat_royal.hurt",
1482    EntityCatRoyalDeath => "entity.cat_royal.death",
1483    EntityCatRoyalEat => "entity.cat_royal.eat",
1484    EntityCatRoyalBegForFood => "entity.cat_royal.beg_for_food",
1485    EntityCatRoyalPurr => "entity.cat_royal.purr",
1486    EntityCatRoyalPurreow => "entity.cat_royal.purreow",
1487    BlockCaveVinesBreak => "block.cave_vines.break",
1488    BlockCaveVinesFall => "block.cave_vines.fall",
1489    BlockCaveVinesHit => "block.cave_vines.hit",
1490    BlockCaveVinesPlace => "block.cave_vines.place",
1491    BlockCaveVinesStep => "block.cave_vines.step",
1492    BlockCaveVinesPickBerries => "block.cave_vines.pick_berries",
1493    BlockChainBreak => "block.chain.break",
1494    BlockChainFall => "block.chain.fall",
1495    BlockChainHit => "block.chain.hit",
1496    BlockChainPlace => "block.chain.place",
1497    BlockChainStep => "block.chain.step",
1498    BlockCherryWoodBreak => "block.cherry_wood.break",
1499    BlockCherryWoodFall => "block.cherry_wood.fall",
1500    BlockCherryWoodHit => "block.cherry_wood.hit",
1501    BlockCherryWoodPlace => "block.cherry_wood.place",
1502    BlockCherryWoodStep => "block.cherry_wood.step",
1503    BlockCherrySaplingBreak => "block.cherry_sapling.break",
1504    BlockCherrySaplingFall => "block.cherry_sapling.fall",
1505    BlockCherrySaplingHit => "block.cherry_sapling.hit",
1506    BlockCherrySaplingPlace => "block.cherry_sapling.place",
1507    BlockCherrySaplingStep => "block.cherry_sapling.step",
1508    BlockCherryLeavesBreak => "block.cherry_leaves.break",
1509    BlockCherryLeavesFall => "block.cherry_leaves.fall",
1510    BlockCherryLeavesHit => "block.cherry_leaves.hit",
1511    BlockCherryLeavesPlace => "block.cherry_leaves.place",
1512    BlockCherryLeavesStep => "block.cherry_leaves.step",
1513    BlockCherryWoodHangingSignStep => "block.cherry_wood_hanging_sign.step",
1514    BlockCherryWoodHangingSignBreak => "block.cherry_wood_hanging_sign.break",
1515    BlockCherryWoodHangingSignFall => "block.cherry_wood_hanging_sign.fall",
1516    BlockCherryWoodHangingSignHit => "block.cherry_wood_hanging_sign.hit",
1517    BlockCherryWoodHangingSignPlace => "block.cherry_wood_hanging_sign.place",
1518    BlockCherryWoodDoorClose => "block.cherry_wood_door.close",
1519    BlockCherryWoodDoorOpen => "block.cherry_wood_door.open",
1520    BlockCherryWoodTrapdoorClose => "block.cherry_wood_trapdoor.close",
1521    BlockCherryWoodTrapdoorOpen => "block.cherry_wood_trapdoor.open",
1522    BlockCherryWoodButtonClickOff => "block.cherry_wood_button.click_off",
1523    BlockCherryWoodButtonClickOn => "block.cherry_wood_button.click_on",
1524    BlockCherryWoodPressurePlateClickOff => "block.cherry_wood_pressure_plate.click_off",
1525    BlockCherryWoodPressurePlateClickOn => "block.cherry_wood_pressure_plate.click_on",
1526    BlockCherryWoodFenceGateClose => "block.cherry_wood_fence_gate.close",
1527    BlockCherryWoodFenceGateOpen => "block.cherry_wood_fence_gate.open",
1528    BlockChestClose => "block.chest.close",
1529    BlockChestLocked => "block.chest.locked",
1530    BlockChestOpen => "block.chest.open",
1531    EntityBabyChickenAmbient => "entity.baby_chicken.ambient",
1532    EntityBabyChickenDeath => "entity.baby_chicken.death",
1533    EntityChickenEgg => "entity.chicken.egg",
1534    EntityBabyChickenHurt => "entity.baby_chicken.hurt",
1535    EntityChickenStep => "entity.chicken.step",
1536    EntityBabyChickenStep => "entity.baby_chicken.step",
1537    EntityChickenAmbient => "entity.chicken.ambient",
1538    EntityChickenHurt => "entity.chicken.hurt",
1539    EntityChickenDeath => "entity.chicken.death",
1540    EntityChickenPickyAmbient => "entity.chicken_picky.ambient",
1541    EntityChickenPickyHurt => "entity.chicken_picky.hurt",
1542    EntityChickenPickyDeath => "entity.chicken_picky.death",
1543    BlockChiseledBookshelfBreak => "block.chiseled_bookshelf.break",
1544    BlockChiseledBookshelfFall => "block.chiseled_bookshelf.fall",
1545    BlockChiseledBookshelfHit => "block.chiseled_bookshelf.hit",
1546    BlockChiseledBookshelfInsert => "block.chiseled_bookshelf.insert",
1547    BlockChiseledBookshelfInsertEnchanted => "block.chiseled_bookshelf.insert.enchanted",
1548    BlockChiseledBookshelfStep => "block.chiseled_bookshelf.step",
1549    BlockChiseledBookshelfPickup => "block.chiseled_bookshelf.pickup",
1550    BlockChiseledBookshelfPickupEnchanted => "block.chiseled_bookshelf.pickup.enchanted",
1551    BlockChiseledBookshelfPlace => "block.chiseled_bookshelf.place",
1552    BlockChorusFlowerDeath => "block.chorus_flower.death",
1553    BlockChorusFlowerGrow => "block.chorus_flower.grow",
1554    ItemChorusFruitTeleport => "item.chorus_fruit.teleport",
1555    BlockCobwebBreak => "block.cobweb.break",
1556    BlockCobwebStep => "block.cobweb.step",
1557    BlockCobwebPlace => "block.cobweb.place",
1558    BlockCobwebHit => "block.cobweb.hit",
1559    BlockCobwebFall => "block.cobweb.fall",
1560    EntityCodAmbient => "entity.cod.ambient",
1561    EntityCodDeath => "entity.cod.death",
1562    EntityCodFlop => "entity.cod.flop",
1563    EntityCodHurt => "entity.cod.hurt",
1564    BlockComparatorClick => "block.comparator.click",
1565    BlockComposterEmpty => "block.composter.empty",
1566    BlockComposterFill => "block.composter.fill",
1567    BlockComposterFillSuccess => "block.composter.fill_success",
1568    BlockComposterReady => "block.composter.ready",
1569    BlockConduitActivate => "block.conduit.activate",
1570    BlockConduitAmbient => "block.conduit.ambient",
1571    BlockConduitAmbientShort => "block.conduit.ambient.short",
1572    BlockConduitAttackTarget => "block.conduit.attack.target",
1573    BlockConduitDeactivate => "block.conduit.deactivate",
1574    BlockCopperBulbBreak => "block.copper_bulb.break",
1575    BlockCopperBulbStep => "block.copper_bulb.step",
1576    BlockCopperBulbPlace => "block.copper_bulb.place",
1577    BlockCopperBulbHit => "block.copper_bulb.hit",
1578    BlockCopperBulbFall => "block.copper_bulb.fall",
1579    BlockCopperBulbTurnOn => "block.copper_bulb.turn_on",
1580    BlockCopperBulbTurnOff => "block.copper_bulb.turn_off",
1581    BlockCopperBreak => "block.copper.break",
1582    BlockCopperStep => "block.copper.step",
1583    BlockCopperPlace => "block.copper.place",
1584    BlockCopperHit => "block.copper.hit",
1585    BlockCopperFall => "block.copper.fall",
1586    BlockCopperChestClose => "block.copper_chest.close",
1587    BlockCopperChestOpen => "block.copper_chest.open",
1588    BlockCopperChestWeatheredClose => "block.copper_chest_weathered.close",
1589    BlockCopperChestWeatheredOpen => "block.copper_chest_weathered.open",
1590    BlockCopperChestOxidizedClose => "block.copper_chest_oxidized.close",
1591    BlockCopperChestOxidizedOpen => "block.copper_chest_oxidized.open",
1592    BlockCopperDoorClose => "block.copper_door.close",
1593    BlockCopperDoorOpen => "block.copper_door.open",
1594    EntityCopperGolemStep => "entity.copper_golem.step",
1595    EntityCopperGolemHurt => "entity.copper_golem.hurt",
1596    EntityCopperGolemDeath => "entity.copper_golem.death",
1597    EntityCopperGolemWeatheredStep => "entity.copper_golem_weathered.step",
1598    EntityCopperGolemWeatheredHurt => "entity.copper_golem_weathered.hurt",
1599    EntityCopperGolemWeatheredDeath => "entity.copper_golem_weathered.death",
1600    EntityCopperGolemOxidizedStep => "entity.copper_golem_oxidized.step",
1601    EntityCopperGolemOxidizedHurt => "entity.copper_golem_oxidized.hurt",
1602    EntityCopperGolemOxidizedDeath => "entity.copper_golem_oxidized.death",
1603    EntityCopperGolemSpin => "entity.copper_golem.spin",
1604    EntityCopperGolemWeatheredSpin => "entity.copper_golem_weathered.spin",
1605    EntityCopperGolemOxidizedSpin => "entity.copper_golem_oxidized.spin",
1606    EntityCopperGolemNoItemGet => "entity.copper_golem.no_item_get",
1607    EntityCopperGolemNoItemNoGet => "entity.copper_golem.no_item_no_get",
1608    EntityCopperGolemItemDrop => "entity.copper_golem.item_drop",
1609    EntityCopperGolemItemNoDrop => "entity.copper_golem.item_no_drop",
1610    EntityCopperGolemBecomeStatue => "entity.copper_golem_become_statue",
1611    BlockCopperGolemStatueBreak => "block.copper_golem_statue.break",
1612    BlockCopperGolemStatuePlace => "block.copper_golem_statue.place",
1613    BlockCopperGolemStatueHit => "block.copper_golem_statue.hit",
1614    BlockCopperGolemStatueStep => "block.copper_golem_statue.step",
1615    BlockCopperGolemStatueFall => "block.copper_golem_statue.fall",
1616    EntityCopperGolemSpawn => "entity.copper_golem.spawn",
1617    EntityCopperGolemShear => "entity.copper_golem.shear",
1618    BlockCopperGrateBreak => "block.copper_grate.break",
1619    BlockCopperGrateStep => "block.copper_grate.step",
1620    BlockCopperGratePlace => "block.copper_grate.place",
1621    BlockCopperGrateHit => "block.copper_grate.hit",
1622    BlockCopperGrateFall => "block.copper_grate.fall",
1623    BlockCopperTrapdoorClose => "block.copper_trapdoor.close",
1624    BlockCopperTrapdoorOpen => "block.copper_trapdoor.open",
1625    BlockCoralBlockBreak => "block.coral_block.break",
1626    BlockCoralBlockFall => "block.coral_block.fall",
1627    BlockCoralBlockHit => "block.coral_block.hit",
1628    BlockCoralBlockPlace => "block.coral_block.place",
1629    BlockCoralBlockStep => "block.coral_block.step",
1630    EntityCowMilk => "entity.cow.milk",
1631    EntityCowAmbient => "entity.cow.ambient",
1632    EntityCowHurt => "entity.cow.hurt",
1633    EntityCowDeath => "entity.cow.death",
1634    EntityCowStep => "entity.cow.step",
1635    EntityCowMoodyAmbient => "entity.cow_moody.ambient",
1636    EntityCowMoodyHurt => "entity.cow_moody.hurt",
1637    EntityCowMoodyDeath => "entity.cow_moody.death",
1638    EntityCowMoodyStep => "entity.cow_moody.step",
1639    BlockCrafterCraft => "block.crafter.craft",
1640    BlockCrafterFail => "block.crafter.fail",
1641    EntityCreakingAmbient => "entity.creaking.ambient",
1642    EntityCreakingActivate => "entity.creaking.activate",
1643    EntityCreakingDeactivate => "entity.creaking.deactivate",
1644    EntityCreakingAttack => "entity.creaking.attack",
1645    EntityCreakingDeath => "entity.creaking.death",
1646    EntityCreakingStep => "entity.creaking.step",
1647    EntityCreakingFreeze => "entity.creaking.freeze",
1648    EntityCreakingUnfreeze => "entity.creaking.unfreeze",
1649    EntityCreakingSpawn => "entity.creaking.spawn",
1650    EntityCreakingSway => "entity.creaking.sway",
1651    EntityCreakingTwitch => "entity.creaking.twitch",
1652    BlockCreakingHeartBreak => "block.creaking_heart.break",
1653    BlockCreakingHeartFall => "block.creaking_heart.fall",
1654    BlockCreakingHeartHit => "block.creaking_heart.hit",
1655    BlockCreakingHeartHurt => "block.creaking_heart.hurt",
1656    BlockCreakingHeartPlace => "block.creaking_heart.place",
1657    BlockCreakingHeartStep => "block.creaking_heart.step",
1658    BlockCreakingHeartIdle => "block.creaking_heart.idle",
1659    BlockCreakingHeartSpawn => "block.creaking_heart.spawn",
1660    EntityCreeperDeath => "entity.creeper.death",
1661    EntityCreeperHurt => "entity.creeper.hurt",
1662    EntityCreeperPrimed => "entity.creeper.primed",
1663    BlockCropBreak => "block.crop.break",
1664    ItemCropPlant => "item.crop.plant",
1665    ItemCrossbowHit => "item.crossbow.hit",
1666    ItemCrossbowLoadingEnd => "item.crossbow.loading_end",
1667    ItemCrossbowLoadingMiddle => "item.crossbow.loading_middle",
1668    ItemCrossbowLoadingStart => "item.crossbow.loading_start",
1669    ItemCrossbowQuickCharge1 => "item.crossbow.quick_charge_1",
1670    ItemCrossbowQuickCharge2 => "item.crossbow.quick_charge_2",
1671    ItemCrossbowQuickCharge3 => "item.crossbow.quick_charge_3",
1672    ItemCrossbowShoot => "item.crossbow.shoot",
1673    BlockDeadbushIdle => "block.deadbush.idle",
1674    BlockDecoratedPotBreak => "block.decorated_pot.break",
1675    BlockDecoratedPotFall => "block.decorated_pot.fall",
1676    BlockDecoratedPotHit => "block.decorated_pot.hit",
1677    BlockDecoratedPotInsert => "block.decorated_pot.insert",
1678    BlockDecoratedPotInsertFail => "block.decorated_pot.insert_fail",
1679    BlockDecoratedPotStep => "block.decorated_pot.step",
1680    BlockDecoratedPotPlace => "block.decorated_pot.place",
1681    BlockDecoratedPotShatter => "block.decorated_pot.shatter",
1682    BlockDeepslateBricksBreak => "block.deepslate_bricks.break",
1683    BlockDeepslateBricksFall => "block.deepslate_bricks.fall",
1684    BlockDeepslateBricksHit => "block.deepslate_bricks.hit",
1685    BlockDeepslateBricksPlace => "block.deepslate_bricks.place",
1686    BlockDeepslateBricksStep => "block.deepslate_bricks.step",
1687    BlockDeepslateBreak => "block.deepslate.break",
1688    BlockDeepslateFall => "block.deepslate.fall",
1689    BlockDeepslateHit => "block.deepslate.hit",
1690    BlockDeepslatePlace => "block.deepslate.place",
1691    BlockDeepslateStep => "block.deepslate.step",
1692    BlockDeepslateTilesBreak => "block.deepslate_tiles.break",
1693    BlockDeepslateTilesFall => "block.deepslate_tiles.fall",
1694    BlockDeepslateTilesHit => "block.deepslate_tiles.hit",
1695    BlockDeepslateTilesPlace => "block.deepslate_tiles.place",
1696    BlockDeepslateTilesStep => "block.deepslate_tiles.step",
1697    BlockDispenserDispense => "block.dispenser.dispense",
1698    BlockDispenserFail => "block.dispenser.fail",
1699    BlockDispenserLaunch => "block.dispenser.launch",
1700    EntityDolphinAmbient => "entity.dolphin.ambient",
1701    EntityDolphinAmbientWater => "entity.dolphin.ambient_water",
1702    EntityDolphinAttack => "entity.dolphin.attack",
1703    EntityDolphinDeath => "entity.dolphin.death",
1704    EntityDolphinEat => "entity.dolphin.eat",
1705    EntityDolphinHurt => "entity.dolphin.hurt",
1706    EntityDolphinJump => "entity.dolphin.jump",
1707    EntityDolphinPlay => "entity.dolphin.play",
1708    EntityDolphinSplash => "entity.dolphin.splash",
1709    EntityDolphinSwim => "entity.dolphin.swim",
1710    EntityDonkeyAmbient => "entity.donkey.ambient",
1711    EntityDonkeyAngry => "entity.donkey.angry",
1712    EntityDonkeyChest => "entity.donkey.chest",
1713    EntityDonkeyDeath => "entity.donkey.death",
1714    EntityDonkeyEat => "entity.donkey.eat",
1715    EntityDonkeyHurt => "entity.donkey.hurt",
1716    EntityDonkeyJump => "entity.donkey.jump",
1717    BlockDriedGhastBreak => "block.dried_ghast.break",
1718    BlockDriedGhastStep => "block.dried_ghast.step",
1719    BlockDriedGhastFall => "block.dried_ghast.fall",
1720    BlockDriedGhastAmbient => "block.dried_ghast.ambient",
1721    BlockDriedGhastAmbientWater => "block.dried_ghast.ambient_water",
1722    BlockDriedGhastPlace => "block.dried_ghast.place",
1723    BlockDriedGhastPlaceInWater => "block.dried_ghast.place_in_water",
1724    BlockDriedGhastTransition => "block.dried_ghast.transition",
1725    BlockDripstoneBlockBreak => "block.dripstone_block.break",
1726    BlockDripstoneBlockStep => "block.dripstone_block.step",
1727    BlockDripstoneBlockPlace => "block.dripstone_block.place",
1728    BlockDripstoneBlockHit => "block.dripstone_block.hit",
1729    BlockDripstoneBlockFall => "block.dripstone_block.fall",
1730    BlockDryGrassAmbient => "block.dry_grass.ambient",
1731    BlockPointedDripstoneBreak => "block.pointed_dripstone.break",
1732    BlockPointedDripstoneStep => "block.pointed_dripstone.step",
1733    BlockPointedDripstonePlace => "block.pointed_dripstone.place",
1734    BlockPointedDripstoneHit => "block.pointed_dripstone.hit",
1735    BlockPointedDripstoneFall => "block.pointed_dripstone.fall",
1736    BlockPointedDripstoneLand => "block.pointed_dripstone.land",
1737    BlockPointedDripstoneDripLava => "block.pointed_dripstone.drip_lava",
1738    BlockPointedDripstoneDripWater => "block.pointed_dripstone.drip_water",
1739    BlockPointedDripstoneDripLavaIntoCauldron => "block.pointed_dripstone.drip_lava_into_cauldron",
1740    BlockPointedDripstoneDripWaterIntoCauldron => "block.pointed_dripstone.drip_water_into_cauldron",
1741    BlockBigDripleafTiltDown => "block.big_dripleaf.tilt_down",
1742    BlockBigDripleafTiltUp => "block.big_dripleaf.tilt_up",
1743    EntityDrownedAmbient => "entity.drowned.ambient",
1744    EntityDrownedAmbientWater => "entity.drowned.ambient_water",
1745    EntityDrownedDeath => "entity.drowned.death",
1746    EntityDrownedDeathWater => "entity.drowned.death_water",
1747    EntityDrownedHurt => "entity.drowned.hurt",
1748    EntityDrownedHurtWater => "entity.drowned.hurt_water",
1749    EntityDrownedShoot => "entity.drowned.shoot",
1750    EntityDrownedStep => "entity.drowned.step",
1751    EntityDrownedSwim => "entity.drowned.swim",
1752    ItemDyeUse => "item.dye.use",
1753    EntityEggThrow => "entity.egg.throw",
1754    EntityElderGuardianAmbient => "entity.elder_guardian.ambient",
1755    EntityElderGuardianAmbientLand => "entity.elder_guardian.ambient_land",
1756    EntityElderGuardianCurse => "entity.elder_guardian.curse",
1757    EntityElderGuardianDeath => "entity.elder_guardian.death",
1758    EntityElderGuardianDeathLand => "entity.elder_guardian.death_land",
1759    EntityElderGuardianFlop => "entity.elder_guardian.flop",
1760    EntityElderGuardianHurt => "entity.elder_guardian.hurt",
1761    EntityElderGuardianHurtLand => "entity.elder_guardian.hurt_land",
1762    ItemElytraFlying => "item.elytra.flying",
1763    BlockEnchantmentTableUse => "block.enchantment_table.use",
1764    BlockEnderChestClose => "block.ender_chest.close",
1765    BlockEnderChestOpen => "block.ender_chest.open",
1766    EntityEnderDragonAmbient => "entity.ender_dragon.ambient",
1767    EntityEnderDragonDeath => "entity.ender_dragon.death",
1768    EntityDragonFireballExplode => "entity.dragon_fireball.explode",
1769    EntityEnderDragonFlap => "entity.ender_dragon.flap",
1770    EntityEnderDragonGrowl => "entity.ender_dragon.growl",
1771    EntityEnderDragonHurt => "entity.ender_dragon.hurt",
1772    EntityEnderDragonShoot => "entity.ender_dragon.shoot",
1773    EntityEnderEyeDeath => "entity.ender_eye.death",
1774    EntityEnderEyeLaunch => "entity.ender_eye.launch",
1775    EntityEndermanAmbient => "entity.enderman.ambient",
1776    EntityEndermanDeath => "entity.enderman.death",
1777    EntityEndermanHurt => "entity.enderman.hurt",
1778    EntityEndermanScream => "entity.enderman.scream",
1779    EntityEndermanStare => "entity.enderman.stare",
1780    EntityEndermanTeleport => "entity.enderman.teleport",
1781    EntityEndermiteAmbient => "entity.endermite.ambient",
1782    EntityEndermiteDeath => "entity.endermite.death",
1783    EntityEndermiteHurt => "entity.endermite.hurt",
1784    EntityEndermiteStep => "entity.endermite.step",
1785    EntityEnderPearlThrow => "entity.ender_pearl.throw",
1786    BlockEndGatewaySpawn => "block.end_gateway.spawn",
1787    BlockEndPortalFrameFill => "block.end_portal_frame.fill",
1788    BlockEndPortalSpawn => "block.end_portal.spawn",
1789    EntityEvokerAmbient => "entity.evoker.ambient",
1790    EntityEvokerCastSpell => "entity.evoker.cast_spell",
1791    EntityEvokerCelebrate => "entity.evoker.celebrate",
1792    EntityEvokerDeath => "entity.evoker.death",
1793    EntityEvokerFangsAttack => "entity.evoker_fangs.attack",
1794    EntityEvokerHurt => "entity.evoker.hurt",
1795    EntityEvokerPrepareAttack => "entity.evoker.prepare_attack",
1796    EntityEvokerPrepareSummon => "entity.evoker.prepare_summon",
1797    EntityEvokerPrepareWololo => "entity.evoker.prepare_wololo",
1798    EntityExperienceBottleThrow => "entity.experience_bottle.throw",
1799    EntityExperienceOrbPickup => "entity.experience_orb.pickup",
1800    BlockEyeblossomOpenLong => "block.eyeblossom.open_long",
1801    BlockEyeblossomOpen => "block.eyeblossom.open",
1802    BlockEyeblossomCloseLong => "block.eyeblossom.close_long",
1803    BlockEyeblossomClose => "block.eyeblossom.close",
1804    BlockEyeblossomIdle => "block.eyeblossom.idle",
1805    BlockFenceGateClose => "block.fence_gate.close",
1806    BlockFenceGateOpen => "block.fence_gate.open",
1807    ItemFirechargeUse => "item.firecharge.use",
1808    BlockFireflyBushIdle => "block.firefly_bush.idle",
1809    EntityFireworkRocketBlast => "entity.firework_rocket.blast",
1810    EntityFireworkRocketBlastFar => "entity.firework_rocket.blast_far",
1811    EntityFireworkRocketLargeBlast => "entity.firework_rocket.large_blast",
1812    EntityFireworkRocketLargeBlastFar => "entity.firework_rocket.large_blast_far",
1813    EntityFireworkRocketLaunch => "entity.firework_rocket.launch",
1814    EntityFireworkRocketShoot => "entity.firework_rocket.shoot",
1815    EntityFireworkRocketTwinkle => "entity.firework_rocket.twinkle",
1816    EntityFireworkRocketTwinkleFar => "entity.firework_rocket.twinkle_far",
1817    BlockFireAmbient => "block.fire.ambient",
1818    BlockFireExtinguish => "block.fire.extinguish",
1819    EntityFishSwim => "entity.fish.swim",
1820    EntityFishingBobberRetrieve => "entity.fishing_bobber.retrieve",
1821    EntityFishingBobberSplash => "entity.fishing_bobber.splash",
1822    EntityFishingBobberThrow => "entity.fishing_bobber.throw",
1823    ItemFlintandsteelUse => "item.flintandsteel.use",
1824    BlockFloweringAzaleaBreak => "block.flowering_azalea.break",
1825    BlockFloweringAzaleaFall => "block.flowering_azalea.fall",
1826    BlockFloweringAzaleaHit => "block.flowering_azalea.hit",
1827    BlockFloweringAzaleaPlace => "block.flowering_azalea.place",
1828    BlockFloweringAzaleaStep => "block.flowering_azalea.step",
1829    EntityFoxAggro => "entity.fox.aggro",
1830    EntityFoxAmbient => "entity.fox.ambient",
1831    EntityFoxBite => "entity.fox.bite",
1832    EntityFoxDeath => "entity.fox.death",
1833    EntityFoxEat => "entity.fox.eat",
1834    EntityFoxHurt => "entity.fox.hurt",
1835    EntityFoxScreech => "entity.fox.screech",
1836    EntityFoxSleep => "entity.fox.sleep",
1837    EntityFoxSniff => "entity.fox.sniff",
1838    EntityFoxSpit => "entity.fox.spit",
1839    EntityFoxTeleport => "entity.fox.teleport",
1840    BlockSuspiciousSandBreak => "block.suspicious_sand.break",
1841    BlockSuspiciousSandStep => "block.suspicious_sand.step",
1842    BlockSuspiciousSandPlace => "block.suspicious_sand.place",
1843    BlockSuspiciousSandHit => "block.suspicious_sand.hit",
1844    BlockSuspiciousSandFall => "block.suspicious_sand.fall",
1845    BlockSuspiciousGravelBreak => "block.suspicious_gravel.break",
1846    BlockSuspiciousGravelStep => "block.suspicious_gravel.step",
1847    BlockSuspiciousGravelPlace => "block.suspicious_gravel.place",
1848    BlockSuspiciousGravelHit => "block.suspicious_gravel.hit",
1849    BlockSuspiciousGravelFall => "block.suspicious_gravel.fall",
1850    BlockFroglightBreak => "block.froglight.break",
1851    BlockFroglightFall => "block.froglight.fall",
1852    BlockFroglightHit => "block.froglight.hit",
1853    BlockFroglightPlace => "block.froglight.place",
1854    BlockFroglightStep => "block.froglight.step",
1855    BlockFrogspawnStep => "block.frogspawn.step",
1856    BlockFrogspawnBreak => "block.frogspawn.break",
1857    BlockFrogspawnFall => "block.frogspawn.fall",
1858    BlockFrogspawnHatch => "block.frogspawn.hatch",
1859    BlockFrogspawnHit => "block.frogspawn.hit",
1860    BlockFrogspawnPlace => "block.frogspawn.place",
1861    EntityFrogAmbient => "entity.frog.ambient",
1862    EntityFrogDeath => "entity.frog.death",
1863    EntityFrogEat => "entity.frog.eat",
1864    EntityFrogHurt => "entity.frog.hurt",
1865    EntityFrogLaySpawn => "entity.frog.lay_spawn",
1866    EntityFrogLongJump => "entity.frog.long_jump",
1867    EntityFrogStep => "entity.frog.step",
1868    EntityFrogTongue => "entity.frog.tongue",
1869    BlockRootsBreak => "block.roots.break",
1870    BlockRootsStep => "block.roots.step",
1871    BlockRootsPlace => "block.roots.place",
1872    BlockRootsHit => "block.roots.hit",
1873    BlockRootsFall => "block.roots.fall",
1874    BlockFurnaceFireCrackle => "block.furnace.fire_crackle",
1875    EntityGenericBigFall => "entity.generic.big_fall",
1876    EntityGenericBurn => "entity.generic.burn",
1877    EntityGenericDeath => "entity.generic.death",
1878    EntityGenericDrink => "entity.generic.drink",
1879    EntityGenericEat => "entity.generic.eat",
1880    EntityGenericExplode => "entity.generic.explode",
1881    EntityGenericExtinguishFire => "entity.generic.extinguish_fire",
1882    EntityGenericHurt => "entity.generic.hurt",
1883    EntityGenericSmallFall => "entity.generic.small_fall",
1884    EntityGenericSplash => "entity.generic.splash",
1885    EntityGenericSwim => "entity.generic.swim",
1886    EntityGhastAmbient => "entity.ghast.ambient",
1887    EntityGhastDeath => "entity.ghast.death",
1888    EntityGhastHurt => "entity.ghast.hurt",
1889    EntityGhastScream => "entity.ghast.scream",
1890    EntityGhastShoot => "entity.ghast.shoot",
1891    EntityGhastWarn => "entity.ghast.warn",
1892    EntityGhastlingAmbient => "entity.ghastling.ambient",
1893    EntityGhastlingDeath => "entity.ghastling.death",
1894    EntityGhastlingHurt => "entity.ghastling.hurt",
1895    EntityGhastlingSpawn => "entity.ghastling.spawn",
1896    BlockGildedBlackstoneBreak => "block.gilded_blackstone.break",
1897    BlockGildedBlackstoneFall => "block.gilded_blackstone.fall",
1898    BlockGildedBlackstoneHit => "block.gilded_blackstone.hit",
1899    BlockGildedBlackstonePlace => "block.gilded_blackstone.place",
1900    BlockGildedBlackstoneStep => "block.gilded_blackstone.step",
1901    BlockGlassBreak => "block.glass.break",
1902    BlockGlassFall => "block.glass.fall",
1903    BlockGlassHit => "block.glass.hit",
1904    BlockGlassPlace => "block.glass.place",
1905    BlockGlassStep => "block.glass.step",
1906    ItemGlowInkSacUse => "item.glow_ink_sac.use",
1907    EntityGlowItemFrameAddItem => "entity.glow_item_frame.add_item",
1908    EntityGlowItemFrameBreak => "entity.glow_item_frame.break",
1909    EntityGlowItemFramePlace => "entity.glow_item_frame.place",
1910    EntityGlowItemFrameRemoveItem => "entity.glow_item_frame.remove_item",
1911    EntityGlowItemFrameRotateItem => "entity.glow_item_frame.rotate_item",
1912    EntityGlowSquidAmbient => "entity.glow_squid.ambient",
1913    EntityGlowSquidDeath => "entity.glow_squid.death",
1914    EntityGlowSquidHurt => "entity.glow_squid.hurt",
1915    EntityGlowSquidSquirt => "entity.glow_squid.squirt",
1916    EntityGoatAmbient => "entity.goat.ambient",
1917    EntityGoatDeath => "entity.goat.death",
1918    EntityGoatEat => "entity.goat.eat",
1919    EntityGoatHurt => "entity.goat.hurt",
1920    EntityGoatLongJump => "entity.goat.long_jump",
1921    EntityGoatMilk => "entity.goat.milk",
1922    EntityGoatPrepareRam => "entity.goat.prepare_ram",
1923    EntityGoatRamImpact => "entity.goat.ram_impact",
1924    EntityGoatHornBreak => "entity.goat.horn_break",
1925    EntityGoatScreamingAmbient => "entity.goat.screaming.ambient",
1926    EntityGoatScreamingDeath => "entity.goat.screaming.death",
1927    EntityGoatScreamingEat => "entity.goat.screaming.eat",
1928    EntityGoatScreamingHurt => "entity.goat.screaming.hurt",
1929    EntityGoatScreamingLongJump => "entity.goat.screaming.long_jump",
1930    EntityGoatScreamingMilk => "entity.goat.screaming.milk",
1931    EntityGoatScreamingPrepareRam => "entity.goat.screaming.prepare_ram",
1932    EntityGoatScreamingRamImpact => "entity.goat.screaming.ram_impact",
1933    EntityGoatStep => "entity.goat.step",
1934    ItemGoldenDandelionUse => "item.golden_dandelion.use",
1935    ItemGoldenDandelionUnuse => "item.golden_dandelion.unuse",
1936    BlockGrassBreak => "block.grass.break",
1937    BlockGrassFall => "block.grass.fall",
1938    BlockGrassHit => "block.grass.hit",
1939    BlockGrassPlace => "block.grass.place",
1940    BlockGrassStep => "block.grass.step",
1941    BlockGravelBreak => "block.gravel.break",
1942    BlockGravelFall => "block.gravel.fall",
1943    BlockGravelHit => "block.gravel.hit",
1944    BlockGravelPlace => "block.gravel.place",
1945    BlockGravelStep => "block.gravel.step",
1946    BlockGrindstoneUse => "block.grindstone.use",
1947    BlockGrowingPlantCrop => "block.growing_plant.crop",
1948    EntityGuardianAmbient => "entity.guardian.ambient",
1949    EntityGuardianAmbientLand => "entity.guardian.ambient_land",
1950    EntityGuardianAttack => "entity.guardian.attack",
1951    EntityGuardianDeath => "entity.guardian.death",
1952    EntityGuardianDeathLand => "entity.guardian.death_land",
1953    EntityGuardianFlop => "entity.guardian.flop",
1954    EntityGuardianHurt => "entity.guardian.hurt",
1955    EntityGuardianHurtLand => "entity.guardian.hurt_land",
1956    BlockHangingRootsBreak => "block.hanging_roots.break",
1957    BlockHangingRootsFall => "block.hanging_roots.fall",
1958    BlockHangingRootsHit => "block.hanging_roots.hit",
1959    BlockHangingRootsPlace => "block.hanging_roots.place",
1960    BlockHangingRootsStep => "block.hanging_roots.step",
1961    BlockHangingSignStep => "block.hanging_sign.step",
1962    BlockHangingSignBreak => "block.hanging_sign.break",
1963    BlockHangingSignFall => "block.hanging_sign.fall",
1964    BlockHangingSignHit => "block.hanging_sign.hit",
1965    BlockHangingSignPlace => "block.hanging_sign.place",
1966    EntityHappyGhastAmbient => "entity.happy_ghast.ambient",
1967    EntityHappyGhastDeath => "entity.happy_ghast.death",
1968    EntityHappyGhastHurt => "entity.happy_ghast.hurt",
1969    EntityHappyGhastRiding => "entity.happy_ghast.riding",
1970    BlockHeavyCoreBreak => "block.heavy_core.break",
1971    BlockHeavyCoreFall => "block.heavy_core.fall",
1972    BlockHeavyCoreHit => "block.heavy_core.hit",
1973    BlockHeavyCorePlace => "block.heavy_core.place",
1974    BlockHeavyCoreStep => "block.heavy_core.step",
1975    BlockNetherWoodHangingSignStep => "block.nether_wood_hanging_sign.step",
1976    BlockNetherWoodHangingSignBreak => "block.nether_wood_hanging_sign.break",
1977    BlockNetherWoodHangingSignFall => "block.nether_wood_hanging_sign.fall",
1978    BlockNetherWoodHangingSignHit => "block.nether_wood_hanging_sign.hit",
1979    BlockNetherWoodHangingSignPlace => "block.nether_wood_hanging_sign.place",
1980    BlockBambooWoodHangingSignStep => "block.bamboo_wood_hanging_sign.step",
1981    BlockBambooWoodHangingSignBreak => "block.bamboo_wood_hanging_sign.break",
1982    BlockBambooWoodHangingSignFall => "block.bamboo_wood_hanging_sign.fall",
1983    BlockBambooWoodHangingSignHit => "block.bamboo_wood_hanging_sign.hit",
1984    BlockBambooWoodHangingSignPlace => "block.bamboo_wood_hanging_sign.place",
1985    BlockTrialSpawnerBreak => "block.trial_spawner.break",
1986    BlockTrialSpawnerStep => "block.trial_spawner.step",
1987    BlockTrialSpawnerPlace => "block.trial_spawner.place",
1988    BlockTrialSpawnerHit => "block.trial_spawner.hit",
1989    BlockTrialSpawnerFall => "block.trial_spawner.fall",
1990    BlockTrialSpawnerSpawnMob => "block.trial_spawner.spawn_mob",
1991    BlockTrialSpawnerAboutToSpawnItem => "block.trial_spawner.about_to_spawn_item",
1992    BlockTrialSpawnerSpawnItem => "block.trial_spawner.spawn_item",
1993    BlockTrialSpawnerSpawnItemBegin => "block.trial_spawner.spawn_item_begin",
1994    BlockTrialSpawnerDetectPlayer => "block.trial_spawner.detect_player",
1995    BlockTrialSpawnerOminousActivate => "block.trial_spawner.ominous_activate",
1996    BlockTrialSpawnerAmbient => "block.trial_spawner.ambient",
1997    BlockTrialSpawnerAmbientOminous => "block.trial_spawner.ambient_ominous",
1998    BlockTrialSpawnerOpenShutter => "block.trial_spawner.open_shutter",
1999    BlockTrialSpawnerCloseShutter => "block.trial_spawner.close_shutter",
2000    BlockTrialSpawnerEjectItem => "block.trial_spawner.eject_item",
2001    EntityHappyGhastEquip => "entity.happy_ghast.equip",
2002    EntityHappyGhastUnequip => "entity.happy_ghast.unequip",
2003    EntityHappyGhastHarnessGogglesUp => "entity.happy_ghast.harness_goggles_up",
2004    EntityHappyGhastHarnessGogglesDown => "entity.happy_ghast.harness_goggles_down",
2005    ItemHoeTill => "item.hoe.till",
2006    EntityHoglinAmbient => "entity.hoglin.ambient",
2007    EntityHoglinAngry => "entity.hoglin.angry",
2008    EntityHoglinAttack => "entity.hoglin.attack",
2009    EntityHoglinConvertedToZombified => "entity.hoglin.converted_to_zombified",
2010    EntityHoglinDeath => "entity.hoglin.death",
2011    EntityHoglinHurt => "entity.hoglin.hurt",
2012    EntityHoglinRetreat => "entity.hoglin.retreat",
2013    EntityHoglinStep => "entity.hoglin.step",
2014    BlockHoneyBlockBreak => "block.honey_block.break",
2015    BlockHoneyBlockFall => "block.honey_block.fall",
2016    BlockHoneyBlockHit => "block.honey_block.hit",
2017    BlockHoneyBlockPlace => "block.honey_block.place",
2018    BlockHoneyBlockSlide => "block.honey_block.slide",
2019    BlockHoneyBlockStep => "block.honey_block.step",
2020    ItemHoneycombWaxOn => "item.honeycomb.wax_on",
2021    ItemHoneyBottleDrink => "item.honey_bottle.drink",
2022    ItemGoatHornSound0 => "item.goat_horn.sound.0",
2023    ItemGoatHornSound1 => "item.goat_horn.sound.1",
2024    ItemGoatHornSound2 => "item.goat_horn.sound.2",
2025    ItemGoatHornSound3 => "item.goat_horn.sound.3",
2026    ItemGoatHornSound4 => "item.goat_horn.sound.4",
2027    ItemGoatHornSound5 => "item.goat_horn.sound.5",
2028    ItemGoatHornSound6 => "item.goat_horn.sound.6",
2029    ItemGoatHornSound7 => "item.goat_horn.sound.7",
2030    EntityHorseAmbient => "entity.horse.ambient",
2031    EntityBabyHorseAmbient => "entity.baby_horse.ambient",
2032    EntityHorseAngry => "entity.horse.angry",
2033    EntityBabyHorseAngry => "entity.baby_horse.angry",
2034    EntityHorseArmor => "entity.horse.armor",
2035    ItemHorseArmorUnequip => "item.horse_armor.unequip",
2036    EntityHorseBreathe => "entity.horse.breathe",
2037    EntityBabyHorseBreathe => "entity.baby_horse.breathe",
2038    EntityHorseDeath => "entity.horse.death",
2039    EntityBabyHorseDeath => "entity.baby_horse.death",
2040    EntityHorseEat => "entity.horse.eat",
2041    EntityBabyHorseEat => "entity.baby_horse.eat",
2042    EntityHorseGallop => "entity.horse.gallop",
2043    EntityHorseHurt => "entity.horse.hurt",
2044    EntityBabyHorseHurt => "entity.baby_horse.hurt",
2045    EntityHorseJump => "entity.horse.jump",
2046    EntityHorseLand => "entity.horse.land",
2047    EntityBabyHorseLand => "entity.baby_horse.land",
2048    EntityHorseSaddle => "entity.horse.saddle",
2049    EntityHorseStep => "entity.horse.step",
2050    EntityBabyHorseStep => "entity.baby_horse.step",
2051    EntityHorseStepWood => "entity.horse.step_wood",
2052    EntityHostileBigFall => "entity.hostile.big_fall",
2053    EntityHostileDeath => "entity.hostile.death",
2054    EntityHostileHurt => "entity.hostile.hurt",
2055    EntityHostileSmallFall => "entity.hostile.small_fall",
2056    EntityHostileSplash => "entity.hostile.splash",
2057    EntityHostileSwim => "entity.hostile.swim",
2058    EntityHuskAmbient => "entity.husk.ambient",
2059    EntityHuskConvertedToZombie => "entity.husk.converted_to_zombie",
2060    EntityHuskDeath => "entity.husk.death",
2061    EntityHuskHurt => "entity.husk.hurt",
2062    EntityHuskStep => "entity.husk.step",
2063    EntityIllusionerAmbient => "entity.illusioner.ambient",
2064    EntityIllusionerCastSpell => "entity.illusioner.cast_spell",
2065    EntityIllusionerDeath => "entity.illusioner.death",
2066    EntityIllusionerHurt => "entity.illusioner.hurt",
2067    EntityIllusionerMirrorMove => "entity.illusioner.mirror_move",
2068    EntityIllusionerPrepareBlindness => "entity.illusioner.prepare_blindness",
2069    EntityIllusionerPrepareMirror => "entity.illusioner.prepare_mirror",
2070    ItemInkSacUse => "item.ink_sac.use",
2071    BlockIronBreak => "block.iron.break",
2072    BlockIronStep => "block.iron.step",
2073    BlockIronPlace => "block.iron.place",
2074    BlockIronHit => "block.iron.hit",
2075    BlockIronFall => "block.iron.fall",
2076    BlockIronDoorClose => "block.iron_door.close",
2077    BlockIronDoorOpen => "block.iron_door.open",
2078    EntityIronGolemAttack => "entity.iron_golem.attack",
2079    EntityIronGolemDamage => "entity.iron_golem.damage",
2080    EntityIronGolemDeath => "entity.iron_golem.death",
2081    EntityIronGolemHurt => "entity.iron_golem.hurt",
2082    EntityIronGolemRepair => "entity.iron_golem.repair",
2083    EntityIronGolemStep => "entity.iron_golem.step",
2084    BlockIronTrapdoorClose => "block.iron_trapdoor.close",
2085    BlockIronTrapdoorOpen => "block.iron_trapdoor.open",
2086    EntityItemFrameAddItem => "entity.item_frame.add_item",
2087    EntityItemFrameBreak => "entity.item_frame.break",
2088    EntityItemFramePlace => "entity.item_frame.place",
2089    EntityItemFrameRemoveItem => "entity.item_frame.remove_item",
2090    EntityItemFrameRotateItem => "entity.item_frame.rotate_item",
2091    EntityItemBreak => "entity.item.break",
2092    EntityItemPickup => "entity.item.pickup",
2093    BlockLadderBreak => "block.ladder.break",
2094    BlockLadderFall => "block.ladder.fall",
2095    BlockLadderHit => "block.ladder.hit",
2096    BlockLadderPlace => "block.ladder.place",
2097    BlockLadderStep => "block.ladder.step",
2098    BlockLanternBreak => "block.lantern.break",
2099    BlockLanternFall => "block.lantern.fall",
2100    BlockLanternHit => "block.lantern.hit",
2101    BlockLanternPlace => "block.lantern.place",
2102    BlockLanternStep => "block.lantern.step",
2103    BlockLargeAmethystBudBreak => "block.large_amethyst_bud.break",
2104    BlockLargeAmethystBudPlace => "block.large_amethyst_bud.place",
2105    BlockLavaAmbient => "block.lava.ambient",
2106    BlockLavaExtinguish => "block.lava.extinguish",
2107    BlockLavaPop => "block.lava.pop",
2108    BlockLeafLitterBreak => "block.leaf_litter.break",
2109    BlockLeafLitterStep => "block.leaf_litter.step",
2110    BlockLeafLitterPlace => "block.leaf_litter.place",
2111    BlockLeafLitterHit => "block.leaf_litter.hit",
2112    BlockLeafLitterFall => "block.leaf_litter.fall",
2113    ItemLeadUntied => "item.lead.untied",
2114    ItemLeadTied => "item.lead.tied",
2115    ItemLeadBreak => "item.lead.break",
2116    BlockLeverClick => "block.lever.click",
2117    EntityLightningBoltImpact => "entity.lightning_bolt.impact",
2118    EntityLightningBoltThunder => "entity.lightning_bolt.thunder",
2119    EntityLingeringPotionThrow => "entity.lingering_potion.throw",
2120    EntityLlamaAmbient => "entity.llama.ambient",
2121    EntityLlamaAngry => "entity.llama.angry",
2122    EntityLlamaChest => "entity.llama.chest",
2123    EntityLlamaDeath => "entity.llama.death",
2124    EntityLlamaEat => "entity.llama.eat",
2125    EntityLlamaHurt => "entity.llama.hurt",
2126    EntityLlamaSpit => "entity.llama.spit",
2127    EntityLlamaStep => "entity.llama.step",
2128    EntityLlamaSwag => "entity.llama.swag",
2129    ItemLlamaCarpetUnequip => "item.llama_carpet.unequip",
2130    EntityMagmaCubeDeathSmall => "entity.magma_cube.death_small",
2131    BlockLodestoneBreak => "block.lodestone.break",
2132    BlockLodestoneStep => "block.lodestone.step",
2133    BlockLodestonePlace => "block.lodestone.place",
2134    BlockLodestoneHit => "block.lodestone.hit",
2135    BlockLodestoneFall => "block.lodestone.fall",
2136    ItemLodestoneCompassLock => "item.lodestone_compass.lock",
2137    ItemSpearLunge1 => "item.spear.lunge_1",
2138    ItemSpearLunge2 => "item.spear.lunge_2",
2139    ItemSpearLunge3 => "item.spear.lunge_3",
2140    ItemMaceSmashAir => "item.mace.smash_air",
2141    ItemMaceSmashGround => "item.mace.smash_ground",
2142    ItemMaceSmashGroundHeavy => "item.mace.smash_ground_heavy",
2143    EntityMagmaCubeDeath => "entity.magma_cube.death",
2144    EntityMagmaCubeHurt => "entity.magma_cube.hurt",
2145    EntityMagmaCubeHurtSmall => "entity.magma_cube.hurt_small",
2146    EntityMagmaCubeJump => "entity.magma_cube.jump",
2147    EntityMagmaCubeSquish => "entity.magma_cube.squish",
2148    EntityMagmaCubeSquishSmall => "entity.magma_cube.squish_small",
2149    BlockMangroveRootsBreak => "block.mangrove_roots.break",
2150    BlockMangroveRootsFall => "block.mangrove_roots.fall",
2151    BlockMangroveRootsHit => "block.mangrove_roots.hit",
2152    BlockMangroveRootsPlace => "block.mangrove_roots.place",
2153    BlockMangroveRootsStep => "block.mangrove_roots.step",
2154    BlockMediumAmethystBudBreak => "block.medium_amethyst_bud.break",
2155    BlockMediumAmethystBudPlace => "block.medium_amethyst_bud.place",
2156    BlockMetalBreak => "block.metal.break",
2157    BlockMetalFall => "block.metal.fall",
2158    BlockMetalHit => "block.metal.hit",
2159    BlockMetalPlace => "block.metal.place",
2160    BlockMetalPressurePlateClickOff => "block.metal_pressure_plate.click_off",
2161    BlockMetalPressurePlateClickOn => "block.metal_pressure_plate.click_on",
2162    BlockMetalStep => "block.metal.step",
2163    EntityMinecartInsideUnderwater => "entity.minecart.inside.underwater",
2164    EntityMinecartInside => "entity.minecart.inside",
2165    EntityMinecartRiding => "entity.minecart.riding",
2166    EntityMooshroomConvert => "entity.mooshroom.convert",
2167    EntityMooshroomEat => "entity.mooshroom.eat",
2168    EntityMooshroomMilk => "entity.mooshroom.milk",
2169    EntityMooshroomSuspiciousMilk => "entity.mooshroom.suspicious_milk",
2170    EntityMooshroomShear => "entity.mooshroom.shear",
2171    BlockMossCarpetBreak => "block.moss_carpet.break",
2172    BlockMossCarpetFall => "block.moss_carpet.fall",
2173    BlockMossCarpetHit => "block.moss_carpet.hit",
2174    BlockMossCarpetPlace => "block.moss_carpet.place",
2175    BlockMossCarpetStep => "block.moss_carpet.step",
2176    BlockPinkPetalsBreak => "block.pink_petals.break",
2177    BlockPinkPetalsFall => "block.pink_petals.fall",
2178    BlockPinkPetalsHit => "block.pink_petals.hit",
2179    BlockPinkPetalsPlace => "block.pink_petals.place",
2180    BlockPinkPetalsStep => "block.pink_petals.step",
2181    BlockMossBreak => "block.moss.break",
2182    BlockMossFall => "block.moss.fall",
2183    BlockMossHit => "block.moss.hit",
2184    BlockMossPlace => "block.moss.place",
2185    BlockMossStep => "block.moss.step",
2186    BlockMudBreak => "block.mud.break",
2187    BlockMudFall => "block.mud.fall",
2188    BlockMudHit => "block.mud.hit",
2189    BlockMudPlace => "block.mud.place",
2190    BlockMudStep => "block.mud.step",
2191    BlockMudBricksBreak => "block.mud_bricks.break",
2192    BlockMudBricksFall => "block.mud_bricks.fall",
2193    BlockMudBricksHit => "block.mud_bricks.hit",
2194    BlockMudBricksPlace => "block.mud_bricks.place",
2195    BlockMudBricksStep => "block.mud_bricks.step",
2196    BlockMuddyMangroveRootsBreak => "block.muddy_mangrove_roots.break",
2197    BlockMuddyMangroveRootsFall => "block.muddy_mangrove_roots.fall",
2198    BlockMuddyMangroveRootsHit => "block.muddy_mangrove_roots.hit",
2199    BlockMuddyMangroveRootsPlace => "block.muddy_mangrove_roots.place",
2200    BlockMuddyMangroveRootsStep => "block.muddy_mangrove_roots.step",
2201    EntityMuleAmbient => "entity.mule.ambient",
2202    EntityMuleAngry => "entity.mule.angry",
2203    EntityMuleChest => "entity.mule.chest",
2204    EntityMuleDeath => "entity.mule.death",
2205    EntityMuleEat => "entity.mule.eat",
2206    EntityMuleHurt => "entity.mule.hurt",
2207    EntityMuleJump => "entity.mule.jump",
2208    MusicCreative => "music.creative",
2209    MusicCredits => "music.credits",
2210    MusicDisc5 => "music_disc.5",
2211    MusicDisc11 => "music_disc.11",
2212    MusicDisc13 => "music_disc.13",
2213    MusicDiscBlocks => "music_disc.blocks",
2214    MusicDiscBounce => "music_disc.bounce",
2215    MusicDiscCat => "music_disc.cat",
2216    MusicDiscChirp => "music_disc.chirp",
2217    MusicDiscFar => "music_disc.far",
2218    MusicDiscLavaChicken => "music_disc.lava_chicken",
2219    MusicDiscMall => "music_disc.mall",
2220    MusicDiscMellohi => "music_disc.mellohi",
2221    MusicDiscPigstep => "music_disc.pigstep",
2222    MusicDiscStal => "music_disc.stal",
2223    MusicDiscStrad => "music_disc.strad",
2224    MusicDiscWait => "music_disc.wait",
2225    MusicDiscWard => "music_disc.ward",
2226    MusicDiscOtherside => "music_disc.otherside",
2227    MusicDiscRelic => "music_disc.relic",
2228    MusicDiscCreator => "music_disc.creator",
2229    MusicDiscCreatorMusicBox => "music_disc.creator_music_box",
2230    MusicDiscPrecipice => "music_disc.precipice",
2231    MusicDiscTears => "music_disc.tears",
2232    MusicDragon => "music.dragon",
2233    MusicEnd => "music.end",
2234    MusicGame => "music.game",
2235    MusicMenu => "music.menu",
2236    MusicNetherBasaltDeltas => "music.nether.basalt_deltas",
2237    MusicNetherCrimsonForest => "music.nether.crimson_forest",
2238    MusicOverworldDeepDark => "music.overworld.deep_dark",
2239    MusicOverworldDripstoneCaves => "music.overworld.dripstone_caves",
2240    MusicOverworldGrove => "music.overworld.grove",
2241    MusicOverworldJaggedPeaks => "music.overworld.jagged_peaks",
2242    MusicOverworldLushCaves => "music.overworld.lush_caves",
2243    MusicOverworldSwamp => "music.overworld.swamp",
2244    MusicOverworldForest => "music.overworld.forest",
2245    MusicOverworldOldGrowthTaiga => "music.overworld.old_growth_taiga",
2246    MusicOverworldMeadow => "music.overworld.meadow",
2247    MusicOverworldCherryGrove => "music.overworld.cherry_grove",
2248    MusicNetherNetherWastes => "music.nether.nether_wastes",
2249    MusicOverworldFrozenPeaks => "music.overworld.frozen_peaks",
2250    MusicOverworldSnowySlopes => "music.overworld.snowy_slopes",
2251    MusicNetherSoulSandValley => "music.nether.soul_sand_valley",
2252    MusicOverworldStonyPeaks => "music.overworld.stony_peaks",
2253    MusicNetherWarpedForest => "music.nether.warped_forest",
2254    MusicOverworldFlowerForest => "music.overworld.flower_forest",
2255    MusicOverworldDesert => "music.overworld.desert",
2256    MusicOverworldBadlands => "music.overworld.badlands",
2257    MusicOverworldJungle => "music.overworld.jungle",
2258    MusicOverworldSparseJungle => "music.overworld.sparse_jungle",
2259    MusicOverworldBambooJungle => "music.overworld.bamboo_jungle",
2260    MusicOverworldSulfurCaves => "music.overworld.sulfur_caves",
2261    MusicUnderWater => "music.under_water",
2262    EntityNautilusAmbient => "entity.nautilus.ambient",
2263    EntityNautilusAmbientLand => "entity.nautilus.ambient_land",
2264    EntityNautilusDash => "entity.nautilus.dash",
2265    EntityNautilusDashLand => "entity.nautilus.dash_land",
2266    EntityNautilusDashReady => "entity.nautilus.dash_ready",
2267    EntityNautilusDashReadyLand => "entity.nautilus.dash_ready_land",
2268    EntityNautilusDeath => "entity.nautilus.death",
2269    EntityNautilusDeathLand => "entity.nautilus.death_land",
2270    EntityNautilusEat => "entity.nautilus.eat",
2271    EntityNautilusHurt => "entity.nautilus.hurt",
2272    EntityNautilusHurtLand => "entity.nautilus.hurt_land",
2273    EntityNautilusSwim => "entity.nautilus.swim",
2274    BlockNetherBricksBreak => "block.nether_bricks.break",
2275    BlockNetherBricksStep => "block.nether_bricks.step",
2276    BlockNetherBricksPlace => "block.nether_bricks.place",
2277    BlockNetherBricksHit => "block.nether_bricks.hit",
2278    BlockNetherBricksFall => "block.nether_bricks.fall",
2279    BlockNetherWartBreak => "block.nether_wart.break",
2280    ItemNetherWartPlant => "item.nether_wart.plant",
2281    BlockNetherWoodBreak => "block.nether_wood.break",
2282    BlockNetherWoodFall => "block.nether_wood.fall",
2283    BlockNetherWoodHit => "block.nether_wood.hit",
2284    BlockNetherWoodPlace => "block.nether_wood.place",
2285    BlockNetherWoodStep => "block.nether_wood.step",
2286    BlockNetherWoodDoorClose => "block.nether_wood_door.close",
2287    BlockNetherWoodDoorOpen => "block.nether_wood_door.open",
2288    BlockNetherWoodTrapdoorClose => "block.nether_wood_trapdoor.close",
2289    BlockNetherWoodTrapdoorOpen => "block.nether_wood_trapdoor.open",
2290    BlockNetherWoodButtonClickOff => "block.nether_wood_button.click_off",
2291    BlockNetherWoodButtonClickOn => "block.nether_wood_button.click_on",
2292    BlockNetherWoodPressurePlateClickOff => "block.nether_wood_pressure_plate.click_off",
2293    BlockNetherWoodPressurePlateClickOn => "block.nether_wood_pressure_plate.click_on",
2294    BlockNetherWoodFenceGateClose => "block.nether_wood_fence_gate.close",
2295    BlockNetherWoodFenceGateOpen => "block.nether_wood_fence_gate.open",
2296    IntentionallyEmpty => "intentionally_empty",
2297    BlockPackedMudBreak => "block.packed_mud.break",
2298    BlockPackedMudFall => "block.packed_mud.fall",
2299    BlockPackedMudHit => "block.packed_mud.hit",
2300    BlockPackedMudPlace => "block.packed_mud.place",
2301    BlockPackedMudStep => "block.packed_mud.step",
2302    BlockStemBreak => "block.stem.break",
2303    BlockStemStep => "block.stem.step",
2304    BlockStemPlace => "block.stem.place",
2305    BlockStemHit => "block.stem.hit",
2306    BlockStemFall => "block.stem.fall",
2307    BlockNyliumBreak => "block.nylium.break",
2308    BlockNyliumStep => "block.nylium.step",
2309    BlockNyliumPlace => "block.nylium.place",
2310    BlockNyliumHit => "block.nylium.hit",
2311    BlockNyliumFall => "block.nylium.fall",
2312    BlockNetherSproutsBreak => "block.nether_sprouts.break",
2313    BlockNetherSproutsStep => "block.nether_sprouts.step",
2314    BlockNetherSproutsPlace => "block.nether_sprouts.place",
2315    BlockNetherSproutsHit => "block.nether_sprouts.hit",
2316    BlockNetherSproutsFall => "block.nether_sprouts.fall",
2317    BlockFungusBreak => "block.fungus.break",
2318    BlockFungusStep => "block.fungus.step",
2319    BlockFungusPlace => "block.fungus.place",
2320    BlockFungusHit => "block.fungus.hit",
2321    BlockFungusFall => "block.fungus.fall",
2322    BlockWeepingVinesBreak => "block.weeping_vines.break",
2323    BlockWeepingVinesStep => "block.weeping_vines.step",
2324    BlockWeepingVinesPlace => "block.weeping_vines.place",
2325    BlockWeepingVinesHit => "block.weeping_vines.hit",
2326    BlockWeepingVinesFall => "block.weeping_vines.fall",
2327    BlockWartBlockBreak => "block.wart_block.break",
2328    BlockWartBlockStep => "block.wart_block.step",
2329    BlockWartBlockPlace => "block.wart_block.place",
2330    BlockWartBlockHit => "block.wart_block.hit",
2331    BlockWartBlockFall => "block.wart_block.fall",
2332    BlockNetheriteBlockBreak => "block.netherite_block.break",
2333    BlockNetheriteBlockStep => "block.netherite_block.step",
2334    BlockNetheriteBlockPlace => "block.netherite_block.place",
2335    BlockNetheriteBlockHit => "block.netherite_block.hit",
2336    BlockNetheriteBlockFall => "block.netherite_block.fall",
2337    BlockNetherrackBreak => "block.netherrack.break",
2338    BlockNetherrackStep => "block.netherrack.step",
2339    BlockNetherrackPlace => "block.netherrack.place",
2340    BlockNetherrackHit => "block.netherrack.hit",
2341    BlockNetherrackFall => "block.netherrack.fall",
2342    BlockNoteBlockBasedrum => "block.note_block.basedrum",
2343    BlockNoteBlockBass => "block.note_block.bass",
2344    BlockNoteBlockBell => "block.note_block.bell",
2345    BlockNoteBlockChime => "block.note_block.chime",
2346    BlockNoteBlockFlute => "block.note_block.flute",
2347    BlockNoteBlockGuitar => "block.note_block.guitar",
2348    BlockNoteBlockHarp => "block.note_block.harp",
2349    BlockNoteBlockHat => "block.note_block.hat",
2350    BlockNoteBlockPling => "block.note_block.pling",
2351    BlockNoteBlockSnare => "block.note_block.snare",
2352    BlockNoteBlockTrumpet => "block.note_block.trumpet",
2353    BlockNoteBlockTrumpetExposed => "block.note_block.trumpet_exposed",
2354    BlockNoteBlockTrumpetOxidized => "block.note_block.trumpet_oxidized",
2355    BlockNoteBlockTrumpetWeathered => "block.note_block.trumpet_weathered",
2356    BlockNoteBlockXylophone => "block.note_block.xylophone",
2357    BlockNoteBlockIronXylophone => "block.note_block.iron_xylophone",
2358    BlockNoteBlockCowBell => "block.note_block.cow_bell",
2359    BlockNoteBlockDidgeridoo => "block.note_block.didgeridoo",
2360    BlockNoteBlockBit => "block.note_block.bit",
2361    BlockNoteBlockBanjo => "block.note_block.banjo",
2362    BlockNoteBlockImitateZombie => "block.note_block.imitate.zombie",
2363    BlockNoteBlockImitateSkeleton => "block.note_block.imitate.skeleton",
2364    BlockNoteBlockImitateCreeper => "block.note_block.imitate.creeper",
2365    BlockNoteBlockImitateEnderDragon => "block.note_block.imitate.ender_dragon",
2366    BlockNoteBlockImitateWitherSkeleton => "block.note_block.imitate.wither_skeleton",
2367    BlockNoteBlockImitatePiglin => "block.note_block.imitate.piglin",
2368    EntityOcelotHurt => "entity.ocelot.hurt",
2369    EntityOcelotAmbient => "entity.ocelot.ambient",
2370    EntityOcelotDeath => "entity.ocelot.death",
2371    ItemOminousBottleDispose => "item.ominous_bottle.dispose",
2372    EntityPaintingBreak => "entity.painting.break",
2373    EntityPaintingPlace => "entity.painting.place",
2374    BlockPaleHangingMossIdle => "block.pale_hanging_moss.idle",
2375    EntityPandaPreSneeze => "entity.panda.pre_sneeze",
2376    EntityPandaSneeze => "entity.panda.sneeze",
2377    EntityPandaAmbient => "entity.panda.ambient",
2378    EntityPandaDeath => "entity.panda.death",
2379    EntityPandaEat => "entity.panda.eat",
2380    EntityPandaStep => "entity.panda.step",
2381    EntityPandaCantBreed => "entity.panda.cant_breed",
2382    EntityPandaAggressiveAmbient => "entity.panda.aggressive_ambient",
2383    EntityPandaWorriedAmbient => "entity.panda.worried_ambient",
2384    EntityPandaHurt => "entity.panda.hurt",
2385    EntityPandaBite => "entity.panda.bite",
2386    EntityParchedAmbient => "entity.parched.ambient",
2387    EntityParchedDeath => "entity.parched.death",
2388    EntityParchedHurt => "entity.parched.hurt",
2389    EntityParchedStep => "entity.parched.step",
2390    EntityParrotAmbient => "entity.parrot.ambient",
2391    EntityParrotDeath => "entity.parrot.death",
2392    EntityParrotEat => "entity.parrot.eat",
2393    EntityParrotFly => "entity.parrot.fly",
2394    EntityParrotHurt => "entity.parrot.hurt",
2395    EntityParrotImitateBlaze => "entity.parrot.imitate.blaze",
2396    EntityParrotImitateBogged => "entity.parrot.imitate.bogged",
2397    EntityParrotImitateBreeze => "entity.parrot.imitate.breeze",
2398    EntityParrotImitateCamelHusk => "entity.parrot.imitate.camel_husk",
2399    EntityParrotImitateCreaking => "entity.parrot.imitate.creaking",
2400    EntityParrotImitateCreeper => "entity.parrot.imitate.creeper",
2401    EntityParrotImitateDrowned => "entity.parrot.imitate.drowned",
2402    EntityParrotImitateElderGuardian => "entity.parrot.imitate.elder_guardian",
2403    EntityParrotImitateEnderDragon => "entity.parrot.imitate.ender_dragon",
2404    EntityParrotImitateEndermite => "entity.parrot.imitate.endermite",
2405    EntityParrotImitateEvoker => "entity.parrot.imitate.evoker",
2406    EntityParrotImitateGhast => "entity.parrot.imitate.ghast",
2407    EntityParrotImitateGuardian => "entity.parrot.imitate.guardian",
2408    EntityParrotImitateHoglin => "entity.parrot.imitate.hoglin",
2409    EntityParrotImitateHusk => "entity.parrot.imitate.husk",
2410    EntityParrotImitateIllusioner => "entity.parrot.imitate.illusioner",
2411    EntityParrotImitateMagmaCube => "entity.parrot.imitate.magma_cube",
2412    EntityParrotImitatePhantom => "entity.parrot.imitate.phantom",
2413    EntityParrotImitateParched => "entity.parrot.imitate.parched",
2414    EntityParrotImitatePiglin => "entity.parrot.imitate.piglin",
2415    EntityParrotImitatePiglinBrute => "entity.parrot.imitate.piglin_brute",
2416    EntityParrotImitatePillager => "entity.parrot.imitate.pillager",
2417    EntityParrotImitateRavager => "entity.parrot.imitate.ravager",
2418    EntityParrotImitateShulker => "entity.parrot.imitate.shulker",
2419    EntityParrotImitateSilverfish => "entity.parrot.imitate.silverfish",
2420    EntityParrotImitateSkeleton => "entity.parrot.imitate.skeleton",
2421    EntityParrotImitateSlime => "entity.parrot.imitate.slime",
2422    EntityParrotImitateSpider => "entity.parrot.imitate.spider",
2423    EntityParrotImitateStray => "entity.parrot.imitate.stray",
2424    EntityParrotImitateVex => "entity.parrot.imitate.vex",
2425    EntityParrotImitateVindicator => "entity.parrot.imitate.vindicator",
2426    EntityParrotImitateWarden => "entity.parrot.imitate.warden",
2427    EntityParrotImitateWitch => "entity.parrot.imitate.witch",
2428    EntityParrotImitateWither => "entity.parrot.imitate.wither",
2429    EntityParrotImitateWitherSkeleton => "entity.parrot.imitate.wither_skeleton",
2430    EntityParrotImitateZoglin => "entity.parrot.imitate.zoglin",
2431    EntityParrotImitateZombie => "entity.parrot.imitate.zombie",
2432    EntityParrotImitateZombieHorse => "entity.parrot.imitate.zombie_horse",
2433    EntityParrotImitateZombieNautilus => "entity.parrot.imitate.zombie_nautilus",
2434    EntityParrotImitateZombieVillager => "entity.parrot.imitate.zombie_villager",
2435    EntityParrotStep => "entity.parrot.step",
2436    EntityPhantomAmbient => "entity.phantom.ambient",
2437    EntityPhantomBite => "entity.phantom.bite",
2438    EntityPhantomDeath => "entity.phantom.death",
2439    EntityPhantomFlap => "entity.phantom.flap",
2440    EntityPhantomHurt => "entity.phantom.hurt",
2441    EntityPhantomSwoop => "entity.phantom.swoop",
2442    EntityPigSaddle => "entity.pig.saddle",
2443    EntityPigStep => "entity.pig.step",
2444    EntityBabyPigStep => "entity.baby_pig.step",
2445    EntityBabyPigAmbient => "entity.baby_pig.ambient",
2446    EntityBabyPigEat => "entity.baby_pig.eat",
2447    EntityBabyPigHurt => "entity.baby_pig.hurt",
2448    EntityBabyPigDeath => "entity.baby_pig.death",
2449    EntityPigAmbient => "entity.pig.ambient",
2450    EntityPigHurt => "entity.pig.hurt",
2451    EntityPigDeath => "entity.pig.death",
2452    EntityPigEat => "entity.pig.eat",
2453    EntityPigMiniAmbient => "entity.pig_mini.ambient",
2454    EntityPigMiniHurt => "entity.pig_mini.hurt",
2455    EntityPigMiniDeath => "entity.pig_mini.death",
2456    EntityPigMiniEat => "entity.pig_mini.eat",
2457    EntityPigBigAmbient => "entity.pig_big.ambient",
2458    EntityPigBigHurt => "entity.pig_big.hurt",
2459    EntityPigBigDeath => "entity.pig_big.death",
2460    EntityPigBigEat => "entity.pig_big.eat",
2461    EntityPiglinAdmiringItem => "entity.piglin.admiring_item",
2462    EntityPiglinAmbient => "entity.piglin.ambient",
2463    EntityPiglinAngry => "entity.piglin.angry",
2464    EntityPiglinCelebrate => "entity.piglin.celebrate",
2465    EntityPiglinDeath => "entity.piglin.death",
2466    EntityPiglinJealous => "entity.piglin.jealous",
2467    EntityPiglinHurt => "entity.piglin.hurt",
2468    EntityPiglinRetreat => "entity.piglin.retreat",
2469    EntityPiglinStep => "entity.piglin.step",
2470    EntityPiglinConvertedToZombified => "entity.piglin.converted_to_zombified",
2471    EntityPiglinBruteAmbient => "entity.piglin_brute.ambient",
2472    EntityPiglinBruteAngry => "entity.piglin_brute.angry",
2473    EntityPiglinBruteDeath => "entity.piglin_brute.death",
2474    EntityPiglinBruteHurt => "entity.piglin_brute.hurt",
2475    EntityPiglinBruteStep => "entity.piglin_brute.step",
2476    EntityPiglinBruteConvertedToZombified => "entity.piglin_brute.converted_to_zombified",
2477    EntityPillagerAmbient => "entity.pillager.ambient",
2478    EntityPillagerCelebrate => "entity.pillager.celebrate",
2479    EntityPillagerDeath => "entity.pillager.death",
2480    EntityPillagerHurt => "entity.pillager.hurt",
2481    BlockPistonContract => "block.piston.contract",
2482    BlockPistonExtend => "block.piston.extend",
2483    EntityPlayerAttackCrit => "entity.player.attack.crit",
2484    EntityPlayerAttackKnockback => "entity.player.attack.knockback",
2485    EntityPlayerAttackNodamage => "entity.player.attack.nodamage",
2486    EntityPlayerAttackStrong => "entity.player.attack.strong",
2487    EntityPlayerAttackSweep => "entity.player.attack.sweep",
2488    EntityPlayerAttackWeak => "entity.player.attack.weak",
2489    EntityPlayerBigFall => "entity.player.big_fall",
2490    EntityPlayerBreath => "entity.player.breath",
2491    EntityPlayerBurp => "entity.player.burp",
2492    EntityPlayerDeath => "entity.player.death",
2493    EntityPlayerHurt => "entity.player.hurt",
2494    EntityPlayerHurtDrown => "entity.player.hurt_drown",
2495    EntityPlayerHurtFreeze => "entity.player.hurt_freeze",
2496    EntityPlayerHurtOnFire => "entity.player.hurt_on_fire",
2497    EntityPlayerHurtSweetBerryBush => "entity.player.hurt_sweet_berry_bush",
2498    EntityPlayerLevelup => "entity.player.levelup",
2499    EntityPlayerSmallFall => "entity.player.small_fall",
2500    EntityPlayerSplash => "entity.player.splash",
2501    EntityPlayerSplashHighSpeed => "entity.player.splash.high_speed",
2502    EntityPlayerSwim => "entity.player.swim",
2503    EntityPlayerTeleport => "entity.player.teleport",
2504    EntityPolarBearAmbient => "entity.polar_bear.ambient",
2505    EntityPolarBearAmbientBaby => "entity.polar_bear.ambient_baby",
2506    EntityPolarBearDeath => "entity.polar_bear.death",
2507    EntityPolarBearHurt => "entity.polar_bear.hurt",
2508    EntityPolarBearStep => "entity.polar_bear.step",
2509    EntityPolarBearWarning => "entity.polar_bear.warning",
2510    BlockPolishedDeepslateBreak => "block.polished_deepslate.break",
2511    BlockPolishedDeepslateFall => "block.polished_deepslate.fall",
2512    BlockPolishedDeepslateHit => "block.polished_deepslate.hit",
2513    BlockPolishedDeepslatePlace => "block.polished_deepslate.place",
2514    BlockPolishedDeepslateStep => "block.polished_deepslate.step",
2515    BlockPortalAmbient => "block.portal.ambient",
2516    BlockPortalTravel => "block.portal.travel",
2517    BlockPortalTrigger => "block.portal.trigger",
2518    BlockPowderSnowBreak => "block.powder_snow.break",
2519    BlockPowderSnowFall => "block.powder_snow.fall",
2520    BlockPowderSnowHit => "block.powder_snow.hit",
2521    BlockPowderSnowPlace => "block.powder_snow.place",
2522    BlockPowderSnowStep => "block.powder_snow.step",
2523    EntityPufferFishBlowOut => "entity.puffer_fish.blow_out",
2524    EntityPufferFishBlowUp => "entity.puffer_fish.blow_up",
2525    EntityPufferFishDeath => "entity.puffer_fish.death",
2526    EntityPufferFishFlop => "entity.puffer_fish.flop",
2527    EntityPufferFishHurt => "entity.puffer_fish.hurt",
2528    EntityPufferFishSting => "entity.puffer_fish.sting",
2529    BlockPumpkinCarve => "block.pumpkin.carve",
2530    EntityRabbitAmbient => "entity.rabbit.ambient",
2531    EntityRabbitAttack => "entity.rabbit.attack",
2532    EntityRabbitDeath => "entity.rabbit.death",
2533    EntityRabbitHurt => "entity.rabbit.hurt",
2534    EntityRabbitJump => "entity.rabbit.jump",
2535    EventRaidHorn => "event.raid.horn",
2536    EntityRavagerAmbient => "entity.ravager.ambient",
2537    EntityRavagerAttack => "entity.ravager.attack",
2538    EntityRavagerCelebrate => "entity.ravager.celebrate",
2539    EntityRavagerDeath => "entity.ravager.death",
2540    EntityRavagerHurt => "entity.ravager.hurt",
2541    EntityRavagerStep => "entity.ravager.step",
2542    EntityRavagerStunned => "entity.ravager.stunned",
2543    EntityRavagerRoar => "entity.ravager.roar",
2544    BlockNetherGoldOreBreak => "block.nether_gold_ore.break",
2545    BlockNetherGoldOreFall => "block.nether_gold_ore.fall",
2546    BlockNetherGoldOreHit => "block.nether_gold_ore.hit",
2547    BlockNetherGoldOrePlace => "block.nether_gold_ore.place",
2548    BlockNetherGoldOreStep => "block.nether_gold_ore.step",
2549    BlockNetherOreBreak => "block.nether_ore.break",
2550    BlockNetherOreFall => "block.nether_ore.fall",
2551    BlockNetherOreHit => "block.nether_ore.hit",
2552    BlockNetherOrePlace => "block.nether_ore.place",
2553    BlockNetherOreStep => "block.nether_ore.step",
2554    BlockRedstoneTorchBurnout => "block.redstone_torch.burnout",
2555    BlockResinBreak => "block.resin.break",
2556    BlockResinFall => "block.resin.fall",
2557    BlockResinPlace => "block.resin.place",
2558    BlockResinStep => "block.resin.step",
2559    BlockResinBricksBreak => "block.resin_bricks.break",
2560    BlockResinBricksFall => "block.resin_bricks.fall",
2561    BlockResinBricksHit => "block.resin_bricks.hit",
2562    BlockResinBricksPlace => "block.resin_bricks.place",
2563    BlockResinBricksStep => "block.resin_bricks.step",
2564    BlockRespawnAnchorAmbient => "block.respawn_anchor.ambient",
2565    BlockRespawnAnchorCharge => "block.respawn_anchor.charge",
2566    BlockRespawnAnchorDeplete => "block.respawn_anchor.deplete",
2567    BlockRespawnAnchorSetSpawn => "block.respawn_anchor.set_spawn",
2568    BlockRootedDirtBreak => "block.rooted_dirt.break",
2569    BlockRootedDirtFall => "block.rooted_dirt.fall",
2570    BlockRootedDirtHit => "block.rooted_dirt.hit",
2571    BlockRootedDirtPlace => "block.rooted_dirt.place",
2572    BlockRootedDirtStep => "block.rooted_dirt.step",
2573    EntitySalmonAmbient => "entity.salmon.ambient",
2574    EntitySalmonDeath => "entity.salmon.death",
2575    EntitySalmonFlop => "entity.salmon.flop",
2576    EntitySalmonHurt => "entity.salmon.hurt",
2577    BlockSandBreak => "block.sand.break",
2578    BlockSandFall => "block.sand.fall",
2579    BlockSandHit => "block.sand.hit",
2580    BlockSandPlace => "block.sand.place",
2581    BlockSandStep => "block.sand.step",
2582    BlockSandIdle => "block.sand.idle",
2583    BlockScaffoldingBreak => "block.scaffolding.break",
2584    BlockScaffoldingFall => "block.scaffolding.fall",
2585    BlockScaffoldingHit => "block.scaffolding.hit",
2586    BlockScaffoldingPlace => "block.scaffolding.place",
2587    BlockScaffoldingStep => "block.scaffolding.step",
2588    BlockSculkSpread => "block.sculk.spread",
2589    BlockSculkCharge => "block.sculk.charge",
2590    BlockSculkBreak => "block.sculk.break",
2591    BlockSculkFall => "block.sculk.fall",
2592    BlockSculkHit => "block.sculk.hit",
2593    BlockSculkPlace => "block.sculk.place",
2594    BlockSculkStep => "block.sculk.step",
2595    BlockSculkCatalystBloom => "block.sculk_catalyst.bloom",
2596    BlockSculkCatalystBreak => "block.sculk_catalyst.break",
2597    BlockSculkCatalystFall => "block.sculk_catalyst.fall",
2598    BlockSculkCatalystHit => "block.sculk_catalyst.hit",
2599    BlockSculkCatalystPlace => "block.sculk_catalyst.place",
2600    BlockSculkCatalystStep => "block.sculk_catalyst.step",
2601    BlockSculkSensorClicking => "block.sculk_sensor.clicking",
2602    BlockSculkSensorClickingStop => "block.sculk_sensor.clicking_stop",
2603    BlockSculkSensorBreak => "block.sculk_sensor.break",
2604    BlockSculkSensorFall => "block.sculk_sensor.fall",
2605    BlockSculkSensorHit => "block.sculk_sensor.hit",
2606    BlockSculkSensorPlace => "block.sculk_sensor.place",
2607    BlockSculkSensorStep => "block.sculk_sensor.step",
2608    BlockSculkShriekerBreak => "block.sculk_shrieker.break",
2609    BlockSculkShriekerFall => "block.sculk_shrieker.fall",
2610    BlockSculkShriekerHit => "block.sculk_shrieker.hit",
2611    BlockSculkShriekerPlace => "block.sculk_shrieker.place",
2612    BlockSculkShriekerShriek => "block.sculk_shrieker.shriek",
2613    BlockSculkShriekerStep => "block.sculk_shrieker.step",
2614    BlockSculkVeinBreak => "block.sculk_vein.break",
2615    BlockSculkVeinFall => "block.sculk_vein.fall",
2616    BlockSculkVeinHit => "block.sculk_vein.hit",
2617    BlockSculkVeinPlace => "block.sculk_vein.place",
2618    BlockSculkVeinStep => "block.sculk_vein.step",
2619    EntitySheepAmbient => "entity.sheep.ambient",
2620    EntitySheepDeath => "entity.sheep.death",
2621    EntitySheepHurt => "entity.sheep.hurt",
2622    EntitySheepShear => "entity.sheep.shear",
2623    EntitySheepStep => "entity.sheep.step",
2624    ItemShearsSnip => "item.shears.snip",
2625    BlockShelfActivate => "block.shelf.activate",
2626    BlockShelfBreak => "block.shelf.break",
2627    BlockShelfDeactivate => "block.shelf.deactivate",
2628    BlockShelfFall => "block.shelf.fall",
2629    BlockShelfHit => "block.shelf.hit",
2630    BlockShelfMultiSwap => "block.shelf.multi_swap",
2631    BlockShelfPlace => "block.shelf.place",
2632    BlockShelfPlaceItem => "block.shelf.place_item",
2633    BlockShelfSingleSwap => "block.shelf.single_swap",
2634    BlockShelfStep => "block.shelf.step",
2635    BlockShelfTakeItem => "block.shelf.take_item",
2636    ItemShieldBlock => "item.shield.block",
2637    ItemShieldBreak => "item.shield.break",
2638    BlockShroomlightBreak => "block.shroomlight.break",
2639    BlockShroomlightStep => "block.shroomlight.step",
2640    BlockShroomlightPlace => "block.shroomlight.place",
2641    BlockShroomlightHit => "block.shroomlight.hit",
2642    BlockShroomlightFall => "block.shroomlight.fall",
2643    ItemShovelFlatten => "item.shovel.flatten",
2644    EntityShulkerAmbient => "entity.shulker.ambient",
2645    BlockShulkerBoxClose => "block.shulker_box.close",
2646    BlockShulkerBoxOpen => "block.shulker_box.open",
2647    EntityShulkerBulletHit => "entity.shulker_bullet.hit",
2648    EntityShulkerBulletHurt => "entity.shulker_bullet.hurt",
2649    EntityShulkerClose => "entity.shulker.close",
2650    EntityShulkerDeath => "entity.shulker.death",
2651    EntityShulkerHurt => "entity.shulker.hurt",
2652    EntityShulkerHurtClosed => "entity.shulker.hurt_closed",
2653    EntityShulkerOpen => "entity.shulker.open",
2654    EntityShulkerShoot => "entity.shulker.shoot",
2655    EntityShulkerTeleport => "entity.shulker.teleport",
2656    EntitySilverfishAmbient => "entity.silverfish.ambient",
2657    EntitySilverfishDeath => "entity.silverfish.death",
2658    EntitySilverfishHurt => "entity.silverfish.hurt",
2659    EntitySilverfishStep => "entity.silverfish.step",
2660    EntitySkeletonAmbient => "entity.skeleton.ambient",
2661    EntitySkeletonConvertedToStray => "entity.skeleton.converted_to_stray",
2662    EntitySkeletonDeath => "entity.skeleton.death",
2663    EntitySkeletonHorseAmbient => "entity.skeleton_horse.ambient",
2664    EntitySkeletonHorseDeath => "entity.skeleton_horse.death",
2665    EntitySkeletonHorseHurt => "entity.skeleton_horse.hurt",
2666    EntitySkeletonHorseSwim => "entity.skeleton_horse.swim",
2667    EntitySkeletonHorseAmbientWater => "entity.skeleton_horse.ambient_water",
2668    EntitySkeletonHorseGallopWater => "entity.skeleton_horse.gallop_water",
2669    EntitySkeletonHorseJumpWater => "entity.skeleton_horse.jump_water",
2670    EntitySkeletonHorseStepWater => "entity.skeleton_horse.step_water",
2671    EntitySkeletonHurt => "entity.skeleton.hurt",
2672    EntitySkeletonShoot => "entity.skeleton.shoot",
2673    EntitySkeletonStep => "entity.skeleton.step",
2674    EntitySlimeAttack => "entity.slime.attack",
2675    EntitySlimeDeath => "entity.slime.death",
2676    EntitySlimeHurt => "entity.slime.hurt",
2677    EntitySlimeJump => "entity.slime.jump",
2678    EntitySlimeSquish => "entity.slime.squish",
2679    BlockSlimeBlockBreak => "block.slime_block.break",
2680    BlockSlimeBlockFall => "block.slime_block.fall",
2681    BlockSlimeBlockHit => "block.slime_block.hit",
2682    BlockSlimeBlockPlace => "block.slime_block.place",
2683    BlockSlimeBlockStep => "block.slime_block.step",
2684    BlockSmallAmethystBudBreak => "block.small_amethyst_bud.break",
2685    BlockSmallAmethystBudPlace => "block.small_amethyst_bud.place",
2686    BlockSmallDripleafBreak => "block.small_dripleaf.break",
2687    BlockSmallDripleafFall => "block.small_dripleaf.fall",
2688    BlockSmallDripleafHit => "block.small_dripleaf.hit",
2689    BlockSmallDripleafPlace => "block.small_dripleaf.place",
2690    BlockSmallDripleafStep => "block.small_dripleaf.step",
2691    BlockSoulSandBreak => "block.soul_sand.break",
2692    BlockSoulSandStep => "block.soul_sand.step",
2693    BlockSoulSandPlace => "block.soul_sand.place",
2694    BlockSoulSandHit => "block.soul_sand.hit",
2695    BlockSoulSandFall => "block.soul_sand.fall",
2696    BlockSoulSoilBreak => "block.soul_soil.break",
2697    BlockSoulSoilStep => "block.soul_soil.step",
2698    BlockSoulSoilPlace => "block.soul_soil.place",
2699    BlockSoulSoilHit => "block.soul_soil.hit",
2700    BlockSoulSoilFall => "block.soul_soil.fall",
2701    ParticleSoulEscape => "particle.soul_escape",
2702    BlockSpawnerBreak => "block.spawner.break",
2703    BlockSpawnerFall => "block.spawner.fall",
2704    BlockSpawnerHit => "block.spawner.hit",
2705    BlockSpawnerPlace => "block.spawner.place",
2706    BlockSpawnerStep => "block.spawner.step",
2707    ItemSpearUse => "item.spear.use",
2708    ItemSpearHit => "item.spear.hit",
2709    ItemSpearAttack => "item.spear.attack",
2710    ItemSpearWoodUse => "item.spear_wood.use",
2711    ItemSpearWoodHit => "item.spear_wood.hit",
2712    ItemSpearWoodAttack => "item.spear_wood.attack",
2713    BlockSporeBlossomBreak => "block.spore_blossom.break",
2714    BlockSporeBlossomFall => "block.spore_blossom.fall",
2715    BlockSporeBlossomHit => "block.spore_blossom.hit",
2716    BlockSporeBlossomPlace => "block.spore_blossom.place",
2717    BlockSporeBlossomStep => "block.spore_blossom.step",
2718    EntityStriderAmbient => "entity.strider.ambient",
2719    EntityStriderHappy => "entity.strider.happy",
2720    EntityStriderRetreat => "entity.strider.retreat",
2721    EntityStriderDeath => "entity.strider.death",
2722    EntityStriderHurt => "entity.strider.hurt",
2723    EntityStriderStep => "entity.strider.step",
2724    EntityStriderStepLava => "entity.strider.step_lava",
2725    EntityStriderEat => "entity.strider.eat",
2726    EntityStriderSaddle => "entity.strider.saddle",
2727    EntitySlimeDeathSmall => "entity.slime.death_small",
2728    EntitySlimeHurtSmall => "entity.slime.hurt_small",
2729    EntitySlimeJumpSmall => "entity.slime.jump_small",
2730    EntitySlimeSquishSmall => "entity.slime.squish_small",
2731    BlockSmithingTableUse => "block.smithing_table.use",
2732    BlockSmokerSmoke => "block.smoker.smoke",
2733    EntitySnifferStep => "entity.sniffer.step",
2734    EntitySnifferEat => "entity.sniffer.eat",
2735    EntitySnifferIdle => "entity.sniffer.idle",
2736    EntitySnifferHurt => "entity.sniffer.hurt",
2737    EntitySnifferDeath => "entity.sniffer.death",
2738    EntitySnifferDropSeed => "entity.sniffer.drop_seed",
2739    EntitySnifferScenting => "entity.sniffer.scenting",
2740    EntitySnifferSniffing => "entity.sniffer.sniffing",
2741    EntitySnifferSearching => "entity.sniffer.searching",
2742    EntitySnifferDigging => "entity.sniffer.digging",
2743    EntitySnifferDiggingStop => "entity.sniffer.digging_stop",
2744    EntitySnifferHappy => "entity.sniffer.happy",
2745    BlockSnifferEggPlop => "block.sniffer_egg.plop",
2746    BlockSnifferEggCrack => "block.sniffer_egg.crack",
2747    BlockSnifferEggHatch => "block.sniffer_egg.hatch",
2748    EntitySnowballThrow => "entity.snowball.throw",
2749    BlockSnowBreak => "block.snow.break",
2750    BlockSnowFall => "block.snow.fall",
2751    EntitySnowGolemAmbient => "entity.snow_golem.ambient",
2752    EntitySnowGolemDeath => "entity.snow_golem.death",
2753    EntitySnowGolemHurt => "entity.snow_golem.hurt",
2754    EntitySnowGolemShoot => "entity.snow_golem.shoot",
2755    EntitySnowGolemShear => "entity.snow_golem.shear",
2756    BlockSnowHit => "block.snow.hit",
2757    BlockSnowPlace => "block.snow.place",
2758    BlockSnowStep => "block.snow.step",
2759    EntitySpiderAmbient => "entity.spider.ambient",
2760    EntitySpiderDeath => "entity.spider.death",
2761    EntitySpiderHurt => "entity.spider.hurt",
2762    EntitySpiderStep => "entity.spider.step",
2763    EntitySplashPotionBreak => "entity.splash_potion.break",
2764    EntitySplashPotionThrow => "entity.splash_potion.throw",
2765    BlockSpongeBreak => "block.sponge.break",
2766    BlockSpongeFall => "block.sponge.fall",
2767    BlockSpongeHit => "block.sponge.hit",
2768    BlockSpongePlace => "block.sponge.place",
2769    BlockSpongeStep => "block.sponge.step",
2770    BlockSpongeAbsorb => "block.sponge.absorb",
2771    ItemSpyglassUse => "item.spyglass.use",
2772    ItemSpyglassStopUsing => "item.spyglass.stop_using",
2773    EntitySquidAmbient => "entity.squid.ambient",
2774    EntitySquidDeath => "entity.squid.death",
2775    EntitySquidHurt => "entity.squid.hurt",
2776    EntitySquidSquirt => "entity.squid.squirt",
2777    BlockStoneBreak => "block.stone.break",
2778    BlockStoneButtonClickOff => "block.stone_button.click_off",
2779    BlockStoneButtonClickOn => "block.stone_button.click_on",
2780    BlockStoneFall => "block.stone.fall",
2781    BlockStoneHit => "block.stone.hit",
2782    BlockStonePlace => "block.stone.place",
2783    BlockStonePressurePlateClickOff => "block.stone_pressure_plate.click_off",
2784    BlockStonePressurePlateClickOn => "block.stone_pressure_plate.click_on",
2785    BlockStoneStep => "block.stone.step",
2786    EntityStrayAmbient => "entity.stray.ambient",
2787    EntityStrayDeath => "entity.stray.death",
2788    EntityStrayHurt => "entity.stray.hurt",
2789    EntityStrayStep => "entity.stray.step",
2790    BlockSulfurSpikeBreak => "block.sulfur_spike.break",
2791    BlockSulfurSpikeStep => "block.sulfur_spike.step",
2792    BlockSulfurSpikePlace => "block.sulfur_spike.place",
2793    BlockSulfurSpikeHit => "block.sulfur_spike.hit",
2794    BlockSulfurSpikeFall => "block.sulfur_spike.fall",
2795    BlockSulfurSpikeLand => "block.sulfur_spike.land",
2796    BlockSweetBerryBushBreak => "block.sweet_berry_bush.break",
2797    BlockSweetBerryBushPlace => "block.sweet_berry_bush.place",
2798    BlockSweetBerryBushPickBerries => "block.sweet_berry_bush.pick_berries",
2799    EntityTadpoleDeath => "entity.tadpole.death",
2800    EntityTadpoleFlop => "entity.tadpole.flop",
2801    EntityTadpoleGrowUp => "entity.tadpole.grow_up",
2802    EntityTadpoleHurt => "entity.tadpole.hurt",
2803    EnchantThornsHit => "enchant.thorns.hit",
2804    EntityTntPrimed => "entity.tnt.primed",
2805    ItemTotemUse => "item.totem.use",
2806    ItemTridentHit => "item.trident.hit",
2807    ItemTridentHitGround => "item.trident.hit_ground",
2808    ItemTridentReturn => "item.trident.return",
2809    ItemTridentRiptide1 => "item.trident.riptide_1",
2810    ItemTridentRiptide2 => "item.trident.riptide_2",
2811    ItemTridentRiptide3 => "item.trident.riptide_3",
2812    ItemTridentThrow => "item.trident.throw",
2813    ItemTridentThunder => "item.trident.thunder",
2814    BlockTripwireAttach => "block.tripwire.attach",
2815    BlockTripwireClickOff => "block.tripwire.click_off",
2816    BlockTripwireClickOn => "block.tripwire.click_on",
2817    BlockTripwireDetach => "block.tripwire.detach",
2818    EntityTropicalFishAmbient => "entity.tropical_fish.ambient",
2819    EntityTropicalFishDeath => "entity.tropical_fish.death",
2820    EntityTropicalFishFlop => "entity.tropical_fish.flop",
2821    EntityTropicalFishHurt => "entity.tropical_fish.hurt",
2822    BlockTuffBreak => "block.tuff.break",
2823    BlockTuffStep => "block.tuff.step",
2824    BlockTuffPlace => "block.tuff.place",
2825    BlockTuffHit => "block.tuff.hit",
2826    BlockTuffFall => "block.tuff.fall",
2827    BlockTuffBricksBreak => "block.tuff_bricks.break",
2828    BlockTuffBricksFall => "block.tuff_bricks.fall",
2829    BlockTuffBricksHit => "block.tuff_bricks.hit",
2830    BlockTuffBricksPlace => "block.tuff_bricks.place",
2831    BlockTuffBricksStep => "block.tuff_bricks.step",
2832    BlockPolishedTuffBreak => "block.polished_tuff.break",
2833    BlockPolishedTuffFall => "block.polished_tuff.fall",
2834    BlockPolishedTuffHit => "block.polished_tuff.hit",
2835    BlockPolishedTuffPlace => "block.polished_tuff.place",
2836    BlockPolishedTuffStep => "block.polished_tuff.step",
2837    EntityTurtleAmbientLand => "entity.turtle.ambient_land",
2838    EntityTurtleDeath => "entity.turtle.death",
2839    EntityTurtleDeathBaby => "entity.turtle.death_baby",
2840    EntityTurtleEggBreak => "entity.turtle.egg_break",
2841    EntityTurtleEggCrack => "entity.turtle.egg_crack",
2842    EntityTurtleEggHatch => "entity.turtle.egg_hatch",
2843    EntityTurtleHurt => "entity.turtle.hurt",
2844    EntityTurtleHurtBaby => "entity.turtle.hurt_baby",
2845    EntityTurtleLayEgg => "entity.turtle.lay_egg",
2846    EntityTurtleShamble => "entity.turtle.shamble",
2847    EntityTurtleShambleBaby => "entity.turtle.shamble_baby",
2848    EntityTurtleSwim => "entity.turtle.swim",
2849    UiButtonClick => "ui.button.click",
2850    UiLoomSelectPattern => "ui.loom.select_pattern",
2851    UiLoomTakeResult => "ui.loom.take_result",
2852    UiCartographyTableTakeResult => "ui.cartography_table.take_result",
2853    UiStonecutterTakeResult => "ui.stonecutter.take_result",
2854    UiStonecutterSelectRecipe => "ui.stonecutter.select_recipe",
2855    UiToastChallengeComplete => "ui.toast.challenge_complete",
2856    UiToastIn => "ui.toast.in",
2857    UiToastOut => "ui.toast.out",
2858    BlockVaultActivate => "block.vault.activate",
2859    BlockVaultAmbient => "block.vault.ambient",
2860    BlockVaultBreak => "block.vault.break",
2861    BlockVaultCloseShutter => "block.vault.close_shutter",
2862    BlockVaultDeactivate => "block.vault.deactivate",
2863    BlockVaultEjectItem => "block.vault.eject_item",
2864    BlockVaultRejectRewardedPlayer => "block.vault.reject_rewarded_player",
2865    BlockVaultFall => "block.vault.fall",
2866    BlockVaultHit => "block.vault.hit",
2867    BlockVaultInsertItem => "block.vault.insert_item",
2868    BlockVaultInsertItemFail => "block.vault.insert_item_fail",
2869    BlockVaultOpenShutter => "block.vault.open_shutter",
2870    BlockVaultPlace => "block.vault.place",
2871    BlockVaultStep => "block.vault.step",
2872    EntityVexAmbient => "entity.vex.ambient",
2873    EntityVexCharge => "entity.vex.charge",
2874    EntityVexDeath => "entity.vex.death",
2875    EntityVexHurt => "entity.vex.hurt",
2876    EntityVillagerAmbient => "entity.villager.ambient",
2877    EntityVillagerCelebrate => "entity.villager.celebrate",
2878    EntityVillagerDeath => "entity.villager.death",
2879    EntityVillagerHurt => "entity.villager.hurt",
2880    EntityVillagerNo => "entity.villager.no",
2881    EntityVillagerTrade => "entity.villager.trade",
2882    EntityVillagerYes => "entity.villager.yes",
2883    EntityVillagerWorkArmorer => "entity.villager.work_armorer",
2884    EntityVillagerWorkButcher => "entity.villager.work_butcher",
2885    EntityVillagerWorkCartographer => "entity.villager.work_cartographer",
2886    EntityVillagerWorkCleric => "entity.villager.work_cleric",
2887    EntityVillagerWorkFarmer => "entity.villager.work_farmer",
2888    EntityVillagerWorkFisherman => "entity.villager.work_fisherman",
2889    EntityVillagerWorkFletcher => "entity.villager.work_fletcher",
2890    EntityVillagerWorkLeatherworker => "entity.villager.work_leatherworker",
2891    EntityVillagerWorkLibrarian => "entity.villager.work_librarian",
2892    EntityVillagerWorkMason => "entity.villager.work_mason",
2893    EntityVillagerWorkShepherd => "entity.villager.work_shepherd",
2894    EntityVillagerWorkToolsmith => "entity.villager.work_toolsmith",
2895    EntityVillagerWorkWeaponsmith => "entity.villager.work_weaponsmith",
2896    EntityVindicatorAmbient => "entity.vindicator.ambient",
2897    EntityVindicatorCelebrate => "entity.vindicator.celebrate",
2898    EntityVindicatorDeath => "entity.vindicator.death",
2899    EntityVindicatorHurt => "entity.vindicator.hurt",
2900    BlockVineBreak => "block.vine.break",
2901    BlockVineFall => "block.vine.fall",
2902    BlockVineHit => "block.vine.hit",
2903    BlockVinePlace => "block.vine.place",
2904    BlockVineStep => "block.vine.step",
2905    BlockLilyPadPlace => "block.lily_pad.place",
2906    EntityWanderingTraderAmbient => "entity.wandering_trader.ambient",
2907    EntityWanderingTraderDeath => "entity.wandering_trader.death",
2908    EntityWanderingTraderDisappeared => "entity.wandering_trader.disappeared",
2909    EntityWanderingTraderDrinkMilk => "entity.wandering_trader.drink_milk",
2910    EntityWanderingTraderDrinkPotion => "entity.wandering_trader.drink_potion",
2911    EntityWanderingTraderHurt => "entity.wandering_trader.hurt",
2912    EntityWanderingTraderNo => "entity.wandering_trader.no",
2913    EntityWanderingTraderReappeared => "entity.wandering_trader.reappeared",
2914    EntityWanderingTraderTrade => "entity.wandering_trader.trade",
2915    EntityWanderingTraderYes => "entity.wandering_trader.yes",
2916    EntityWardenAgitated => "entity.warden.agitated",
2917    EntityWardenAmbient => "entity.warden.ambient",
2918    EntityWardenAngry => "entity.warden.angry",
2919    EntityWardenAttackImpact => "entity.warden.attack_impact",
2920    EntityWardenDeath => "entity.warden.death",
2921    EntityWardenDig => "entity.warden.dig",
2922    EntityWardenEmerge => "entity.warden.emerge",
2923    EntityWardenHeartbeat => "entity.warden.heartbeat",
2924    EntityWardenHurt => "entity.warden.hurt",
2925    EntityWardenListening => "entity.warden.listening",
2926    EntityWardenListeningAngry => "entity.warden.listening_angry",
2927    EntityWardenNearbyClose => "entity.warden.nearby_close",
2928    EntityWardenNearbyCloser => "entity.warden.nearby_closer",
2929    EntityWardenNearbyClosest => "entity.warden.nearby_closest",
2930    EntityWardenRoar => "entity.warden.roar",
2931    EntityWardenSniff => "entity.warden.sniff",
2932    EntityWardenSonicBoom => "entity.warden.sonic_boom",
2933    EntityWardenSonicCharge => "entity.warden.sonic_charge",
2934    EntityWardenStep => "entity.warden.step",
2935    EntityWardenTendrilClicks => "entity.warden.tendril_clicks",
2936    BlockHangingSignWaxedInteractFail => "block.hanging_sign.waxed_interact_fail",
2937    BlockSignWaxedInteractFail => "block.sign.waxed_interact_fail",
2938    BlockWaterAmbient => "block.water.ambient",
2939    WeatherEndFlash => "weather.end_flash",
2940    WeatherRain => "weather.rain",
2941    WeatherRainAbove => "weather.rain.above",
2942    BlockWetGrassBreak => "block.wet_grass.break",
2943    BlockWetGrassFall => "block.wet_grass.fall",
2944    BlockWetGrassHit => "block.wet_grass.hit",
2945    BlockWetGrassPlace => "block.wet_grass.place",
2946    BlockWetGrassStep => "block.wet_grass.step",
2947    BlockWetSpongeBreak => "block.wet_sponge.break",
2948    BlockWetSpongeDries => "block.wet_sponge.dries",
2949    BlockWetSpongeFall => "block.wet_sponge.fall",
2950    BlockWetSpongeHit => "block.wet_sponge.hit",
2951    BlockWetSpongePlace => "block.wet_sponge.place",
2952    BlockWetSpongeStep => "block.wet_sponge.step",
2953    EntityWindChargeWindBurst => "entity.wind_charge.wind_burst",
2954    EntityWindChargeThrow => "entity.wind_charge.throw",
2955    EntityWitchAmbient => "entity.witch.ambient",
2956    EntityWitchCelebrate => "entity.witch.celebrate",
2957    EntityWitchDeath => "entity.witch.death",
2958    EntityWitchDrink => "entity.witch.drink",
2959    EntityWitchHurt => "entity.witch.hurt",
2960    EntityWitchThrow => "entity.witch.throw",
2961    EntityWitherAmbient => "entity.wither.ambient",
2962    EntityWitherBreakBlock => "entity.wither.break_block",
2963    EntityWitherDeath => "entity.wither.death",
2964    EntityWitherHurt => "entity.wither.hurt",
2965    EntityWitherShoot => "entity.wither.shoot",
2966    EntityWitherSkeletonAmbient => "entity.wither_skeleton.ambient",
2967    EntityWitherSkeletonDeath => "entity.wither_skeleton.death",
2968    EntityWitherSkeletonHurt => "entity.wither_skeleton.hurt",
2969    EntityWitherSkeletonStep => "entity.wither_skeleton.step",
2970    EntityWitherSpawn => "entity.wither.spawn",
2971    ItemWolfArmorBreak => "item.wolf_armor.break",
2972    EntityBabyWolfAmbient => "entity.baby_wolf.ambient",
2973    ItemWolfArmorCrack => "item.wolf_armor.crack",
2974    ItemWolfArmorDamage => "item.wolf_armor.damage",
2975    ItemWolfArmorRepair => "item.wolf_armor.repair",
2976    EntityBabyWolfDeath => "entity.baby_wolf.death",
2977    EntityBabyWolfGrowl => "entity.baby_wolf.growl",
2978    EntityBabyWolfHurt => "entity.baby_wolf.hurt",
2979    EntityBabyWolfPant => "entity.baby_wolf.pant",
2980    EntityWolfShake => "entity.wolf.shake",
2981    EntityWolfStep => "entity.wolf.step",
2982    EntityBabyWolfStep => "entity.baby_wolf.step",
2983    EntityBabyWolfWhine => "entity.baby_wolf.whine",
2984    EntityWolfAmbient => "entity.wolf.ambient",
2985    EntityWolfDeath => "entity.wolf.death",
2986    EntityWolfGrowl => "entity.wolf.growl",
2987    EntityWolfHurt => "entity.wolf.hurt",
2988    EntityWolfPant => "entity.wolf.pant",
2989    EntityWolfWhine => "entity.wolf.whine",
2990    EntityWolfPuglinAmbient => "entity.wolf_puglin.ambient",
2991    EntityWolfPuglinDeath => "entity.wolf_puglin.death",
2992    EntityWolfPuglinGrowl => "entity.wolf_puglin.growl",
2993    EntityWolfPuglinHurt => "entity.wolf_puglin.hurt",
2994    EntityWolfPuglinPant => "entity.wolf_puglin.pant",
2995    EntityWolfPuglinWhine => "entity.wolf_puglin.whine",
2996    EntityWolfSadAmbient => "entity.wolf_sad.ambient",
2997    EntityWolfSadDeath => "entity.wolf_sad.death",
2998    EntityWolfSadGrowl => "entity.wolf_sad.growl",
2999    EntityWolfSadHurt => "entity.wolf_sad.hurt",
3000    EntityWolfSadPant => "entity.wolf_sad.pant",
3001    EntityWolfSadWhine => "entity.wolf_sad.whine",
3002    EntityWolfAngryAmbient => "entity.wolf_angry.ambient",
3003    EntityWolfAngryDeath => "entity.wolf_angry.death",
3004    EntityWolfAngryGrowl => "entity.wolf_angry.growl",
3005    EntityWolfAngryHurt => "entity.wolf_angry.hurt",
3006    EntityWolfAngryPant => "entity.wolf_angry.pant",
3007    EntityWolfAngryWhine => "entity.wolf_angry.whine",
3008    EntityWolfGrumpyAmbient => "entity.wolf_grumpy.ambient",
3009    EntityWolfGrumpyDeath => "entity.wolf_grumpy.death",
3010    EntityWolfGrumpyGrowl => "entity.wolf_grumpy.growl",
3011    EntityWolfGrumpyHurt => "entity.wolf_grumpy.hurt",
3012    EntityWolfGrumpyPant => "entity.wolf_grumpy.pant",
3013    EntityWolfGrumpyWhine => "entity.wolf_grumpy.whine",
3014    EntityWolfBigAmbient => "entity.wolf_big.ambient",
3015    EntityWolfBigDeath => "entity.wolf_big.death",
3016    EntityWolfBigGrowl => "entity.wolf_big.growl",
3017    EntityWolfBigHurt => "entity.wolf_big.hurt",
3018    EntityWolfBigPant => "entity.wolf_big.pant",
3019    EntityWolfBigWhine => "entity.wolf_big.whine",
3020    EntityWolfCuteAmbient => "entity.wolf_cute.ambient",
3021    EntityWolfCuteDeath => "entity.wolf_cute.death",
3022    EntityWolfCuteGrowl => "entity.wolf_cute.growl",
3023    EntityWolfCuteHurt => "entity.wolf_cute.hurt",
3024    EntityWolfCutePant => "entity.wolf_cute.pant",
3025    EntityWolfCuteWhine => "entity.wolf_cute.whine",
3026    BlockWoodenDoorClose => "block.wooden_door.close",
3027    BlockWoodenDoorOpen => "block.wooden_door.open",
3028    BlockWoodenTrapdoorClose => "block.wooden_trapdoor.close",
3029    BlockWoodenTrapdoorOpen => "block.wooden_trapdoor.open",
3030    BlockWoodenButtonClickOff => "block.wooden_button.click_off",
3031    BlockWoodenButtonClickOn => "block.wooden_button.click_on",
3032    BlockWoodenPressurePlateClickOff => "block.wooden_pressure_plate.click_off",
3033    BlockWoodenPressurePlateClickOn => "block.wooden_pressure_plate.click_on",
3034    BlockWoodBreak => "block.wood.break",
3035    BlockWoodFall => "block.wood.fall",
3036    BlockWoodHit => "block.wood.hit",
3037    BlockWoodPlace => "block.wood.place",
3038    BlockWoodStep => "block.wood.step",
3039    BlockWoolBreak => "block.wool.break",
3040    BlockWoolFall => "block.wool.fall",
3041    BlockWoolHit => "block.wool.hit",
3042    BlockWoolPlace => "block.wool.place",
3043    BlockWoolStep => "block.wool.step",
3044    EntityZoglinAmbient => "entity.zoglin.ambient",
3045    EntityZoglinAngry => "entity.zoglin.angry",
3046    EntityZoglinAttack => "entity.zoglin.attack",
3047    EntityZoglinDeath => "entity.zoglin.death",
3048    EntityZoglinHurt => "entity.zoglin.hurt",
3049    EntityZoglinStep => "entity.zoglin.step",
3050    EntityZombieAmbient => "entity.zombie.ambient",
3051    EntityZombieAttackWoodenDoor => "entity.zombie.attack_wooden_door",
3052    EntityZombieAttackIronDoor => "entity.zombie.attack_iron_door",
3053    EntityZombieBreakWoodenDoor => "entity.zombie.break_wooden_door",
3054    EntityZombieConvertedToDrowned => "entity.zombie.converted_to_drowned",
3055    EntityZombieDeath => "entity.zombie.death",
3056    EntityZombieDestroyEgg => "entity.zombie.destroy_egg",
3057    EntityZombieHorseAmbient => "entity.zombie_horse.ambient",
3058    EntityZombieHorseAngry => "entity.zombie_horse.angry",
3059    EntityZombieHorseDeath => "entity.zombie_horse.death",
3060    EntityZombieHorseEat => "entity.zombie_horse.eat",
3061    EntityZombieHorseHurt => "entity.zombie_horse.hurt",
3062    EntityZombieHurt => "entity.zombie.hurt",
3063    EntityZombieInfect => "entity.zombie.infect",
3064    EntityZombieNautilusAmbient => "entity.zombie_nautilus.ambient",
3065    EntityZombieNautilusAmbientLand => "entity.zombie_nautilus.ambient_land",
3066    EntityZombieNautilusDash => "entity.zombie_nautilus.dash",
3067    EntityZombieNautilusDashLand => "entity.zombie_nautilus.dash_land",
3068    EntityZombieNautilusDashReady => "entity.zombie_nautilus.dash_ready",
3069    EntityZombieNautilusDashReadyLand => "entity.zombie_nautilus.dash_ready_land",
3070    EntityZombieNautilusDeath => "entity.zombie_nautilus.death",
3071    EntityZombieNautilusDeathLand => "entity.zombie_nautilus.death_land",
3072    EntityZombieNautilusEat => "entity.zombie_nautilus.eat",
3073    EntityZombieNautilusHurt => "entity.zombie_nautilus.hurt",
3074    EntityZombieNautilusHurtLand => "entity.zombie_nautilus.hurt_land",
3075    EntityZombieNautilusSwim => "entity.zombie_nautilus.swim",
3076    EntityZombifiedPiglinAmbient => "entity.zombified_piglin.ambient",
3077    EntityZombifiedPiglinAngry => "entity.zombified_piglin.angry",
3078    EntityZombifiedPiglinDeath => "entity.zombified_piglin.death",
3079    EntityZombifiedPiglinHurt => "entity.zombified_piglin.hurt",
3080    EntityZombieStep => "entity.zombie.step",
3081    EntityZombieVillagerAmbient => "entity.zombie_villager.ambient",
3082    EntityZombieVillagerConverted => "entity.zombie_villager.converted",
3083    EntityZombieVillagerCure => "entity.zombie_villager.cure",
3084    EntityZombieVillagerDeath => "entity.zombie_villager.death",
3085    EntityZombieVillagerHurt => "entity.zombie_villager.hurt",
3086    EntityZombieVillagerStep => "entity.zombie_villager.step",
3087    EventMobEffectBadOmen => "event.mob_effect.bad_omen",
3088    EventMobEffectTrialOmen => "event.mob_effect.trial_omen",
3089    EventMobEffectRaidOmen => "event.mob_effect.raid_omen",
3090    ItemSaddleUnequip => "item.saddle.unequip",
3091    ItemNautilusSaddleUnderwaterEquip => "item.nautilus_saddle_underwater_equip",
3092    ItemNautilusSaddleEquip => "item.nautilus_saddle_equip",
3093    BlockSulfurBreak => "block.sulfur.break",
3094    BlockSulfurStep => "block.sulfur.step",
3095    BlockSulfurPlace => "block.sulfur.place",
3096    BlockSulfurHit => "block.sulfur.hit",
3097    BlockSulfurFall => "block.sulfur.fall",
3098    BlockPotentSulfurBreak => "block.potent_sulfur.break",
3099    BlockPotentSulfurStep => "block.potent_sulfur.step",
3100    BlockPotentSulfurPlace => "block.potent_sulfur.place",
3101    BlockPotentSulfurHit => "block.potent_sulfur.hit",
3102    BlockPotentSulfurFall => "block.potent_sulfur.fall",
3103    BlockPotentSulfurGeyserEruption => "block.potent_sulfur.geyser_eruption",
3104    BlockPotentSulfurGeyserEruptionActive => "block.potent_sulfur.geyser_eruption_active",
3105    BlockPotentSulfurGeyserContinuousEruption => "block.potent_sulfur.geyser_continuous_eruption",
3106    BlockPotentSulfurGeyserContinuousEruptionActive => "block.potent_sulfur.geyser_continuous_eruption_active",
3107    BlockCinnabarBreak => "block.cinnabar.break",
3108    BlockCinnabarStep => "block.cinnabar.step",
3109    BlockCinnabarPlace => "block.cinnabar.place",
3110    BlockCinnabarHit => "block.cinnabar.hit",
3111    BlockCinnabarFall => "block.cinnabar.fall",
3112    EntitySulfurCubeAbsorb => "entity.sulfur_cube.absorb",
3113    EntitySulfurCubeBounce => "entity.sulfur_cube.bounce",
3114    EntitySulfurCubeDeath => "entity.sulfur_cube.death",
3115    EntitySulfurCubeEject => "entity.sulfur_cube.eject",
3116    EntitySulfurCubeHurt => "entity.sulfur_cube.hurt",
3117    EntitySulfurCubeJump => "entity.sulfur_cube.jump",
3118    EntitySulfurCubeRegularHit => "entity.sulfur_cube.regular.hit",
3119    EntitySulfurCubeRegularPush => "entity.sulfur_cube.regular.push",
3120    EntitySulfurCubeBouncyHit => "entity.sulfur_cube.bouncy.hit",
3121    EntitySulfurCubeBouncyPush => "entity.sulfur_cube.bouncy.push",
3122    EntitySulfurCubeSlowBouncyHit => "entity.sulfur_cube.slow_bouncy.hit",
3123    EntitySulfurCubeSlowBouncyPush => "entity.sulfur_cube.slow_bouncy.push",
3124    EntitySulfurCubeSlowFlatHit => "entity.sulfur_cube.slow_flat.hit",
3125    EntitySulfurCubeSlowFlatPush => "entity.sulfur_cube.slow_flat.push",
3126    EntitySulfurCubeFastFlatHit => "entity.sulfur_cube.fast_flat.hit",
3127    EntitySulfurCubeFastFlatPush => "entity.sulfur_cube.fast_flat.push",
3128    EntitySulfurCubeLightHit => "entity.sulfur_cube.light.hit",
3129    EntitySulfurCubeLightPush => "entity.sulfur_cube.light.push",
3130    EntitySulfurCubeFastSlidingHit => "entity.sulfur_cube.fast_sliding.hit",
3131    EntitySulfurCubeFastSlidingPush => "entity.sulfur_cube.fast_sliding.push",
3132    EntitySulfurCubeSlowSlidingHit => "entity.sulfur_cube.slow_sliding.hit",
3133    EntitySulfurCubeSlowSlidingPush => "entity.sulfur_cube.slow_sliding.push",
3134    EntitySulfurCubeStickyHit => "entity.sulfur_cube.sticky.hit",
3135    EntitySulfurCubeStickyPush => "entity.sulfur_cube.sticky.push",
3136    EntitySulfurCubeHighResistanceHit => "entity.sulfur_cube.high_resistance.hit",
3137    EntitySulfurCubeHighResistancePush => "entity.sulfur_cube.high_resistance.push",
3138    EntitySulfurCubeExplosiveHit => "entity.sulfur_cube.explosive.hit",
3139    EntitySulfurCubeExplosivePush => "entity.sulfur_cube.explosive.push",
3140    EntitySulfurCubeHotHit => "entity.sulfur_cube.hot.hit",
3141    EntitySulfurCubeHotPush => "entity.sulfur_cube.hot.push",
3142    EntitySulfurCubeSquish => "entity.sulfur_cube.squish",
3143    BlockPotentSulfurNoxiousGas => "block.potent_sulfur.noxious_gas",
3144    EntitySmallSulfurCubeDeath => "entity.small_sulfur_cube.death",
3145    EntitySmallSulfurCubeHurt => "entity.small_sulfur_cube.hurt",
3146    EntitySmallSulfurCubeJump => "entity.small_sulfur_cube.jump",
3147    EntitySmallSulfurCubeSquish => "entity.small_sulfur_cube.squish",
3148    EntitySmallSulfurCubeEat => "entity.small_sulfur_cube.eat",
3149}
3150}
3151
3152registry! {
3153enum StatKind {
3154    Mined => "mined",
3155    Crafted => "crafted",
3156    Used => "used",
3157    Broken => "broken",
3158    PickedUp => "picked_up",
3159    Dropped => "dropped",
3160    Killed => "killed",
3161    KilledBy => "killed_by",
3162    Custom => "custom",
3163}
3164}
3165
3166registry! {
3167enum VillagerProfession {
3168    None => "none",
3169    Armorer => "armorer",
3170    Butcher => "butcher",
3171    Cartographer => "cartographer",
3172    Cleric => "cleric",
3173    Farmer => "farmer",
3174    Fisherman => "fisherman",
3175    Fletcher => "fletcher",
3176    Leatherworker => "leatherworker",
3177    Librarian => "librarian",
3178    Mason => "mason",
3179    Nitwit => "nitwit",
3180    Shepherd => "shepherd",
3181    Toolsmith => "toolsmith",
3182    Weaponsmith => "weaponsmith",
3183}
3184}
3185
3186registry! {
3187enum VillagerKind {
3188    Desert => "desert",
3189    Jungle => "jungle",
3190    Plains => "plains",
3191    Savanna => "savanna",
3192    Snow => "snow",
3193    Swamp => "swamp",
3194    Taiga => "taiga",
3195}
3196}
3197
3198registry! {
3199enum WorldgenBiomeSource {
3200    Fixed => "fixed",
3201    MultiNoise => "multi_noise",
3202    Checkerboard => "checkerboard",
3203    TheEnd => "the_end",
3204}
3205}
3206
3207registry! {
3208enum WorldgenBlockStateProviderKind {
3209    SimpleStateProvider => "simple_state_provider",
3210    WeightedStateProvider => "weighted_state_provider",
3211    NoiseThresholdProvider => "noise_threshold_provider",
3212    NoiseProvider => "noise_provider",
3213    DualNoiseProvider => "dual_noise_provider",
3214    RotatedBlockProvider => "rotated_block_provider",
3215    RandomizedIntStateProvider => "randomized_int_state_provider",
3216    RuleBasedStateProvider => "rule_based_state_provider",
3217}
3218}
3219
3220registry! {
3221enum WorldgenCarver {
3222    Cave => "cave",
3223    NetherCave => "nether_cave",
3224    Canyon => "canyon",
3225}
3226}
3227
3228registry! {
3229enum WorldgenChunkGenerator {
3230    Noise => "noise",
3231    Flat => "flat",
3232    Debug => "debug",
3233}
3234}
3235
3236registry! {
3237enum WorldgenDensityFunctionKind {
3238    BlendAlpha => "blend_alpha",
3239    BlendOffset => "blend_offset",
3240    Beardifier => "beardifier",
3241    OldBlendedNoise => "old_blended_noise",
3242    Interpolated => "interpolated",
3243    FlatCache => "flat_cache",
3244    Cache2d => "cache_2d",
3245    CacheOnce => "cache_once",
3246    CacheAllInCell => "cache_all_in_cell",
3247    BlendDensity => "blend_density",
3248    Noise => "noise",
3249    EndIslands => "end_islands",
3250    ShiftedNoise => "shifted_noise",
3251    RangeChoice => "range_choice",
3252    IntervalSelect => "interval_select",
3253    ShiftA => "shift_a",
3254    ShiftB => "shift_b",
3255    Shift => "shift",
3256    Clamp => "clamp",
3257    Abs => "abs",
3258    Square => "square",
3259    Cube => "cube",
3260    HalfNegative => "half_negative",
3261    QuarterNegative => "quarter_negative",
3262    Invert => "invert",
3263    Squeeze => "squeeze",
3264    Add => "add",
3265    Mul => "mul",
3266    Min => "min",
3267    Max => "max",
3268    Spline => "spline",
3269    Constant => "constant",
3270    YClampedGradient => "y_clamped_gradient",
3271    FindTopSurface => "find_top_surface",
3272}
3273}
3274
3275registry! {
3276enum WorldgenFeature {
3277    NoOp => "no_op",
3278    Tree => "tree",
3279    FallenTree => "fallen_tree",
3280    BlockPile => "block_pile",
3281    SpringFeature => "spring_feature",
3282    ChorusPlant => "chorus_plant",
3283    ReplaceSingleBlock => "replace_single_block",
3284    VoidStartPlatform => "void_start_platform",
3285    DesertWell => "desert_well",
3286    Fossil => "fossil",
3287    HugeRedMushroom => "huge_red_mushroom",
3288    HugeBrownMushroom => "huge_brown_mushroom",
3289    Spike => "spike",
3290    GlowstoneBlob => "glowstone_blob",
3291    FreezeTopLayer => "freeze_top_layer",
3292    Vines => "vines",
3293    BlockColumn => "block_column",
3294    VegetationPatch => "vegetation_patch",
3295    WaterloggedVegetationPatch => "waterlogged_vegetation_patch",
3296    RootSystem => "root_system",
3297    MultifaceGrowth => "multiface_growth",
3298    UnderwaterMagma => "underwater_magma",
3299    MonsterRoom => "monster_room",
3300    BlueIce => "blue_ice",
3301    Iceberg => "iceberg",
3302    BlockBlob => "block_blob",
3303    Disk => "disk",
3304    Lake => "lake",
3305    Ore => "ore",
3306    EndPlatform => "end_platform",
3307    EndSpike => "end_spike",
3308    EndIsland => "end_island",
3309    EndGateway => "end_gateway",
3310    Seagrass => "seagrass",
3311    Kelp => "kelp",
3312    CoralTree => "coral_tree",
3313    CoralMushroom => "coral_mushroom",
3314    CoralClaw => "coral_claw",
3315    SeaPickle => "sea_pickle",
3316    SimpleBlock => "simple_block",
3317    Bamboo => "bamboo",
3318    HugeFungus => "huge_fungus",
3319    NetherForestVegetation => "nether_forest_vegetation",
3320    WeepingVines => "weeping_vines",
3321    TwistingVines => "twisting_vines",
3322    BasaltColumns => "basalt_columns",
3323    DeltaFeature => "delta_feature",
3324    NetherrackReplaceBlobs => "netherrack_replace_blobs",
3325    FillLayer => "fill_layer",
3326    BonusChest => "bonus_chest",
3327    BasaltPillar => "basalt_pillar",
3328    ScatteredOre => "scattered_ore",
3329    RandomSelector => "random_selector",
3330    WeightedRandomSelector => "weighted_random_selector",
3331    SimpleRandomSelector => "simple_random_selector",
3332    RandomBooleanSelector => "random_boolean_selector",
3333    Sequence => "sequence",
3334    Template => "template",
3335    Geode => "geode",
3336    SpeleothemCluster => "speleothem_cluster",
3337    LargeDripstone => "large_dripstone",
3338    Speleothem => "speleothem",
3339    SculkPatch => "sculk_patch",
3340}
3341}
3342
3343registry! {
3344enum WorldgenFeatureSizeKind {
3345    TwoLayersFeatureSize => "two_layers_feature_size",
3346    ThreeLayersFeatureSize => "three_layers_feature_size",
3347}
3348}
3349
3350registry! {
3351enum WorldgenFoliagePlacerKind {
3352    BlobFoliagePlacer => "blob_foliage_placer",
3353    SpruceFoliagePlacer => "spruce_foliage_placer",
3354    PineFoliagePlacer => "pine_foliage_placer",
3355    AcaciaFoliagePlacer => "acacia_foliage_placer",
3356    BushFoliagePlacer => "bush_foliage_placer",
3357    FancyFoliagePlacer => "fancy_foliage_placer",
3358    JungleFoliagePlacer => "jungle_foliage_placer",
3359    MegaPineFoliagePlacer => "mega_pine_foliage_placer",
3360    DarkOakFoliagePlacer => "dark_oak_foliage_placer",
3361    RandomSpreadFoliagePlacer => "random_spread_foliage_placer",
3362    CherryFoliagePlacer => "cherry_foliage_placer",
3363}
3364}
3365
3366registry! {
3367enum WorldgenMaterialCondition {
3368    Biome => "biome",
3369    NoiseThreshold => "noise_threshold",
3370    VerticalGradient => "vertical_gradient",
3371    YAbove => "y_above",
3372    Water => "water",
3373    Temperature => "temperature",
3374    Steep => "steep",
3375    Not => "not",
3376    Hole => "hole",
3377    AbovePreliminarySurface => "above_preliminary_surface",
3378    StoneDepth => "stone_depth",
3379}
3380}
3381
3382registry! {
3383enum WorldgenMaterialRule {
3384    Bandlands => "bandlands",
3385    Block => "block",
3386    Sequence => "sequence",
3387    Condition => "condition",
3388}
3389}
3390
3391registry! {
3392enum WorldgenPlacementModifierKind {
3393    BlockPredicateFilter => "block_predicate_filter",
3394    RarityFilter => "rarity_filter",
3395    SurfaceRelativeThresholdFilter => "surface_relative_threshold_filter",
3396    SurfaceWaterDepthFilter => "surface_water_depth_filter",
3397    Biome => "biome",
3398    Count => "count",
3399    NoiseBasedCount => "noise_based_count",
3400    NoiseThresholdCount => "noise_threshold_count",
3401    CountOnEveryLayer => "count_on_every_layer",
3402    EnvironmentScan => "environment_scan",
3403    Heightmap => "heightmap",
3404    HeightRange => "height_range",
3405    InSquare => "in_square",
3406    RandomOffset => "random_offset",
3407    FixedPlacement => "fixed_placement",
3408}
3409}
3410
3411registry! {
3412enum WorldgenRootPlacerKind {
3413    MangroveRootPlacer => "mangrove_root_placer",
3414}
3415}
3416
3417registry! {
3418enum WorldgenStructurePiece {
3419    Mscorridor => "mscorridor",
3420    Mscrossing => "mscrossing",
3421    Msroom => "msroom",
3422    Msstairs => "msstairs",
3423    Nebcr => "nebcr",
3424    Nebef => "nebef",
3425    Nebs => "nebs",
3426    Neccs => "neccs",
3427    Nectb => "nectb",
3428    Nece => "nece",
3429    Nescsc => "nescsc",
3430    Nesclt => "nesclt",
3431    Nesc => "nesc",
3432    Nescrt => "nescrt",
3433    Necsr => "necsr",
3434    Nemt => "nemt",
3435    Nerc => "nerc",
3436    Nesr => "nesr",
3437    Nestart => "nestart",
3438    Shcc => "shcc",
3439    Shfc => "shfc",
3440    Sh5c => "sh5c",
3441    Shlt => "shlt",
3442    Shli => "shli",
3443    Shpr => "shpr",
3444    Shph => "shph",
3445    Shrt => "shrt",
3446    Shrc => "shrc",
3447    Shsd => "shsd",
3448    Shstart => "shstart",
3449    Shs => "shs",
3450    Shssd => "shssd",
3451    Tejp => "tejp",
3452    Orp => "orp",
3453    Iglu => "iglu",
3454    Rupo => "rupo",
3455    Tesh => "tesh",
3456    Tedp => "tedp",
3457    Omb => "omb",
3458    Omcr => "omcr",
3459    Omdxr => "omdxr",
3460    Omdxyr => "omdxyr",
3461    Omdyr => "omdyr",
3462    Omdyzr => "omdyzr",
3463    Omdzr => "omdzr",
3464    Omentry => "omentry",
3465    Ompenthouse => "ompenthouse",
3466    Omsimple => "omsimple",
3467    Omsimplet => "omsimplet",
3468    Omwr => "omwr",
3469    Ecp => "ecp",
3470    Wmp => "wmp",
3471    Btp => "btp",
3472    Shipwreck => "shipwreck",
3473    Nefos => "nefos",
3474    Jigsaw => "jigsaw",
3475}
3476}
3477
3478registry! {
3479enum WorldgenStructurePlacement {
3480    RandomSpread => "random_spread",
3481    ConcentricRings => "concentric_rings",
3482}
3483}
3484
3485registry! {
3486enum WorldgenStructurePoolElement {
3487    SinglePoolElement => "single_pool_element",
3488    ListPoolElement => "list_pool_element",
3489    FeaturePoolElement => "feature_pool_element",
3490    EmptyPoolElement => "empty_pool_element",
3491    LegacySinglePoolElement => "legacy_single_pool_element",
3492}
3493}
3494
3495registry! {
3496enum WorldgenStructureProcessor {
3497    BlackstoneReplace => "blackstone_replace",
3498    BlockAge => "block_age",
3499    BlockIgnore => "block_ignore",
3500    BlockRot => "block_rot",
3501    Capped => "capped",
3502    Gravity => "gravity",
3503    JigsawReplacement => "jigsaw_replacement",
3504    LavaSubmergedBlock => "lava_submerged_block",
3505    Nop => "nop",
3506    ProtectedBlocks => "protected_blocks",
3507    Rule => "rule",
3508}
3509}
3510
3511registry! {
3512enum WorldgenStructureKind {
3513    BuriedTreasure => "buried_treasure",
3514    DesertPyramid => "desert_pyramid",
3515    EndCity => "end_city",
3516    Fortress => "fortress",
3517    Igloo => "igloo",
3518    Jigsaw => "jigsaw",
3519    JungleTemple => "jungle_temple",
3520    Mineshaft => "mineshaft",
3521    NetherFossil => "nether_fossil",
3522    OceanMonument => "ocean_monument",
3523    OceanRuin => "ocean_ruin",
3524    RuinedPortal => "ruined_portal",
3525    Shipwreck => "shipwreck",
3526    Stronghold => "stronghold",
3527    SwampHut => "swamp_hut",
3528    WoodlandMansion => "woodland_mansion",
3529}
3530}
3531
3532registry! {
3533enum WorldgenTreeDecoratorKind {
3534    TrunkVine => "trunk_vine",
3535    LeaveVine => "leave_vine",
3536    PaleMoss => "pale_moss",
3537    CreakingHeart => "creaking_heart",
3538    Cocoa => "cocoa",
3539    Beehive => "beehive",
3540    AlterGround => "alter_ground",
3541    AttachedToLeaves => "attached_to_leaves",
3542    PlaceOnGround => "place_on_ground",
3543    AttachedToLogs => "attached_to_logs",
3544}
3545}
3546
3547registry! {
3548enum WorldgenTrunkPlacerKind {
3549    StraightTrunkPlacer => "straight_trunk_placer",
3550    ForkingTrunkPlacer => "forking_trunk_placer",
3551    GiantTrunkPlacer => "giant_trunk_placer",
3552    MegaJungleTrunkPlacer => "mega_jungle_trunk_placer",
3553    DarkOakTrunkPlacer => "dark_oak_trunk_placer",
3554    FancyTrunkPlacer => "fancy_trunk_placer",
3555    BendingTrunkPlacer => "bending_trunk_placer",
3556    UpwardsBranchingTrunkPlacer => "upwards_branching_trunk_placer",
3557    CherryTrunkPlacer => "cherry_trunk_placer",
3558}
3559}
3560
3561registry! {
3562enum RuleBlockEntityModifier {
3563    Clear => "clear",
3564    Passthrough => "passthrough",
3565    AppendStatic => "append_static",
3566    AppendLoot => "append_loot",
3567}
3568}
3569
3570registry! {
3571enum CreativeModeTab {
3572    BuildingBlocks => "building_blocks",
3573    ColoredBlocks => "colored_blocks",
3574    NaturalBlocks => "natural_blocks",
3575    FunctionalBlocks => "functional_blocks",
3576    RedstoneBlocks => "redstone_blocks",
3577    Hotbar => "hotbar",
3578    Search => "search",
3579    ToolsAndUtilities => "tools_and_utilities",
3580    Combat => "combat",
3581    FoodAndDrinks => "food_and_drinks",
3582    Ingredients => "ingredients",
3583    SpawnEggs => "spawn_eggs",
3584    OpBlocks => "op_blocks",
3585    Inventory => "inventory",
3586}
3587}
3588
3589registry! {
3590enum MenuKind {
3591    Generic9x1 => "generic_9x1",
3592    Generic9x2 => "generic_9x2",
3593    Generic9x3 => "generic_9x3",
3594    Generic9x4 => "generic_9x4",
3595    Generic9x5 => "generic_9x5",
3596    Generic9x6 => "generic_9x6",
3597    Generic3x3 => "generic_3x3",
3598    Crafter3x3 => "crafter_3x3",
3599    Anvil => "anvil",
3600    Beacon => "beacon",
3601    BlastFurnace => "blast_furnace",
3602    BrewingStand => "brewing_stand",
3603    Crafting => "crafting",
3604    Enchantment => "enchantment",
3605    Furnace => "furnace",
3606    Grindstone => "grindstone",
3607    Hopper => "hopper",
3608    Lectern => "lectern",
3609    Loom => "loom",
3610    Merchant => "merchant",
3611    ShulkerBox => "shulker_box",
3612    Smithing => "smithing",
3613    Smoker => "smoker",
3614    CartographyTable => "cartography_table",
3615    Stonecutter => "stonecutter",
3616}
3617}
3618
3619registry! {
3620/// An enum of every type of block in the game.
3621///
3622/// To represent a block *state*, use [`azalea_block::BlockState`] or
3623/// [`azalea_block::BlockTrait`].
3624///
3625/// [`azalea_block::BlockState`]: https://docs.rs/azalea-block/latest/azalea_block/struct.BlockState.html
3626/// [`azalea_block::BlockTrait`]: https://docs.rs/azalea-block/latest/azalea_block/trait.BlockTrait.html
3627enum BlockKind {
3628    Air => "air",
3629    Stone => "stone",
3630    Granite => "granite",
3631    PolishedGranite => "polished_granite",
3632    Diorite => "diorite",
3633    PolishedDiorite => "polished_diorite",
3634    Andesite => "andesite",
3635    PolishedAndesite => "polished_andesite",
3636    GrassBlock => "grass_block",
3637    Dirt => "dirt",
3638    CoarseDirt => "coarse_dirt",
3639    Podzol => "podzol",
3640    Cobblestone => "cobblestone",
3641    OakPlanks => "oak_planks",
3642    SprucePlanks => "spruce_planks",
3643    BirchPlanks => "birch_planks",
3644    JunglePlanks => "jungle_planks",
3645    AcaciaPlanks => "acacia_planks",
3646    CherryPlanks => "cherry_planks",
3647    DarkOakPlanks => "dark_oak_planks",
3648    PaleOakWood => "pale_oak_wood",
3649    PaleOakPlanks => "pale_oak_planks",
3650    MangrovePlanks => "mangrove_planks",
3651    BambooPlanks => "bamboo_planks",
3652    BambooMosaic => "bamboo_mosaic",
3653    OakSapling => "oak_sapling",
3654    SpruceSapling => "spruce_sapling",
3655    BirchSapling => "birch_sapling",
3656    JungleSapling => "jungle_sapling",
3657    AcaciaSapling => "acacia_sapling",
3658    CherrySapling => "cherry_sapling",
3659    DarkOakSapling => "dark_oak_sapling",
3660    PaleOakSapling => "pale_oak_sapling",
3661    MangrovePropagule => "mangrove_propagule",
3662    Bedrock => "bedrock",
3663    Water => "water",
3664    Lava => "lava",
3665    Sand => "sand",
3666    SuspiciousSand => "suspicious_sand",
3667    RedSand => "red_sand",
3668    Gravel => "gravel",
3669    SuspiciousGravel => "suspicious_gravel",
3670    GoldOre => "gold_ore",
3671    DeepslateGoldOre => "deepslate_gold_ore",
3672    IronOre => "iron_ore",
3673    DeepslateIronOre => "deepslate_iron_ore",
3674    CoalOre => "coal_ore",
3675    DeepslateCoalOre => "deepslate_coal_ore",
3676    NetherGoldOre => "nether_gold_ore",
3677    OakLog => "oak_log",
3678    SpruceLog => "spruce_log",
3679    BirchLog => "birch_log",
3680    JungleLog => "jungle_log",
3681    AcaciaLog => "acacia_log",
3682    CherryLog => "cherry_log",
3683    DarkOakLog => "dark_oak_log",
3684    PaleOakLog => "pale_oak_log",
3685    MangroveLog => "mangrove_log",
3686    MangroveRoots => "mangrove_roots",
3687    MuddyMangroveRoots => "muddy_mangrove_roots",
3688    BambooBlock => "bamboo_block",
3689    StrippedSpruceLog => "stripped_spruce_log",
3690    StrippedBirchLog => "stripped_birch_log",
3691    StrippedJungleLog => "stripped_jungle_log",
3692    StrippedAcaciaLog => "stripped_acacia_log",
3693    StrippedCherryLog => "stripped_cherry_log",
3694    StrippedDarkOakLog => "stripped_dark_oak_log",
3695    StrippedPaleOakLog => "stripped_pale_oak_log",
3696    StrippedOakLog => "stripped_oak_log",
3697    StrippedMangroveLog => "stripped_mangrove_log",
3698    StrippedBambooBlock => "stripped_bamboo_block",
3699    OakWood => "oak_wood",
3700    SpruceWood => "spruce_wood",
3701    BirchWood => "birch_wood",
3702    JungleWood => "jungle_wood",
3703    AcaciaWood => "acacia_wood",
3704    CherryWood => "cherry_wood",
3705    DarkOakWood => "dark_oak_wood",
3706    MangroveWood => "mangrove_wood",
3707    StrippedOakWood => "stripped_oak_wood",
3708    StrippedSpruceWood => "stripped_spruce_wood",
3709    StrippedBirchWood => "stripped_birch_wood",
3710    StrippedJungleWood => "stripped_jungle_wood",
3711    StrippedAcaciaWood => "stripped_acacia_wood",
3712    StrippedCherryWood => "stripped_cherry_wood",
3713    StrippedDarkOakWood => "stripped_dark_oak_wood",
3714    StrippedPaleOakWood => "stripped_pale_oak_wood",
3715    StrippedMangroveWood => "stripped_mangrove_wood",
3716    OakLeaves => "oak_leaves",
3717    SpruceLeaves => "spruce_leaves",
3718    BirchLeaves => "birch_leaves",
3719    JungleLeaves => "jungle_leaves",
3720    AcaciaLeaves => "acacia_leaves",
3721    CherryLeaves => "cherry_leaves",
3722    DarkOakLeaves => "dark_oak_leaves",
3723    PaleOakLeaves => "pale_oak_leaves",
3724    MangroveLeaves => "mangrove_leaves",
3725    AzaleaLeaves => "azalea_leaves",
3726    FloweringAzaleaLeaves => "flowering_azalea_leaves",
3727    Sponge => "sponge",
3728    WetSponge => "wet_sponge",
3729    Glass => "glass",
3730    LapisOre => "lapis_ore",
3731    DeepslateLapisOre => "deepslate_lapis_ore",
3732    LapisBlock => "lapis_block",
3733    Dispenser => "dispenser",
3734    Sandstone => "sandstone",
3735    ChiseledSandstone => "chiseled_sandstone",
3736    CutSandstone => "cut_sandstone",
3737    NoteBlock => "note_block",
3738    WhiteBed => "white_bed",
3739    OrangeBed => "orange_bed",
3740    MagentaBed => "magenta_bed",
3741    LightBlueBed => "light_blue_bed",
3742    YellowBed => "yellow_bed",
3743    LimeBed => "lime_bed",
3744    PinkBed => "pink_bed",
3745    GrayBed => "gray_bed",
3746    LightGrayBed => "light_gray_bed",
3747    CyanBed => "cyan_bed",
3748    PurpleBed => "purple_bed",
3749    BlueBed => "blue_bed",
3750    BrownBed => "brown_bed",
3751    GreenBed => "green_bed",
3752    RedBed => "red_bed",
3753    BlackBed => "black_bed",
3754    PoweredRail => "powered_rail",
3755    DetectorRail => "detector_rail",
3756    StickyPiston => "sticky_piston",
3757    Cobweb => "cobweb",
3758    ShortGrass => "short_grass",
3759    Fern => "fern",
3760    DeadBush => "dead_bush",
3761    Bush => "bush",
3762    ShortDryGrass => "short_dry_grass",
3763    TallDryGrass => "tall_dry_grass",
3764    Seagrass => "seagrass",
3765    TallSeagrass => "tall_seagrass",
3766    Piston => "piston",
3767    PistonHead => "piston_head",
3768    WhiteWool => "white_wool",
3769    OrangeWool => "orange_wool",
3770    MagentaWool => "magenta_wool",
3771    LightBlueWool => "light_blue_wool",
3772    YellowWool => "yellow_wool",
3773    LimeWool => "lime_wool",
3774    PinkWool => "pink_wool",
3775    GrayWool => "gray_wool",
3776    LightGrayWool => "light_gray_wool",
3777    CyanWool => "cyan_wool",
3778    PurpleWool => "purple_wool",
3779    BlueWool => "blue_wool",
3780    BrownWool => "brown_wool",
3781    GreenWool => "green_wool",
3782    RedWool => "red_wool",
3783    BlackWool => "black_wool",
3784    MovingPiston => "moving_piston",
3785    Dandelion => "dandelion",
3786    GoldenDandelion => "golden_dandelion",
3787    Torchflower => "torchflower",
3788    Poppy => "poppy",
3789    BlueOrchid => "blue_orchid",
3790    Allium => "allium",
3791    AzureBluet => "azure_bluet",
3792    RedTulip => "red_tulip",
3793    OrangeTulip => "orange_tulip",
3794    WhiteTulip => "white_tulip",
3795    PinkTulip => "pink_tulip",
3796    OxeyeDaisy => "oxeye_daisy",
3797    Cornflower => "cornflower",
3798    WitherRose => "wither_rose",
3799    LilyOfTheValley => "lily_of_the_valley",
3800    BrownMushroom => "brown_mushroom",
3801    RedMushroom => "red_mushroom",
3802    GoldBlock => "gold_block",
3803    IronBlock => "iron_block",
3804    Bricks => "bricks",
3805    Tnt => "tnt",
3806    Bookshelf => "bookshelf",
3807    ChiseledBookshelf => "chiseled_bookshelf",
3808    AcaciaShelf => "acacia_shelf",
3809    BambooShelf => "bamboo_shelf",
3810    BirchShelf => "birch_shelf",
3811    CherryShelf => "cherry_shelf",
3812    CrimsonShelf => "crimson_shelf",
3813    DarkOakShelf => "dark_oak_shelf",
3814    JungleShelf => "jungle_shelf",
3815    MangroveShelf => "mangrove_shelf",
3816    OakShelf => "oak_shelf",
3817    PaleOakShelf => "pale_oak_shelf",
3818    SpruceShelf => "spruce_shelf",
3819    WarpedShelf => "warped_shelf",
3820    MossyCobblestone => "mossy_cobblestone",
3821    Obsidian => "obsidian",
3822    Torch => "torch",
3823    WallTorch => "wall_torch",
3824    Fire => "fire",
3825    SoulFire => "soul_fire",
3826    Spawner => "spawner",
3827    CreakingHeart => "creaking_heart",
3828    OakStairs => "oak_stairs",
3829    Chest => "chest",
3830    RedstoneWire => "redstone_wire",
3831    DiamondOre => "diamond_ore",
3832    DeepslateDiamondOre => "deepslate_diamond_ore",
3833    DiamondBlock => "diamond_block",
3834    CraftingTable => "crafting_table",
3835    Wheat => "wheat",
3836    Farmland => "farmland",
3837    Furnace => "furnace",
3838    OakSign => "oak_sign",
3839    SpruceSign => "spruce_sign",
3840    BirchSign => "birch_sign",
3841    AcaciaSign => "acacia_sign",
3842    CherrySign => "cherry_sign",
3843    JungleSign => "jungle_sign",
3844    DarkOakSign => "dark_oak_sign",
3845    PaleOakSign => "pale_oak_sign",
3846    MangroveSign => "mangrove_sign",
3847    BambooSign => "bamboo_sign",
3848    OakDoor => "oak_door",
3849    Ladder => "ladder",
3850    Rail => "rail",
3851    CobblestoneStairs => "cobblestone_stairs",
3852    OakWallSign => "oak_wall_sign",
3853    SpruceWallSign => "spruce_wall_sign",
3854    BirchWallSign => "birch_wall_sign",
3855    AcaciaWallSign => "acacia_wall_sign",
3856    CherryWallSign => "cherry_wall_sign",
3857    JungleWallSign => "jungle_wall_sign",
3858    DarkOakWallSign => "dark_oak_wall_sign",
3859    PaleOakWallSign => "pale_oak_wall_sign",
3860    MangroveWallSign => "mangrove_wall_sign",
3861    BambooWallSign => "bamboo_wall_sign",
3862    OakHangingSign => "oak_hanging_sign",
3863    SpruceHangingSign => "spruce_hanging_sign",
3864    BirchHangingSign => "birch_hanging_sign",
3865    AcaciaHangingSign => "acacia_hanging_sign",
3866    CherryHangingSign => "cherry_hanging_sign",
3867    JungleHangingSign => "jungle_hanging_sign",
3868    DarkOakHangingSign => "dark_oak_hanging_sign",
3869    PaleOakHangingSign => "pale_oak_hanging_sign",
3870    CrimsonHangingSign => "crimson_hanging_sign",
3871    WarpedHangingSign => "warped_hanging_sign",
3872    MangroveHangingSign => "mangrove_hanging_sign",
3873    BambooHangingSign => "bamboo_hanging_sign",
3874    OakWallHangingSign => "oak_wall_hanging_sign",
3875    SpruceWallHangingSign => "spruce_wall_hanging_sign",
3876    BirchWallHangingSign => "birch_wall_hanging_sign",
3877    AcaciaWallHangingSign => "acacia_wall_hanging_sign",
3878    CherryWallHangingSign => "cherry_wall_hanging_sign",
3879    JungleWallHangingSign => "jungle_wall_hanging_sign",
3880    DarkOakWallHangingSign => "dark_oak_wall_hanging_sign",
3881    PaleOakWallHangingSign => "pale_oak_wall_hanging_sign",
3882    MangroveWallHangingSign => "mangrove_wall_hanging_sign",
3883    CrimsonWallHangingSign => "crimson_wall_hanging_sign",
3884    WarpedWallHangingSign => "warped_wall_hanging_sign",
3885    BambooWallHangingSign => "bamboo_wall_hanging_sign",
3886    Lever => "lever",
3887    StonePressurePlate => "stone_pressure_plate",
3888    IronDoor => "iron_door",
3889    OakPressurePlate => "oak_pressure_plate",
3890    SprucePressurePlate => "spruce_pressure_plate",
3891    BirchPressurePlate => "birch_pressure_plate",
3892    JunglePressurePlate => "jungle_pressure_plate",
3893    AcaciaPressurePlate => "acacia_pressure_plate",
3894    CherryPressurePlate => "cherry_pressure_plate",
3895    DarkOakPressurePlate => "dark_oak_pressure_plate",
3896    PaleOakPressurePlate => "pale_oak_pressure_plate",
3897    MangrovePressurePlate => "mangrove_pressure_plate",
3898    BambooPressurePlate => "bamboo_pressure_plate",
3899    RedstoneOre => "redstone_ore",
3900    DeepslateRedstoneOre => "deepslate_redstone_ore",
3901    RedstoneTorch => "redstone_torch",
3902    RedstoneWallTorch => "redstone_wall_torch",
3903    StoneButton => "stone_button",
3904    Snow => "snow",
3905    Ice => "ice",
3906    SnowBlock => "snow_block",
3907    Cactus => "cactus",
3908    CactusFlower => "cactus_flower",
3909    Clay => "clay",
3910    SugarCane => "sugar_cane",
3911    Jukebox => "jukebox",
3912    OakFence => "oak_fence",
3913    Netherrack => "netherrack",
3914    SoulSand => "soul_sand",
3915    SoulSoil => "soul_soil",
3916    Basalt => "basalt",
3917    PolishedBasalt => "polished_basalt",
3918    SoulTorch => "soul_torch",
3919    SoulWallTorch => "soul_wall_torch",
3920    CopperTorch => "copper_torch",
3921    CopperWallTorch => "copper_wall_torch",
3922    Glowstone => "glowstone",
3923    NetherPortal => "nether_portal",
3924    CarvedPumpkin => "carved_pumpkin",
3925    JackOLantern => "jack_o_lantern",
3926    Cake => "cake",
3927    Repeater => "repeater",
3928    WhiteStainedGlass => "white_stained_glass",
3929    OrangeStainedGlass => "orange_stained_glass",
3930    MagentaStainedGlass => "magenta_stained_glass",
3931    LightBlueStainedGlass => "light_blue_stained_glass",
3932    YellowStainedGlass => "yellow_stained_glass",
3933    LimeStainedGlass => "lime_stained_glass",
3934    PinkStainedGlass => "pink_stained_glass",
3935    GrayStainedGlass => "gray_stained_glass",
3936    LightGrayStainedGlass => "light_gray_stained_glass",
3937    CyanStainedGlass => "cyan_stained_glass",
3938    PurpleStainedGlass => "purple_stained_glass",
3939    BlueStainedGlass => "blue_stained_glass",
3940    BrownStainedGlass => "brown_stained_glass",
3941    GreenStainedGlass => "green_stained_glass",
3942    RedStainedGlass => "red_stained_glass",
3943    BlackStainedGlass => "black_stained_glass",
3944    OakTrapdoor => "oak_trapdoor",
3945    SpruceTrapdoor => "spruce_trapdoor",
3946    BirchTrapdoor => "birch_trapdoor",
3947    JungleTrapdoor => "jungle_trapdoor",
3948    AcaciaTrapdoor => "acacia_trapdoor",
3949    CherryTrapdoor => "cherry_trapdoor",
3950    DarkOakTrapdoor => "dark_oak_trapdoor",
3951    PaleOakTrapdoor => "pale_oak_trapdoor",
3952    MangroveTrapdoor => "mangrove_trapdoor",
3953    BambooTrapdoor => "bamboo_trapdoor",
3954    StoneBricks => "stone_bricks",
3955    MossyStoneBricks => "mossy_stone_bricks",
3956    CrackedStoneBricks => "cracked_stone_bricks",
3957    ChiseledStoneBricks => "chiseled_stone_bricks",
3958    PackedMud => "packed_mud",
3959    MudBricks => "mud_bricks",
3960    InfestedStone => "infested_stone",
3961    InfestedCobblestone => "infested_cobblestone",
3962    InfestedStoneBricks => "infested_stone_bricks",
3963    InfestedMossyStoneBricks => "infested_mossy_stone_bricks",
3964    InfestedCrackedStoneBricks => "infested_cracked_stone_bricks",
3965    InfestedChiseledStoneBricks => "infested_chiseled_stone_bricks",
3966    BrownMushroomBlock => "brown_mushroom_block",
3967    RedMushroomBlock => "red_mushroom_block",
3968    MushroomStem => "mushroom_stem",
3969    IronBars => "iron_bars",
3970    CopperBars => "copper_bars",
3971    ExposedCopperBars => "exposed_copper_bars",
3972    WeatheredCopperBars => "weathered_copper_bars",
3973    OxidizedCopperBars => "oxidized_copper_bars",
3974    WaxedCopperBars => "waxed_copper_bars",
3975    WaxedExposedCopperBars => "waxed_exposed_copper_bars",
3976    WaxedWeatheredCopperBars => "waxed_weathered_copper_bars",
3977    WaxedOxidizedCopperBars => "waxed_oxidized_copper_bars",
3978    IronChain => "iron_chain",
3979    CopperChain => "copper_chain",
3980    ExposedCopperChain => "exposed_copper_chain",
3981    WeatheredCopperChain => "weathered_copper_chain",
3982    OxidizedCopperChain => "oxidized_copper_chain",
3983    WaxedCopperChain => "waxed_copper_chain",
3984    WaxedExposedCopperChain => "waxed_exposed_copper_chain",
3985    WaxedWeatheredCopperChain => "waxed_weathered_copper_chain",
3986    WaxedOxidizedCopperChain => "waxed_oxidized_copper_chain",
3987    GlassPane => "glass_pane",
3988    Pumpkin => "pumpkin",
3989    Melon => "melon",
3990    AttachedPumpkinStem => "attached_pumpkin_stem",
3991    AttachedMelonStem => "attached_melon_stem",
3992    PumpkinStem => "pumpkin_stem",
3993    MelonStem => "melon_stem",
3994    Vine => "vine",
3995    GlowLichen => "glow_lichen",
3996    ResinClump => "resin_clump",
3997    OakFenceGate => "oak_fence_gate",
3998    BrickStairs => "brick_stairs",
3999    StoneBrickStairs => "stone_brick_stairs",
4000    MudBrickStairs => "mud_brick_stairs",
4001    Mycelium => "mycelium",
4002    LilyPad => "lily_pad",
4003    ResinBlock => "resin_block",
4004    ResinBricks => "resin_bricks",
4005    ResinBrickStairs => "resin_brick_stairs",
4006    ResinBrickSlab => "resin_brick_slab",
4007    ResinBrickWall => "resin_brick_wall",
4008    ChiseledResinBricks => "chiseled_resin_bricks",
4009    NetherBricks => "nether_bricks",
4010    NetherBrickFence => "nether_brick_fence",
4011    NetherBrickStairs => "nether_brick_stairs",
4012    NetherWart => "nether_wart",
4013    EnchantingTable => "enchanting_table",
4014    BrewingStand => "brewing_stand",
4015    Cauldron => "cauldron",
4016    WaterCauldron => "water_cauldron",
4017    LavaCauldron => "lava_cauldron",
4018    PowderSnowCauldron => "powder_snow_cauldron",
4019    EndPortal => "end_portal",
4020    EndPortalFrame => "end_portal_frame",
4021    EndStone => "end_stone",
4022    DragonEgg => "dragon_egg",
4023    RedstoneLamp => "redstone_lamp",
4024    Cocoa => "cocoa",
4025    SandstoneStairs => "sandstone_stairs",
4026    EmeraldOre => "emerald_ore",
4027    DeepslateEmeraldOre => "deepslate_emerald_ore",
4028    EnderChest => "ender_chest",
4029    TripwireHook => "tripwire_hook",
4030    Tripwire => "tripwire",
4031    EmeraldBlock => "emerald_block",
4032    SpruceStairs => "spruce_stairs",
4033    BirchStairs => "birch_stairs",
4034    JungleStairs => "jungle_stairs",
4035    CommandBlock => "command_block",
4036    Beacon => "beacon",
4037    CobblestoneWall => "cobblestone_wall",
4038    MossyCobblestoneWall => "mossy_cobblestone_wall",
4039    FlowerPot => "flower_pot",
4040    PottedTorchflower => "potted_torchflower",
4041    PottedOakSapling => "potted_oak_sapling",
4042    PottedSpruceSapling => "potted_spruce_sapling",
4043    PottedBirchSapling => "potted_birch_sapling",
4044    PottedJungleSapling => "potted_jungle_sapling",
4045    PottedAcaciaSapling => "potted_acacia_sapling",
4046    PottedCherrySapling => "potted_cherry_sapling",
4047    PottedDarkOakSapling => "potted_dark_oak_sapling",
4048    PottedPaleOakSapling => "potted_pale_oak_sapling",
4049    PottedMangrovePropagule => "potted_mangrove_propagule",
4050    PottedFern => "potted_fern",
4051    PottedDandelion => "potted_dandelion",
4052    PottedGoldenDandelion => "potted_golden_dandelion",
4053    PottedPoppy => "potted_poppy",
4054    PottedBlueOrchid => "potted_blue_orchid",
4055    PottedAllium => "potted_allium",
4056    PottedAzureBluet => "potted_azure_bluet",
4057    PottedRedTulip => "potted_red_tulip",
4058    PottedOrangeTulip => "potted_orange_tulip",
4059    PottedWhiteTulip => "potted_white_tulip",
4060    PottedPinkTulip => "potted_pink_tulip",
4061    PottedOxeyeDaisy => "potted_oxeye_daisy",
4062    PottedCornflower => "potted_cornflower",
4063    PottedLilyOfTheValley => "potted_lily_of_the_valley",
4064    PottedWitherRose => "potted_wither_rose",
4065    PottedRedMushroom => "potted_red_mushroom",
4066    PottedBrownMushroom => "potted_brown_mushroom",
4067    PottedDeadBush => "potted_dead_bush",
4068    PottedCactus => "potted_cactus",
4069    Carrots => "carrots",
4070    Potatoes => "potatoes",
4071    OakButton => "oak_button",
4072    SpruceButton => "spruce_button",
4073    BirchButton => "birch_button",
4074    JungleButton => "jungle_button",
4075    AcaciaButton => "acacia_button",
4076    CherryButton => "cherry_button",
4077    DarkOakButton => "dark_oak_button",
4078    PaleOakButton => "pale_oak_button",
4079    MangroveButton => "mangrove_button",
4080    BambooButton => "bamboo_button",
4081    SkeletonSkull => "skeleton_skull",
4082    SkeletonWallSkull => "skeleton_wall_skull",
4083    WitherSkeletonSkull => "wither_skeleton_skull",
4084    WitherSkeletonWallSkull => "wither_skeleton_wall_skull",
4085    ZombieHead => "zombie_head",
4086    ZombieWallHead => "zombie_wall_head",
4087    PlayerHead => "player_head",
4088    PlayerWallHead => "player_wall_head",
4089    CreeperHead => "creeper_head",
4090    CreeperWallHead => "creeper_wall_head",
4091    DragonHead => "dragon_head",
4092    DragonWallHead => "dragon_wall_head",
4093    PiglinHead => "piglin_head",
4094    PiglinWallHead => "piglin_wall_head",
4095    Anvil => "anvil",
4096    ChippedAnvil => "chipped_anvil",
4097    DamagedAnvil => "damaged_anvil",
4098    TrappedChest => "trapped_chest",
4099    LightWeightedPressurePlate => "light_weighted_pressure_plate",
4100    HeavyWeightedPressurePlate => "heavy_weighted_pressure_plate",
4101    Comparator => "comparator",
4102    DaylightDetector => "daylight_detector",
4103    RedstoneBlock => "redstone_block",
4104    NetherQuartzOre => "nether_quartz_ore",
4105    Hopper => "hopper",
4106    QuartzBlock => "quartz_block",
4107    ChiseledQuartzBlock => "chiseled_quartz_block",
4108    QuartzPillar => "quartz_pillar",
4109    QuartzStairs => "quartz_stairs",
4110    ActivatorRail => "activator_rail",
4111    Dropper => "dropper",
4112    WhiteTerracotta => "white_terracotta",
4113    OrangeTerracotta => "orange_terracotta",
4114    MagentaTerracotta => "magenta_terracotta",
4115    LightBlueTerracotta => "light_blue_terracotta",
4116    YellowTerracotta => "yellow_terracotta",
4117    LimeTerracotta => "lime_terracotta",
4118    PinkTerracotta => "pink_terracotta",
4119    GrayTerracotta => "gray_terracotta",
4120    LightGrayTerracotta => "light_gray_terracotta",
4121    CyanTerracotta => "cyan_terracotta",
4122    PurpleTerracotta => "purple_terracotta",
4123    BlueTerracotta => "blue_terracotta",
4124    BrownTerracotta => "brown_terracotta",
4125    GreenTerracotta => "green_terracotta",
4126    RedTerracotta => "red_terracotta",
4127    BlackTerracotta => "black_terracotta",
4128    WhiteStainedGlassPane => "white_stained_glass_pane",
4129    OrangeStainedGlassPane => "orange_stained_glass_pane",
4130    MagentaStainedGlassPane => "magenta_stained_glass_pane",
4131    LightBlueStainedGlassPane => "light_blue_stained_glass_pane",
4132    YellowStainedGlassPane => "yellow_stained_glass_pane",
4133    LimeStainedGlassPane => "lime_stained_glass_pane",
4134    PinkStainedGlassPane => "pink_stained_glass_pane",
4135    GrayStainedGlassPane => "gray_stained_glass_pane",
4136    LightGrayStainedGlassPane => "light_gray_stained_glass_pane",
4137    CyanStainedGlassPane => "cyan_stained_glass_pane",
4138    PurpleStainedGlassPane => "purple_stained_glass_pane",
4139    BlueStainedGlassPane => "blue_stained_glass_pane",
4140    BrownStainedGlassPane => "brown_stained_glass_pane",
4141    GreenStainedGlassPane => "green_stained_glass_pane",
4142    RedStainedGlassPane => "red_stained_glass_pane",
4143    BlackStainedGlassPane => "black_stained_glass_pane",
4144    AcaciaStairs => "acacia_stairs",
4145    CherryStairs => "cherry_stairs",
4146    DarkOakStairs => "dark_oak_stairs",
4147    PaleOakStairs => "pale_oak_stairs",
4148    MangroveStairs => "mangrove_stairs",
4149    BambooStairs => "bamboo_stairs",
4150    BambooMosaicStairs => "bamboo_mosaic_stairs",
4151    SlimeBlock => "slime_block",
4152    Barrier => "barrier",
4153    Light => "light",
4154    IronTrapdoor => "iron_trapdoor",
4155    Prismarine => "prismarine",
4156    PrismarineBricks => "prismarine_bricks",
4157    DarkPrismarine => "dark_prismarine",
4158    PrismarineStairs => "prismarine_stairs",
4159    PrismarineBrickStairs => "prismarine_brick_stairs",
4160    DarkPrismarineStairs => "dark_prismarine_stairs",
4161    PrismarineSlab => "prismarine_slab",
4162    PrismarineBrickSlab => "prismarine_brick_slab",
4163    DarkPrismarineSlab => "dark_prismarine_slab",
4164    SeaLantern => "sea_lantern",
4165    HayBlock => "hay_block",
4166    WhiteCarpet => "white_carpet",
4167    OrangeCarpet => "orange_carpet",
4168    MagentaCarpet => "magenta_carpet",
4169    LightBlueCarpet => "light_blue_carpet",
4170    YellowCarpet => "yellow_carpet",
4171    LimeCarpet => "lime_carpet",
4172    PinkCarpet => "pink_carpet",
4173    GrayCarpet => "gray_carpet",
4174    LightGrayCarpet => "light_gray_carpet",
4175    CyanCarpet => "cyan_carpet",
4176    PurpleCarpet => "purple_carpet",
4177    BlueCarpet => "blue_carpet",
4178    BrownCarpet => "brown_carpet",
4179    GreenCarpet => "green_carpet",
4180    RedCarpet => "red_carpet",
4181    BlackCarpet => "black_carpet",
4182    Terracotta => "terracotta",
4183    CoalBlock => "coal_block",
4184    PackedIce => "packed_ice",
4185    Sunflower => "sunflower",
4186    Lilac => "lilac",
4187    RoseBush => "rose_bush",
4188    Peony => "peony",
4189    TallGrass => "tall_grass",
4190    LargeFern => "large_fern",
4191    WhiteBanner => "white_banner",
4192    OrangeBanner => "orange_banner",
4193    MagentaBanner => "magenta_banner",
4194    LightBlueBanner => "light_blue_banner",
4195    YellowBanner => "yellow_banner",
4196    LimeBanner => "lime_banner",
4197    PinkBanner => "pink_banner",
4198    GrayBanner => "gray_banner",
4199    LightGrayBanner => "light_gray_banner",
4200    CyanBanner => "cyan_banner",
4201    PurpleBanner => "purple_banner",
4202    BlueBanner => "blue_banner",
4203    BrownBanner => "brown_banner",
4204    GreenBanner => "green_banner",
4205    RedBanner => "red_banner",
4206    BlackBanner => "black_banner",
4207    WhiteWallBanner => "white_wall_banner",
4208    OrangeWallBanner => "orange_wall_banner",
4209    MagentaWallBanner => "magenta_wall_banner",
4210    LightBlueWallBanner => "light_blue_wall_banner",
4211    YellowWallBanner => "yellow_wall_banner",
4212    LimeWallBanner => "lime_wall_banner",
4213    PinkWallBanner => "pink_wall_banner",
4214    GrayWallBanner => "gray_wall_banner",
4215    LightGrayWallBanner => "light_gray_wall_banner",
4216    CyanWallBanner => "cyan_wall_banner",
4217    PurpleWallBanner => "purple_wall_banner",
4218    BlueWallBanner => "blue_wall_banner",
4219    BrownWallBanner => "brown_wall_banner",
4220    GreenWallBanner => "green_wall_banner",
4221    RedWallBanner => "red_wall_banner",
4222    BlackWallBanner => "black_wall_banner",
4223    RedSandstone => "red_sandstone",
4224    ChiseledRedSandstone => "chiseled_red_sandstone",
4225    CutRedSandstone => "cut_red_sandstone",
4226    RedSandstoneStairs => "red_sandstone_stairs",
4227    OakSlab => "oak_slab",
4228    SpruceSlab => "spruce_slab",
4229    BirchSlab => "birch_slab",
4230    JungleSlab => "jungle_slab",
4231    AcaciaSlab => "acacia_slab",
4232    CherrySlab => "cherry_slab",
4233    DarkOakSlab => "dark_oak_slab",
4234    PaleOakSlab => "pale_oak_slab",
4235    MangroveSlab => "mangrove_slab",
4236    BambooSlab => "bamboo_slab",
4237    BambooMosaicSlab => "bamboo_mosaic_slab",
4238    StoneSlab => "stone_slab",
4239    SmoothStoneSlab => "smooth_stone_slab",
4240    SandstoneSlab => "sandstone_slab",
4241    CutSandstoneSlab => "cut_sandstone_slab",
4242    PetrifiedOakSlab => "petrified_oak_slab",
4243    CobblestoneSlab => "cobblestone_slab",
4244    BrickSlab => "brick_slab",
4245    StoneBrickSlab => "stone_brick_slab",
4246    MudBrickSlab => "mud_brick_slab",
4247    NetherBrickSlab => "nether_brick_slab",
4248    QuartzSlab => "quartz_slab",
4249    RedSandstoneSlab => "red_sandstone_slab",
4250    CutRedSandstoneSlab => "cut_red_sandstone_slab",
4251    PurpurSlab => "purpur_slab",
4252    SmoothStone => "smooth_stone",
4253    SmoothSandstone => "smooth_sandstone",
4254    SmoothQuartz => "smooth_quartz",
4255    SmoothRedSandstone => "smooth_red_sandstone",
4256    SpruceFenceGate => "spruce_fence_gate",
4257    BirchFenceGate => "birch_fence_gate",
4258    JungleFenceGate => "jungle_fence_gate",
4259    AcaciaFenceGate => "acacia_fence_gate",
4260    CherryFenceGate => "cherry_fence_gate",
4261    DarkOakFenceGate => "dark_oak_fence_gate",
4262    PaleOakFenceGate => "pale_oak_fence_gate",
4263    MangroveFenceGate => "mangrove_fence_gate",
4264    BambooFenceGate => "bamboo_fence_gate",
4265    SpruceFence => "spruce_fence",
4266    BirchFence => "birch_fence",
4267    JungleFence => "jungle_fence",
4268    AcaciaFence => "acacia_fence",
4269    CherryFence => "cherry_fence",
4270    DarkOakFence => "dark_oak_fence",
4271    PaleOakFence => "pale_oak_fence",
4272    MangroveFence => "mangrove_fence",
4273    BambooFence => "bamboo_fence",
4274    SpruceDoor => "spruce_door",
4275    BirchDoor => "birch_door",
4276    JungleDoor => "jungle_door",
4277    AcaciaDoor => "acacia_door",
4278    CherryDoor => "cherry_door",
4279    DarkOakDoor => "dark_oak_door",
4280    PaleOakDoor => "pale_oak_door",
4281    MangroveDoor => "mangrove_door",
4282    BambooDoor => "bamboo_door",
4283    EndRod => "end_rod",
4284    ChorusPlant => "chorus_plant",
4285    ChorusFlower => "chorus_flower",
4286    PurpurBlock => "purpur_block",
4287    PurpurPillar => "purpur_pillar",
4288    PurpurStairs => "purpur_stairs",
4289    EndStoneBricks => "end_stone_bricks",
4290    TorchflowerCrop => "torchflower_crop",
4291    PitcherCrop => "pitcher_crop",
4292    PitcherPlant => "pitcher_plant",
4293    Beetroots => "beetroots",
4294    DirtPath => "dirt_path",
4295    EndGateway => "end_gateway",
4296    RepeatingCommandBlock => "repeating_command_block",
4297    ChainCommandBlock => "chain_command_block",
4298    FrostedIce => "frosted_ice",
4299    MagmaBlock => "magma_block",
4300    NetherWartBlock => "nether_wart_block",
4301    RedNetherBricks => "red_nether_bricks",
4302    BoneBlock => "bone_block",
4303    StructureVoid => "structure_void",
4304    Observer => "observer",
4305    ShulkerBox => "shulker_box",
4306    WhiteShulkerBox => "white_shulker_box",
4307    OrangeShulkerBox => "orange_shulker_box",
4308    MagentaShulkerBox => "magenta_shulker_box",
4309    LightBlueShulkerBox => "light_blue_shulker_box",
4310    YellowShulkerBox => "yellow_shulker_box",
4311    LimeShulkerBox => "lime_shulker_box",
4312    PinkShulkerBox => "pink_shulker_box",
4313    GrayShulkerBox => "gray_shulker_box",
4314    LightGrayShulkerBox => "light_gray_shulker_box",
4315    CyanShulkerBox => "cyan_shulker_box",
4316    PurpleShulkerBox => "purple_shulker_box",
4317    BlueShulkerBox => "blue_shulker_box",
4318    BrownShulkerBox => "brown_shulker_box",
4319    GreenShulkerBox => "green_shulker_box",
4320    RedShulkerBox => "red_shulker_box",
4321    BlackShulkerBox => "black_shulker_box",
4322    WhiteGlazedTerracotta => "white_glazed_terracotta",
4323    OrangeGlazedTerracotta => "orange_glazed_terracotta",
4324    MagentaGlazedTerracotta => "magenta_glazed_terracotta",
4325    LightBlueGlazedTerracotta => "light_blue_glazed_terracotta",
4326    YellowGlazedTerracotta => "yellow_glazed_terracotta",
4327    LimeGlazedTerracotta => "lime_glazed_terracotta",
4328    PinkGlazedTerracotta => "pink_glazed_terracotta",
4329    GrayGlazedTerracotta => "gray_glazed_terracotta",
4330    LightGrayGlazedTerracotta => "light_gray_glazed_terracotta",
4331    CyanGlazedTerracotta => "cyan_glazed_terracotta",
4332    PurpleGlazedTerracotta => "purple_glazed_terracotta",
4333    BlueGlazedTerracotta => "blue_glazed_terracotta",
4334    BrownGlazedTerracotta => "brown_glazed_terracotta",
4335    GreenGlazedTerracotta => "green_glazed_terracotta",
4336    RedGlazedTerracotta => "red_glazed_terracotta",
4337    BlackGlazedTerracotta => "black_glazed_terracotta",
4338    WhiteConcrete => "white_concrete",
4339    OrangeConcrete => "orange_concrete",
4340    MagentaConcrete => "magenta_concrete",
4341    LightBlueConcrete => "light_blue_concrete",
4342    YellowConcrete => "yellow_concrete",
4343    LimeConcrete => "lime_concrete",
4344    PinkConcrete => "pink_concrete",
4345    GrayConcrete => "gray_concrete",
4346    LightGrayConcrete => "light_gray_concrete",
4347    CyanConcrete => "cyan_concrete",
4348    PurpleConcrete => "purple_concrete",
4349    BlueConcrete => "blue_concrete",
4350    BrownConcrete => "brown_concrete",
4351    GreenConcrete => "green_concrete",
4352    RedConcrete => "red_concrete",
4353    BlackConcrete => "black_concrete",
4354    WhiteConcretePowder => "white_concrete_powder",
4355    OrangeConcretePowder => "orange_concrete_powder",
4356    MagentaConcretePowder => "magenta_concrete_powder",
4357    LightBlueConcretePowder => "light_blue_concrete_powder",
4358    YellowConcretePowder => "yellow_concrete_powder",
4359    LimeConcretePowder => "lime_concrete_powder",
4360    PinkConcretePowder => "pink_concrete_powder",
4361    GrayConcretePowder => "gray_concrete_powder",
4362    LightGrayConcretePowder => "light_gray_concrete_powder",
4363    CyanConcretePowder => "cyan_concrete_powder",
4364    PurpleConcretePowder => "purple_concrete_powder",
4365    BlueConcretePowder => "blue_concrete_powder",
4366    BrownConcretePowder => "brown_concrete_powder",
4367    GreenConcretePowder => "green_concrete_powder",
4368    RedConcretePowder => "red_concrete_powder",
4369    BlackConcretePowder => "black_concrete_powder",
4370    Kelp => "kelp",
4371    KelpPlant => "kelp_plant",
4372    DriedKelpBlock => "dried_kelp_block",
4373    TurtleEgg => "turtle_egg",
4374    SnifferEgg => "sniffer_egg",
4375    DriedGhast => "dried_ghast",
4376    DeadTubeCoralBlock => "dead_tube_coral_block",
4377    DeadBrainCoralBlock => "dead_brain_coral_block",
4378    DeadBubbleCoralBlock => "dead_bubble_coral_block",
4379    DeadFireCoralBlock => "dead_fire_coral_block",
4380    DeadHornCoralBlock => "dead_horn_coral_block",
4381    TubeCoralBlock => "tube_coral_block",
4382    BrainCoralBlock => "brain_coral_block",
4383    BubbleCoralBlock => "bubble_coral_block",
4384    FireCoralBlock => "fire_coral_block",
4385    HornCoralBlock => "horn_coral_block",
4386    DeadTubeCoral => "dead_tube_coral",
4387    DeadBrainCoral => "dead_brain_coral",
4388    DeadBubbleCoral => "dead_bubble_coral",
4389    DeadFireCoral => "dead_fire_coral",
4390    DeadHornCoral => "dead_horn_coral",
4391    TubeCoral => "tube_coral",
4392    BrainCoral => "brain_coral",
4393    BubbleCoral => "bubble_coral",
4394    FireCoral => "fire_coral",
4395    HornCoral => "horn_coral",
4396    DeadTubeCoralFan => "dead_tube_coral_fan",
4397    DeadBrainCoralFan => "dead_brain_coral_fan",
4398    DeadBubbleCoralFan => "dead_bubble_coral_fan",
4399    DeadFireCoralFan => "dead_fire_coral_fan",
4400    DeadHornCoralFan => "dead_horn_coral_fan",
4401    TubeCoralFan => "tube_coral_fan",
4402    BrainCoralFan => "brain_coral_fan",
4403    BubbleCoralFan => "bubble_coral_fan",
4404    FireCoralFan => "fire_coral_fan",
4405    HornCoralFan => "horn_coral_fan",
4406    DeadTubeCoralWallFan => "dead_tube_coral_wall_fan",
4407    DeadBrainCoralWallFan => "dead_brain_coral_wall_fan",
4408    DeadBubbleCoralWallFan => "dead_bubble_coral_wall_fan",
4409    DeadFireCoralWallFan => "dead_fire_coral_wall_fan",
4410    DeadHornCoralWallFan => "dead_horn_coral_wall_fan",
4411    TubeCoralWallFan => "tube_coral_wall_fan",
4412    BrainCoralWallFan => "brain_coral_wall_fan",
4413    BubbleCoralWallFan => "bubble_coral_wall_fan",
4414    FireCoralWallFan => "fire_coral_wall_fan",
4415    HornCoralWallFan => "horn_coral_wall_fan",
4416    SeaPickle => "sea_pickle",
4417    BlueIce => "blue_ice",
4418    Conduit => "conduit",
4419    BambooSapling => "bamboo_sapling",
4420    Bamboo => "bamboo",
4421    PottedBamboo => "potted_bamboo",
4422    VoidAir => "void_air",
4423    CaveAir => "cave_air",
4424    BubbleColumn => "bubble_column",
4425    PolishedGraniteStairs => "polished_granite_stairs",
4426    SmoothRedSandstoneStairs => "smooth_red_sandstone_stairs",
4427    MossyStoneBrickStairs => "mossy_stone_brick_stairs",
4428    PolishedDioriteStairs => "polished_diorite_stairs",
4429    MossyCobblestoneStairs => "mossy_cobblestone_stairs",
4430    EndStoneBrickStairs => "end_stone_brick_stairs",
4431    StoneStairs => "stone_stairs",
4432    SmoothSandstoneStairs => "smooth_sandstone_stairs",
4433    SmoothQuartzStairs => "smooth_quartz_stairs",
4434    GraniteStairs => "granite_stairs",
4435    AndesiteStairs => "andesite_stairs",
4436    RedNetherBrickStairs => "red_nether_brick_stairs",
4437    PolishedAndesiteStairs => "polished_andesite_stairs",
4438    DioriteStairs => "diorite_stairs",
4439    PolishedGraniteSlab => "polished_granite_slab",
4440    SmoothRedSandstoneSlab => "smooth_red_sandstone_slab",
4441    MossyStoneBrickSlab => "mossy_stone_brick_slab",
4442    PolishedDioriteSlab => "polished_diorite_slab",
4443    MossyCobblestoneSlab => "mossy_cobblestone_slab",
4444    EndStoneBrickSlab => "end_stone_brick_slab",
4445    SmoothSandstoneSlab => "smooth_sandstone_slab",
4446    SmoothQuartzSlab => "smooth_quartz_slab",
4447    GraniteSlab => "granite_slab",
4448    AndesiteSlab => "andesite_slab",
4449    RedNetherBrickSlab => "red_nether_brick_slab",
4450    PolishedAndesiteSlab => "polished_andesite_slab",
4451    DioriteSlab => "diorite_slab",
4452    BrickWall => "brick_wall",
4453    PrismarineWall => "prismarine_wall",
4454    RedSandstoneWall => "red_sandstone_wall",
4455    MossyStoneBrickWall => "mossy_stone_brick_wall",
4456    GraniteWall => "granite_wall",
4457    StoneBrickWall => "stone_brick_wall",
4458    MudBrickWall => "mud_brick_wall",
4459    NetherBrickWall => "nether_brick_wall",
4460    AndesiteWall => "andesite_wall",
4461    RedNetherBrickWall => "red_nether_brick_wall",
4462    SandstoneWall => "sandstone_wall",
4463    EndStoneBrickWall => "end_stone_brick_wall",
4464    DioriteWall => "diorite_wall",
4465    Scaffolding => "scaffolding",
4466    Loom => "loom",
4467    Barrel => "barrel",
4468    Smoker => "smoker",
4469    BlastFurnace => "blast_furnace",
4470    CartographyTable => "cartography_table",
4471    FletchingTable => "fletching_table",
4472    Grindstone => "grindstone",
4473    Lectern => "lectern",
4474    SmithingTable => "smithing_table",
4475    Stonecutter => "stonecutter",
4476    Bell => "bell",
4477    Lantern => "lantern",
4478    SoulLantern => "soul_lantern",
4479    CopperLantern => "copper_lantern",
4480    ExposedCopperLantern => "exposed_copper_lantern",
4481    WeatheredCopperLantern => "weathered_copper_lantern",
4482    OxidizedCopperLantern => "oxidized_copper_lantern",
4483    WaxedCopperLantern => "waxed_copper_lantern",
4484    WaxedExposedCopperLantern => "waxed_exposed_copper_lantern",
4485    WaxedWeatheredCopperLantern => "waxed_weathered_copper_lantern",
4486    WaxedOxidizedCopperLantern => "waxed_oxidized_copper_lantern",
4487    Campfire => "campfire",
4488    SoulCampfire => "soul_campfire",
4489    SweetBerryBush => "sweet_berry_bush",
4490    WarpedStem => "warped_stem",
4491    StrippedWarpedStem => "stripped_warped_stem",
4492    WarpedHyphae => "warped_hyphae",
4493    StrippedWarpedHyphae => "stripped_warped_hyphae",
4494    WarpedNylium => "warped_nylium",
4495    WarpedFungus => "warped_fungus",
4496    WarpedWartBlock => "warped_wart_block",
4497    WarpedRoots => "warped_roots",
4498    NetherSprouts => "nether_sprouts",
4499    CrimsonStem => "crimson_stem",
4500    StrippedCrimsonStem => "stripped_crimson_stem",
4501    CrimsonHyphae => "crimson_hyphae",
4502    StrippedCrimsonHyphae => "stripped_crimson_hyphae",
4503    CrimsonNylium => "crimson_nylium",
4504    CrimsonFungus => "crimson_fungus",
4505    Shroomlight => "shroomlight",
4506    WeepingVines => "weeping_vines",
4507    WeepingVinesPlant => "weeping_vines_plant",
4508    TwistingVines => "twisting_vines",
4509    TwistingVinesPlant => "twisting_vines_plant",
4510    CrimsonRoots => "crimson_roots",
4511    CrimsonPlanks => "crimson_planks",
4512    WarpedPlanks => "warped_planks",
4513    CrimsonSlab => "crimson_slab",
4514    WarpedSlab => "warped_slab",
4515    CrimsonPressurePlate => "crimson_pressure_plate",
4516    WarpedPressurePlate => "warped_pressure_plate",
4517    CrimsonFence => "crimson_fence",
4518    WarpedFence => "warped_fence",
4519    CrimsonTrapdoor => "crimson_trapdoor",
4520    WarpedTrapdoor => "warped_trapdoor",
4521    CrimsonFenceGate => "crimson_fence_gate",
4522    WarpedFenceGate => "warped_fence_gate",
4523    CrimsonStairs => "crimson_stairs",
4524    WarpedStairs => "warped_stairs",
4525    CrimsonButton => "crimson_button",
4526    WarpedButton => "warped_button",
4527    CrimsonDoor => "crimson_door",
4528    WarpedDoor => "warped_door",
4529    CrimsonSign => "crimson_sign",
4530    WarpedSign => "warped_sign",
4531    CrimsonWallSign => "crimson_wall_sign",
4532    WarpedWallSign => "warped_wall_sign",
4533    StructureBlock => "structure_block",
4534    Jigsaw => "jigsaw",
4535    TestBlock => "test_block",
4536    TestInstanceBlock => "test_instance_block",
4537    Composter => "composter",
4538    Target => "target",
4539    BeeNest => "bee_nest",
4540    Beehive => "beehive",
4541    HoneyBlock => "honey_block",
4542    HoneycombBlock => "honeycomb_block",
4543    NetheriteBlock => "netherite_block",
4544    AncientDebris => "ancient_debris",
4545    CryingObsidian => "crying_obsidian",
4546    RespawnAnchor => "respawn_anchor",
4547    PottedCrimsonFungus => "potted_crimson_fungus",
4548    PottedWarpedFungus => "potted_warped_fungus",
4549    PottedCrimsonRoots => "potted_crimson_roots",
4550    PottedWarpedRoots => "potted_warped_roots",
4551    Lodestone => "lodestone",
4552    Blackstone => "blackstone",
4553    BlackstoneStairs => "blackstone_stairs",
4554    BlackstoneWall => "blackstone_wall",
4555    BlackstoneSlab => "blackstone_slab",
4556    PolishedBlackstone => "polished_blackstone",
4557    PolishedBlackstoneBricks => "polished_blackstone_bricks",
4558    CrackedPolishedBlackstoneBricks => "cracked_polished_blackstone_bricks",
4559    ChiseledPolishedBlackstone => "chiseled_polished_blackstone",
4560    PolishedBlackstoneBrickSlab => "polished_blackstone_brick_slab",
4561    PolishedBlackstoneBrickStairs => "polished_blackstone_brick_stairs",
4562    PolishedBlackstoneBrickWall => "polished_blackstone_brick_wall",
4563    GildedBlackstone => "gilded_blackstone",
4564    PolishedBlackstoneStairs => "polished_blackstone_stairs",
4565    PolishedBlackstoneSlab => "polished_blackstone_slab",
4566    PolishedBlackstonePressurePlate => "polished_blackstone_pressure_plate",
4567    PolishedBlackstoneButton => "polished_blackstone_button",
4568    PolishedBlackstoneWall => "polished_blackstone_wall",
4569    ChiseledNetherBricks => "chiseled_nether_bricks",
4570    CrackedNetherBricks => "cracked_nether_bricks",
4571    QuartzBricks => "quartz_bricks",
4572    Candle => "candle",
4573    WhiteCandle => "white_candle",
4574    OrangeCandle => "orange_candle",
4575    MagentaCandle => "magenta_candle",
4576    LightBlueCandle => "light_blue_candle",
4577    YellowCandle => "yellow_candle",
4578    LimeCandle => "lime_candle",
4579    PinkCandle => "pink_candle",
4580    GrayCandle => "gray_candle",
4581    LightGrayCandle => "light_gray_candle",
4582    CyanCandle => "cyan_candle",
4583    PurpleCandle => "purple_candle",
4584    BlueCandle => "blue_candle",
4585    BrownCandle => "brown_candle",
4586    GreenCandle => "green_candle",
4587    RedCandle => "red_candle",
4588    BlackCandle => "black_candle",
4589    CandleCake => "candle_cake",
4590    WhiteCandleCake => "white_candle_cake",
4591    OrangeCandleCake => "orange_candle_cake",
4592    MagentaCandleCake => "magenta_candle_cake",
4593    LightBlueCandleCake => "light_blue_candle_cake",
4594    YellowCandleCake => "yellow_candle_cake",
4595    LimeCandleCake => "lime_candle_cake",
4596    PinkCandleCake => "pink_candle_cake",
4597    GrayCandleCake => "gray_candle_cake",
4598    LightGrayCandleCake => "light_gray_candle_cake",
4599    CyanCandleCake => "cyan_candle_cake",
4600    PurpleCandleCake => "purple_candle_cake",
4601    BlueCandleCake => "blue_candle_cake",
4602    BrownCandleCake => "brown_candle_cake",
4603    GreenCandleCake => "green_candle_cake",
4604    RedCandleCake => "red_candle_cake",
4605    BlackCandleCake => "black_candle_cake",
4606    AmethystBlock => "amethyst_block",
4607    BuddingAmethyst => "budding_amethyst",
4608    AmethystCluster => "amethyst_cluster",
4609    LargeAmethystBud => "large_amethyst_bud",
4610    MediumAmethystBud => "medium_amethyst_bud",
4611    SmallAmethystBud => "small_amethyst_bud",
4612    Tuff => "tuff",
4613    TuffSlab => "tuff_slab",
4614    TuffStairs => "tuff_stairs",
4615    TuffWall => "tuff_wall",
4616    PolishedTuff => "polished_tuff",
4617    PolishedTuffSlab => "polished_tuff_slab",
4618    PolishedTuffStairs => "polished_tuff_stairs",
4619    PolishedTuffWall => "polished_tuff_wall",
4620    ChiseledTuff => "chiseled_tuff",
4621    TuffBricks => "tuff_bricks",
4622    TuffBrickSlab => "tuff_brick_slab",
4623    TuffBrickStairs => "tuff_brick_stairs",
4624    TuffBrickWall => "tuff_brick_wall",
4625    ChiseledTuffBricks => "chiseled_tuff_bricks",
4626    Sulfur => "sulfur",
4627    PotentSulfur => "potent_sulfur",
4628    SulfurSlab => "sulfur_slab",
4629    SulfurStairs => "sulfur_stairs",
4630    SulfurWall => "sulfur_wall",
4631    PolishedSulfur => "polished_sulfur",
4632    PolishedSulfurSlab => "polished_sulfur_slab",
4633    PolishedSulfurStairs => "polished_sulfur_stairs",
4634    PolishedSulfurWall => "polished_sulfur_wall",
4635    SulfurBricks => "sulfur_bricks",
4636    SulfurBrickSlab => "sulfur_brick_slab",
4637    SulfurBrickStairs => "sulfur_brick_stairs",
4638    SulfurBrickWall => "sulfur_brick_wall",
4639    ChiseledSulfur => "chiseled_sulfur",
4640    Cinnabar => "cinnabar",
4641    CinnabarSlab => "cinnabar_slab",
4642    CinnabarStairs => "cinnabar_stairs",
4643    CinnabarWall => "cinnabar_wall",
4644    PolishedCinnabar => "polished_cinnabar",
4645    PolishedCinnabarSlab => "polished_cinnabar_slab",
4646    PolishedCinnabarStairs => "polished_cinnabar_stairs",
4647    PolishedCinnabarWall => "polished_cinnabar_wall",
4648    CinnabarBricks => "cinnabar_bricks",
4649    CinnabarBrickSlab => "cinnabar_brick_slab",
4650    CinnabarBrickStairs => "cinnabar_brick_stairs",
4651    CinnabarBrickWall => "cinnabar_brick_wall",
4652    ChiseledCinnabar => "chiseled_cinnabar",
4653    Calcite => "calcite",
4654    TintedGlass => "tinted_glass",
4655    PowderSnow => "powder_snow",
4656    SculkSensor => "sculk_sensor",
4657    CalibratedSculkSensor => "calibrated_sculk_sensor",
4658    Sculk => "sculk",
4659    SculkVein => "sculk_vein",
4660    SculkCatalyst => "sculk_catalyst",
4661    SculkShrieker => "sculk_shrieker",
4662    CopperBlock => "copper_block",
4663    ExposedCopper => "exposed_copper",
4664    WeatheredCopper => "weathered_copper",
4665    OxidizedCopper => "oxidized_copper",
4666    WaxedCopperBlock => "waxed_copper_block",
4667    WaxedExposedCopper => "waxed_exposed_copper",
4668    WaxedWeatheredCopper => "waxed_weathered_copper",
4669    WaxedOxidizedCopper => "waxed_oxidized_copper",
4670    CopperOre => "copper_ore",
4671    DeepslateCopperOre => "deepslate_copper_ore",
4672    CutCopper => "cut_copper",
4673    ExposedCutCopper => "exposed_cut_copper",
4674    WeatheredCutCopper => "weathered_cut_copper",
4675    OxidizedCutCopper => "oxidized_cut_copper",
4676    WaxedCutCopper => "waxed_cut_copper",
4677    WaxedExposedCutCopper => "waxed_exposed_cut_copper",
4678    WaxedWeatheredCutCopper => "waxed_weathered_cut_copper",
4679    WaxedOxidizedCutCopper => "waxed_oxidized_cut_copper",
4680    ChiseledCopper => "chiseled_copper",
4681    ExposedChiseledCopper => "exposed_chiseled_copper",
4682    WeatheredChiseledCopper => "weathered_chiseled_copper",
4683    OxidizedChiseledCopper => "oxidized_chiseled_copper",
4684    WaxedChiseledCopper => "waxed_chiseled_copper",
4685    WaxedExposedChiseledCopper => "waxed_exposed_chiseled_copper",
4686    WaxedWeatheredChiseledCopper => "waxed_weathered_chiseled_copper",
4687    WaxedOxidizedChiseledCopper => "waxed_oxidized_chiseled_copper",
4688    CutCopperStairs => "cut_copper_stairs",
4689    ExposedCutCopperStairs => "exposed_cut_copper_stairs",
4690    WeatheredCutCopperStairs => "weathered_cut_copper_stairs",
4691    OxidizedCutCopperStairs => "oxidized_cut_copper_stairs",
4692    WaxedCutCopperStairs => "waxed_cut_copper_stairs",
4693    WaxedExposedCutCopperStairs => "waxed_exposed_cut_copper_stairs",
4694    WaxedWeatheredCutCopperStairs => "waxed_weathered_cut_copper_stairs",
4695    WaxedOxidizedCutCopperStairs => "waxed_oxidized_cut_copper_stairs",
4696    CutCopperSlab => "cut_copper_slab",
4697    ExposedCutCopperSlab => "exposed_cut_copper_slab",
4698    WeatheredCutCopperSlab => "weathered_cut_copper_slab",
4699    OxidizedCutCopperSlab => "oxidized_cut_copper_slab",
4700    WaxedCutCopperSlab => "waxed_cut_copper_slab",
4701    WaxedExposedCutCopperSlab => "waxed_exposed_cut_copper_slab",
4702    WaxedWeatheredCutCopperSlab => "waxed_weathered_cut_copper_slab",
4703    WaxedOxidizedCutCopperSlab => "waxed_oxidized_cut_copper_slab",
4704    CopperDoor => "copper_door",
4705    ExposedCopperDoor => "exposed_copper_door",
4706    WeatheredCopperDoor => "weathered_copper_door",
4707    OxidizedCopperDoor => "oxidized_copper_door",
4708    WaxedCopperDoor => "waxed_copper_door",
4709    WaxedExposedCopperDoor => "waxed_exposed_copper_door",
4710    WaxedWeatheredCopperDoor => "waxed_weathered_copper_door",
4711    WaxedOxidizedCopperDoor => "waxed_oxidized_copper_door",
4712    CopperTrapdoor => "copper_trapdoor",
4713    ExposedCopperTrapdoor => "exposed_copper_trapdoor",
4714    WeatheredCopperTrapdoor => "weathered_copper_trapdoor",
4715    OxidizedCopperTrapdoor => "oxidized_copper_trapdoor",
4716    WaxedCopperTrapdoor => "waxed_copper_trapdoor",
4717    WaxedExposedCopperTrapdoor => "waxed_exposed_copper_trapdoor",
4718    WaxedWeatheredCopperTrapdoor => "waxed_weathered_copper_trapdoor",
4719    WaxedOxidizedCopperTrapdoor => "waxed_oxidized_copper_trapdoor",
4720    CopperGrate => "copper_grate",
4721    ExposedCopperGrate => "exposed_copper_grate",
4722    WeatheredCopperGrate => "weathered_copper_grate",
4723    OxidizedCopperGrate => "oxidized_copper_grate",
4724    WaxedCopperGrate => "waxed_copper_grate",
4725    WaxedExposedCopperGrate => "waxed_exposed_copper_grate",
4726    WaxedWeatheredCopperGrate => "waxed_weathered_copper_grate",
4727    WaxedOxidizedCopperGrate => "waxed_oxidized_copper_grate",
4728    CopperBulb => "copper_bulb",
4729    ExposedCopperBulb => "exposed_copper_bulb",
4730    WeatheredCopperBulb => "weathered_copper_bulb",
4731    OxidizedCopperBulb => "oxidized_copper_bulb",
4732    WaxedCopperBulb => "waxed_copper_bulb",
4733    WaxedExposedCopperBulb => "waxed_exposed_copper_bulb",
4734    WaxedWeatheredCopperBulb => "waxed_weathered_copper_bulb",
4735    WaxedOxidizedCopperBulb => "waxed_oxidized_copper_bulb",
4736    CopperChest => "copper_chest",
4737    ExposedCopperChest => "exposed_copper_chest",
4738    WeatheredCopperChest => "weathered_copper_chest",
4739    OxidizedCopperChest => "oxidized_copper_chest",
4740    WaxedCopperChest => "waxed_copper_chest",
4741    WaxedExposedCopperChest => "waxed_exposed_copper_chest",
4742    WaxedWeatheredCopperChest => "waxed_weathered_copper_chest",
4743    WaxedOxidizedCopperChest => "waxed_oxidized_copper_chest",
4744    CopperGolemStatue => "copper_golem_statue",
4745    ExposedCopperGolemStatue => "exposed_copper_golem_statue",
4746    WeatheredCopperGolemStatue => "weathered_copper_golem_statue",
4747    OxidizedCopperGolemStatue => "oxidized_copper_golem_statue",
4748    WaxedCopperGolemStatue => "waxed_copper_golem_statue",
4749    WaxedExposedCopperGolemStatue => "waxed_exposed_copper_golem_statue",
4750    WaxedWeatheredCopperGolemStatue => "waxed_weathered_copper_golem_statue",
4751    WaxedOxidizedCopperGolemStatue => "waxed_oxidized_copper_golem_statue",
4752    LightningRod => "lightning_rod",
4753    ExposedLightningRod => "exposed_lightning_rod",
4754    WeatheredLightningRod => "weathered_lightning_rod",
4755    OxidizedLightningRod => "oxidized_lightning_rod",
4756    WaxedLightningRod => "waxed_lightning_rod",
4757    WaxedExposedLightningRod => "waxed_exposed_lightning_rod",
4758    WaxedWeatheredLightningRod => "waxed_weathered_lightning_rod",
4759    WaxedOxidizedLightningRod => "waxed_oxidized_lightning_rod",
4760    DripstoneBlock => "dripstone_block",
4761    PointedDripstone => "pointed_dripstone",
4762    SulfurSpike => "sulfur_spike",
4763    CaveVines => "cave_vines",
4764    CaveVinesPlant => "cave_vines_plant",
4765    SporeBlossom => "spore_blossom",
4766    Azalea => "azalea",
4767    FloweringAzalea => "flowering_azalea",
4768    MossCarpet => "moss_carpet",
4769    PinkPetals => "pink_petals",
4770    Wildflowers => "wildflowers",
4771    LeafLitter => "leaf_litter",
4772    MossBlock => "moss_block",
4773    BigDripleaf => "big_dripleaf",
4774    BigDripleafStem => "big_dripleaf_stem",
4775    SmallDripleaf => "small_dripleaf",
4776    HangingRoots => "hanging_roots",
4777    RootedDirt => "rooted_dirt",
4778    Mud => "mud",
4779    Deepslate => "deepslate",
4780    CobbledDeepslate => "cobbled_deepslate",
4781    CobbledDeepslateStairs => "cobbled_deepslate_stairs",
4782    CobbledDeepslateSlab => "cobbled_deepslate_slab",
4783    CobbledDeepslateWall => "cobbled_deepslate_wall",
4784    PolishedDeepslate => "polished_deepslate",
4785    PolishedDeepslateStairs => "polished_deepslate_stairs",
4786    PolishedDeepslateSlab => "polished_deepslate_slab",
4787    PolishedDeepslateWall => "polished_deepslate_wall",
4788    DeepslateTiles => "deepslate_tiles",
4789    DeepslateTileStairs => "deepslate_tile_stairs",
4790    DeepslateTileSlab => "deepslate_tile_slab",
4791    DeepslateTileWall => "deepslate_tile_wall",
4792    DeepslateBricks => "deepslate_bricks",
4793    DeepslateBrickStairs => "deepslate_brick_stairs",
4794    DeepslateBrickSlab => "deepslate_brick_slab",
4795    DeepslateBrickWall => "deepslate_brick_wall",
4796    ChiseledDeepslate => "chiseled_deepslate",
4797    CrackedDeepslateBricks => "cracked_deepslate_bricks",
4798    CrackedDeepslateTiles => "cracked_deepslate_tiles",
4799    InfestedDeepslate => "infested_deepslate",
4800    SmoothBasalt => "smooth_basalt",
4801    RawIronBlock => "raw_iron_block",
4802    RawCopperBlock => "raw_copper_block",
4803    RawGoldBlock => "raw_gold_block",
4804    PottedAzaleaBush => "potted_azalea_bush",
4805    PottedFloweringAzaleaBush => "potted_flowering_azalea_bush",
4806    OchreFroglight => "ochre_froglight",
4807    VerdantFroglight => "verdant_froglight",
4808    PearlescentFroglight => "pearlescent_froglight",
4809    Frogspawn => "frogspawn",
4810    ReinforcedDeepslate => "reinforced_deepslate",
4811    DecoratedPot => "decorated_pot",
4812    Crafter => "crafter",
4813    TrialSpawner => "trial_spawner",
4814    Vault => "vault",
4815    HeavyCore => "heavy_core",
4816    PaleMossBlock => "pale_moss_block",
4817    PaleMossCarpet => "pale_moss_carpet",
4818    PaleHangingMoss => "pale_hanging_moss",
4819    OpenEyeblossom => "open_eyeblossom",
4820    ClosedEyeblossom => "closed_eyeblossom",
4821    PottedOpenEyeblossom => "potted_open_eyeblossom",
4822    PottedClosedEyeblossom => "potted_closed_eyeblossom",
4823    FireflyBush => "firefly_bush",
4824}
4825}
4826
4827registry! {
4828enum WorldgenPoolAliasBinding {
4829    Random => "random",
4830    RandomGroup => "random_group",
4831    Direct => "direct",
4832}
4833}
4834
4835registry! {
4836enum TriggerKind {
4837    Impossible => "impossible",
4838    PlayerKilledEntity => "player_killed_entity",
4839    EntityKilledPlayer => "entity_killed_player",
4840    EnterBlock => "enter_block",
4841    InventoryChanged => "inventory_changed",
4842    RecipeUnlocked => "recipe_unlocked",
4843    PlayerHurtEntity => "player_hurt_entity",
4844    EntityHurtPlayer => "entity_hurt_player",
4845    EnchantedItem => "enchanted_item",
4846    FilledBucket => "filled_bucket",
4847    BrewedPotion => "brewed_potion",
4848    ConstructBeacon => "construct_beacon",
4849    UsedEnderEye => "used_ender_eye",
4850    SummonedEntity => "summoned_entity",
4851    BredAnimals => "bred_animals",
4852    Location => "location",
4853    SleptInBed => "slept_in_bed",
4854    CuredZombieVillager => "cured_zombie_villager",
4855    VillagerTrade => "villager_trade",
4856    ItemDurabilityChanged => "item_durability_changed",
4857    Levitation => "levitation",
4858    ChangedDimension => "changed_dimension",
4859    Tick => "tick",
4860    TameAnimal => "tame_animal",
4861    PlacedBlock => "placed_block",
4862    ConsumeItem => "consume_item",
4863    EffectsChanged => "effects_changed",
4864    UsedTotem => "used_totem",
4865    NetherTravel => "nether_travel",
4866    FishingRodHooked => "fishing_rod_hooked",
4867    ChanneledLightning => "channeled_lightning",
4868    ShotCrossbow => "shot_crossbow",
4869    SpearMobs => "spear_mobs",
4870    KilledByArrow => "killed_by_arrow",
4871    HeroOfTheVillage => "hero_of_the_village",
4872    VoluntaryExile => "voluntary_exile",
4873    SlideDownBlock => "slide_down_block",
4874    BeeNestDestroyed => "bee_nest_destroyed",
4875    TargetHit => "target_hit",
4876    ItemUsedOnBlock => "item_used_on_block",
4877    DefaultBlockUse => "default_block_use",
4878    AnyBlockUse => "any_block_use",
4879    PlayerGeneratesContainerLoot => "player_generates_container_loot",
4880    ThrownItemPickedUpByEntity => "thrown_item_picked_up_by_entity",
4881    ThrownItemPickedUpByPlayer => "thrown_item_picked_up_by_player",
4882    PlayerInteractedWithEntity => "player_interacted_with_entity",
4883    PlayerShearedEquipment => "player_sheared_equipment",
4884    StartedRiding => "started_riding",
4885    LightningStrike => "lightning_strike",
4886    UsingItem => "using_item",
4887    FallFromHeight => "fall_from_height",
4888    RideEntityInLava => "ride_entity_in_lava",
4889    KillMobNearSculkCatalyst => "kill_mob_near_sculk_catalyst",
4890    AllayDropItemOnBlock => "allay_drop_item_on_block",
4891    AvoidVibration => "avoid_vibration",
4892    RecipeCrafted => "recipe_crafted",
4893    CrafterRecipeCrafted => "crafter_recipe_crafted",
4894    FallAfterExplosion => "fall_after_explosion",
4895}
4896}
4897
4898registry! {
4899enum NumberFormatKind {
4900    Blank => "blank",
4901    Styled => "styled",
4902    Fixed => "fixed",
4903}
4904}
4905
4906registry! {
4907enum DataComponentKind {
4908    CustomData => "custom_data",
4909    MaxStackSize => "max_stack_size",
4910    MaxDamage => "max_damage",
4911    Damage => "damage",
4912    Unbreakable => "unbreakable",
4913    UseEffects => "use_effects",
4914    CustomName => "custom_name",
4915    MinimumAttackCharge => "minimum_attack_charge",
4916    DamageType => "damage_type",
4917    ItemName => "item_name",
4918    ItemModel => "item_model",
4919    Lore => "lore",
4920    Rarity => "rarity",
4921    Enchantments => "enchantments",
4922    CanPlaceOn => "can_place_on",
4923    CanBreak => "can_break",
4924    AttributeModifiers => "attribute_modifiers",
4925    CustomModelData => "custom_model_data",
4926    TooltipDisplay => "tooltip_display",
4927    RepairCost => "repair_cost",
4928    CreativeSlotLock => "creative_slot_lock",
4929    EnchantmentGlintOverride => "enchantment_glint_override",
4930    IntangibleProjectile => "intangible_projectile",
4931    Food => "food",
4932    Consumable => "consumable",
4933    UseRemainder => "use_remainder",
4934    UseCooldown => "use_cooldown",
4935    DamageResistant => "damage_resistant",
4936    Tool => "tool",
4937    Weapon => "weapon",
4938    AttackRange => "attack_range",
4939    Enchantable => "enchantable",
4940    Equippable => "equippable",
4941    Repairable => "repairable",
4942    Glider => "glider",
4943    TooltipStyle => "tooltip_style",
4944    DeathProtection => "death_protection",
4945    BlocksAttacks => "blocks_attacks",
4946    PiercingWeapon => "piercing_weapon",
4947    KineticWeapon => "kinetic_weapon",
4948    SwingAnimation => "swing_animation",
4949    AdditionalTradeCost => "additional_trade_cost",
4950    StoredEnchantments => "stored_enchantments",
4951    Dye => "dye",
4952    DyedColor => "dyed_color",
4953    MapColor => "map_color",
4954    MapId => "map_id",
4955    MapDecorations => "map_decorations",
4956    MapPostProcessing => "map_post_processing",
4957    ChargedProjectiles => "charged_projectiles",
4958    BundleContents => "bundle_contents",
4959    PotionContents => "potion_contents",
4960    PotionDurationScale => "potion_duration_scale",
4961    SuspiciousStewEffects => "suspicious_stew_effects",
4962    WritableBookContent => "writable_book_content",
4963    WrittenBookContent => "written_book_content",
4964    Trim => "trim",
4965    DebugStickState => "debug_stick_state",
4966    EntityData => "entity_data",
4967    BucketEntityData => "bucket_entity_data",
4968    BlockEntityData => "block_entity_data",
4969    Instrument => "instrument",
4970    ProvidesTrimMaterial => "provides_trim_material",
4971    OminousBottleAmplifier => "ominous_bottle_amplifier",
4972    JukeboxPlayable => "jukebox_playable",
4973    ProvidesBannerPatterns => "provides_banner_patterns",
4974    Recipes => "recipes",
4975    LodestoneTracker => "lodestone_tracker",
4976    FireworkExplosion => "firework_explosion",
4977    Fireworks => "fireworks",
4978    Profile => "profile",
4979    NoteBlockSound => "note_block_sound",
4980    BannerPatterns => "banner_patterns",
4981    BaseColor => "base_color",
4982    PotDecorations => "pot_decorations",
4983    Container => "container",
4984    BlockState => "block_state",
4985    Bees => "bees",
4986    SulfurCubeContent => "sulfur_cube_content",
4987    Lock => "lock",
4988    ContainerLoot => "container_loot",
4989    BreakSound => "break_sound",
4990    VillagerVariant => "villager/variant",
4991    WolfVariant => "wolf/variant",
4992    WolfSoundVariant => "wolf/sound_variant",
4993    WolfCollar => "wolf/collar",
4994    FoxVariant => "fox/variant",
4995    SalmonSize => "salmon/size",
4996    ParrotVariant => "parrot/variant",
4997    TropicalFishPattern => "tropical_fish/pattern",
4998    TropicalFishBaseColor => "tropical_fish/base_color",
4999    TropicalFishPatternColor => "tropical_fish/pattern_color",
5000    MooshroomVariant => "mooshroom/variant",
5001    RabbitVariant => "rabbit/variant",
5002    PigVariant => "pig/variant",
5003    PigSoundVariant => "pig/sound_variant",
5004    CowVariant => "cow/variant",
5005    CowSoundVariant => "cow/sound_variant",
5006    ChickenVariant => "chicken/variant",
5007    ChickenSoundVariant => "chicken/sound_variant",
5008    ZombieNautilusVariant => "zombie_nautilus/variant",
5009    FrogVariant => "frog/variant",
5010    HorseVariant => "horse/variant",
5011    PaintingVariant => "painting/variant",
5012    LlamaVariant => "llama/variant",
5013    AxolotlVariant => "axolotl/variant",
5014    CatVariant => "cat/variant",
5015    CatSoundVariant => "cat/sound_variant",
5016    CatCollar => "cat/collar",
5017    SheepColor => "sheep/color",
5018    ShulkerColor => "shulker/color",
5019}
5020}
5021
5022registry! {
5023enum EntitySubPredicateKind {
5024    EntityType => "entity_type",
5025    Location => "location",
5026    SteppingOn => "stepping_on",
5027    MovementAffectedBy => "movement_affected_by",
5028    Distance => "distance",
5029    Movement => "movement",
5030    Effects => "effects",
5031    Nbt => "nbt",
5032    Flags => "flags",
5033    Equipment => "equipment",
5034    PeriodicTick => "periodic_tick",
5035    Vehicle => "vehicle",
5036    Passenger => "passenger",
5037    TargetedEntity => "targeted_entity",
5038    Team => "team",
5039    Slots => "slots",
5040    Components => "components",
5041    Predicates => "predicates",
5042    EntityTags => "entity_tags",
5043    TypeSpecificLightning => "type_specific/lightning",
5044    TypeSpecificFishingHook => "type_specific/fishing_hook",
5045    TypeSpecificPlayer => "type_specific/player",
5046    TypeSpecificCubeMob => "type_specific/cube_mob",
5047    TypeSpecificRaider => "type_specific/raider",
5048    TypeSpecificSheep => "type_specific/sheep",
5049}
5050}
5051
5052registry! {
5053enum MapDecorationKind {
5054    Player => "player",
5055    Frame => "frame",
5056    RedMarker => "red_marker",
5057    BlueMarker => "blue_marker",
5058    TargetX => "target_x",
5059    TargetPoint => "target_point",
5060    PlayerOffMap => "player_off_map",
5061    PlayerOffLimits => "player_off_limits",
5062    Mansion => "mansion",
5063    Monument => "monument",
5064    BannerWhite => "banner_white",
5065    BannerOrange => "banner_orange",
5066    BannerMagenta => "banner_magenta",
5067    BannerLightBlue => "banner_light_blue",
5068    BannerYellow => "banner_yellow",
5069    BannerLime => "banner_lime",
5070    BannerPink => "banner_pink",
5071    BannerGray => "banner_gray",
5072    BannerLightGray => "banner_light_gray",
5073    BannerCyan => "banner_cyan",
5074    BannerPurple => "banner_purple",
5075    BannerBlue => "banner_blue",
5076    BannerBrown => "banner_brown",
5077    BannerGreen => "banner_green",
5078    BannerRed => "banner_red",
5079    BannerBlack => "banner_black",
5080    RedX => "red_x",
5081    VillageDesert => "village_desert",
5082    VillagePlains => "village_plains",
5083    VillageSavanna => "village_savanna",
5084    VillageSnowy => "village_snowy",
5085    VillageTaiga => "village_taiga",
5086    JungleTemple => "jungle_temple",
5087    SwampHut => "swamp_hut",
5088    TrialChambers => "trial_chambers",
5089}
5090}
5091
5092registry! {
5093enum EnchantmentEffectComponentKind {
5094    DamageProtection => "damage_protection",
5095    DamageImmunity => "damage_immunity",
5096    Damage => "damage",
5097    SmashDamagePerFallenBlock => "smash_damage_per_fallen_block",
5098    Knockback => "knockback",
5099    ArmorEffectiveness => "armor_effectiveness",
5100    PostAttack => "post_attack",
5101    PostPiercingAttack => "post_piercing_attack",
5102    HitBlock => "hit_block",
5103    ItemDamage => "item_damage",
5104    EquipmentDrops => "equipment_drops",
5105    LocationChanged => "location_changed",
5106    Tick => "tick",
5107    AmmoUse => "ammo_use",
5108    ProjectilePiercing => "projectile_piercing",
5109    ProjectileSpawned => "projectile_spawned",
5110    ProjectileSpread => "projectile_spread",
5111    ProjectileCount => "projectile_count",
5112    TridentReturnAcceleration => "trident_return_acceleration",
5113    FishingTimeReduction => "fishing_time_reduction",
5114    FishingLuckBonus => "fishing_luck_bonus",
5115    BlockExperience => "block_experience",
5116    MobExperience => "mob_experience",
5117    RepairWithXp => "repair_with_xp",
5118    Attributes => "attributes",
5119    CrossbowChargeTime => "crossbow_charge_time",
5120    CrossbowChargingSounds => "crossbow_charging_sounds",
5121    TridentSound => "trident_sound",
5122    PreventEquipmentDrop => "prevent_equipment_drop",
5123    PreventArmorChange => "prevent_armor_change",
5124    TridentSpinAttackStrength => "trident_spin_attack_strength",
5125}
5126}
5127
5128registry! {
5129enum EnchantmentEntityEffectKind {
5130    AllOf => "all_of",
5131    ApplyMobEffect => "apply_mob_effect",
5132    ChangeItemDamage => "change_item_damage",
5133    DamageEntity => "damage_entity",
5134    Explode => "explode",
5135    Ignite => "ignite",
5136    ApplyImpulse => "apply_impulse",
5137    ApplyExhaustion => "apply_exhaustion",
5138    PlaySound => "play_sound",
5139    ReplaceBlock => "replace_block",
5140    ReplaceDisk => "replace_disk",
5141    RunFunction => "run_function",
5142    SetBlockProperties => "set_block_properties",
5143    SpawnParticles => "spawn_particles",
5144    SummonEntity => "summon_entity",
5145}
5146}
5147
5148registry! {
5149enum EnchantmentLevelBasedValueKind {
5150    Clamped => "clamped",
5151    Fraction => "fraction",
5152    LevelsSquared => "levels_squared",
5153    Linear => "linear",
5154    Exponent => "exponent",
5155    Lookup => "lookup",
5156}
5157}
5158
5159registry! {
5160enum EnchantmentLocationBasedEffectKind {
5161    AllOf => "all_of",
5162    ApplyMobEffect => "apply_mob_effect",
5163    Attribute => "attribute",
5164    ChangeItemDamage => "change_item_damage",
5165    DamageEntity => "damage_entity",
5166    Explode => "explode",
5167    Ignite => "ignite",
5168    ApplyImpulse => "apply_impulse",
5169    ApplyExhaustion => "apply_exhaustion",
5170    PlaySound => "play_sound",
5171    ReplaceBlock => "replace_block",
5172    ReplaceDisk => "replace_disk",
5173    RunFunction => "run_function",
5174    SetBlockProperties => "set_block_properties",
5175    SpawnParticles => "spawn_particles",
5176    SummonEntity => "summon_entity",
5177}
5178}
5179
5180registry! {
5181enum EnchantmentProviderKind {
5182    ByCost => "by_cost",
5183    ByCostWithDifficulty => "by_cost_with_difficulty",
5184    Single => "single",
5185}
5186}
5187
5188registry! {
5189enum EnchantmentValueEffectKind {
5190    Add => "add",
5191    AllOf => "all_of",
5192    Multiply => "multiply",
5193    RemoveBinomial => "remove_binomial",
5194    Exponential => "exponential",
5195    Set => "set",
5196}
5197}
5198
5199registry! {
5200enum DecoratedPotPattern {
5201    Angler => "angler",
5202    Archer => "archer",
5203    ArmsUp => "arms_up",
5204    Blade => "blade",
5205    Brewer => "brewer",
5206    Burn => "burn",
5207    Danger => "danger",
5208    Explorer => "explorer",
5209    Flow => "flow",
5210    Friend => "friend",
5211    Guster => "guster",
5212    Heart => "heart",
5213    Heartbreak => "heartbreak",
5214    Howl => "howl",
5215    Miner => "miner",
5216    Mourner => "mourner",
5217    Plenty => "plenty",
5218    Prize => "prize",
5219    Scrape => "scrape",
5220    Sheaf => "sheaf",
5221    Shelter => "shelter",
5222    Skull => "skull",
5223    Snort => "snort",
5224    Blank => "blank",
5225}
5226}
5227
5228registry! {
5229enum ConsumeEffectKind {
5230    ApplyEffects => "apply_effects",
5231    RemoveEffects => "remove_effects",
5232    ClearAllEffects => "clear_all_effects",
5233    TeleportRandomly => "teleport_randomly",
5234    PlaySound => "play_sound",
5235}
5236}
5237
5238registry! {
5239enum RecipeBookCategory {
5240    CraftingBuildingBlocks => "crafting_building_blocks",
5241    CraftingRedstone => "crafting_redstone",
5242    CraftingEquipment => "crafting_equipment",
5243    CraftingMisc => "crafting_misc",
5244    FurnaceFood => "furnace_food",
5245    FurnaceBlocks => "furnace_blocks",
5246    FurnaceMisc => "furnace_misc",
5247    BlastFurnaceBlocks => "blast_furnace_blocks",
5248    BlastFurnaceMisc => "blast_furnace_misc",
5249    SmokerFood => "smoker_food",
5250    Stonecutter => "stonecutter",
5251    Smithing => "smithing",
5252    Campfire => "campfire",
5253}
5254}
5255
5256registry! {
5257enum RecipeDisplay {
5258    CraftingShapeless => "crafting_shapeless",
5259    CraftingShaped => "crafting_shaped",
5260    Furnace => "furnace",
5261    Stonecutter => "stonecutter",
5262    Smithing => "smithing",
5263}
5264}
5265
5266registry! {
5267enum SlotDisplay {
5268    Empty => "empty",
5269    AnyFuel => "any_fuel",
5270    WithAnyPotion => "with_any_potion",
5271    OnlyWithComponent => "only_with_component",
5272    Item => "item",
5273    ItemStack => "item_stack",
5274    Tag => "tag",
5275    Dyed => "dyed",
5276    SmithingTrim => "smithing_trim",
5277    WithRemainder => "with_remainder",
5278    Composite => "composite",
5279}
5280}
5281
5282registry! {
5283enum TicketKind {
5284    PlayerSpawn => "player_spawn",
5285    SpawnSearch => "spawn_search",
5286    Dragon => "dragon",
5287    PlayerLoading => "player_loading",
5288    PlayerSimulation => "player_simulation",
5289    Forced => "forced",
5290    Portal => "portal",
5291    EnderPearl => "ender_pearl",
5292    Unknown => "unknown",
5293}
5294}
5295
5296registry! {
5297enum TestEnvironmentDefinitionKind {
5298    AllOf => "all_of",
5299    ClockTime => "clock_time",
5300    Difficulty => "difficulty",
5301    Function => "function",
5302    GameRules => "game_rules",
5303    TimelineAttributes => "timeline_attributes",
5304    Weather => "weather",
5305}
5306}
5307
5308registry! {
5309enum TestFunction {
5310    AlwaysPass => "always_pass",
5311}
5312}
5313
5314registry! {
5315enum TestInstanceKind {
5316    BlockBased => "block_based",
5317    Function => "function",
5318}
5319}
5320
5321registry! {
5322enum DataComponentPredicateKind {
5323    Damage => "damage",
5324    Enchantments => "enchantments",
5325    StoredEnchantments => "stored_enchantments",
5326    PotionContents => "potion_contents",
5327    CustomData => "custom_data",
5328    Container => "container",
5329    BundleContents => "bundle_contents",
5330    FireworkExplosion => "firework_explosion",
5331    Fireworks => "fireworks",
5332    WritableBookContent => "writable_book_content",
5333    WrittenBookContent => "written_book_content",
5334    AttributeModifiers => "attribute_modifiers",
5335    Trim => "trim",
5336    JukeboxPlayable => "jukebox_playable",
5337    VillagerVariant => "villager/variant",
5338}
5339}
5340
5341registry! {
5342enum SpawnConditionKind {
5343    Structure => "structure",
5344    MoonBrightness => "moon_brightness",
5345    Biome => "biome",
5346}
5347}
5348
5349registry! {
5350enum DialogBodyKind {
5351    Item => "item",
5352    PlainMessage => "plain_message",
5353}
5354}
5355
5356registry! {
5357enum DialogKind {
5358    Notice => "notice",
5359    ServerLinks => "server_links",
5360    DialogList => "dialog_list",
5361    MultiAction => "multi_action",
5362    Confirmation => "confirmation",
5363}
5364}
5365
5366registry! {
5367enum InputControlKind {
5368    Boolean => "boolean",
5369    NumberRange => "number_range",
5370    SingleOption => "single_option",
5371    Text => "text",
5372}
5373}
5374
5375registry! {
5376enum DialogActionKind {
5377    OpenUrl => "open_url",
5378    RunCommand => "run_command",
5379    SuggestCommand => "suggest_command",
5380    ShowDialog => "show_dialog",
5381    ChangePage => "change_page",
5382    CopyToClipboard => "copy_to_clipboard",
5383    Custom => "custom",
5384    DynamicRunCommand => "dynamic/run_command",
5385    DynamicCustom => "dynamic/custom",
5386}
5387}
5388
5389registry! {
5390enum DebugSubscription {
5391    DedicatedServerTickTime => "dedicated_server_tick_time",
5392    Bees => "bees",
5393    Brains => "brains",
5394    Breezes => "breezes",
5395    GoalSelectors => "goal_selectors",
5396    EntityPaths => "entity_paths",
5397    EntityBlockIntersections => "entity_block_intersections",
5398    BeeHives => "bee_hives",
5399    Pois => "pois",
5400    RedstoneWireOrientations => "redstone_wire_orientations",
5401    VillageSections => "village_sections",
5402    Raids => "raids",
5403    Structures => "structures",
5404    GameEventListeners => "game_event_listeners",
5405    NeighborUpdates => "neighbor_updates",
5406    GameEvents => "game_events",
5407}
5408}
5409
5410registry! {
5411enum IncomingRpcMethods {
5412    Allowlist => "allowlist",
5413    AllowlistSet => "allowlist/set",
5414    AllowlistAdd => "allowlist/add",
5415    AllowlistRemove => "allowlist/remove",
5416    AllowlistClear => "allowlist/clear",
5417    Bans => "bans",
5418    BansSet => "bans/set",
5419    BansAdd => "bans/add",
5420    BansRemove => "bans/remove",
5421    BansClear => "bans/clear",
5422    IpBans => "ip_bans",
5423    IpBansSet => "ip_bans/set",
5424    IpBansAdd => "ip_bans/add",
5425    IpBansRemove => "ip_bans/remove",
5426    IpBansClear => "ip_bans/clear",
5427    Players => "players",
5428    PlayersKick => "players/kick",
5429    Operators => "operators",
5430    OperatorsSet => "operators/set",
5431    OperatorsAdd => "operators/add",
5432    OperatorsRemove => "operators/remove",
5433    OperatorsClear => "operators/clear",
5434    ServerStatus => "server/status",
5435    ServerSave => "server/save",
5436    ServerStop => "server/stop",
5437    ServerSystemMessage => "server/system_message",
5438    ServersettingsAutosave => "serversettings/autosave",
5439    ServersettingsAutosaveSet => "serversettings/autosave/set",
5440    ServersettingsDifficulty => "serversettings/difficulty",
5441    ServersettingsDifficultySet => "serversettings/difficulty/set",
5442    ServersettingsEnforceAllowlist => "serversettings/enforce_allowlist",
5443    ServersettingsEnforceAllowlistSet => "serversettings/enforce_allowlist/set",
5444    ServersettingsUseAllowlist => "serversettings/use_allowlist",
5445    ServersettingsUseAllowlistSet => "serversettings/use_allowlist/set",
5446    ServersettingsMaxPlayers => "serversettings/max_players",
5447    ServersettingsMaxPlayersSet => "serversettings/max_players/set",
5448    ServersettingsPauseWhenEmptySeconds => "serversettings/pause_when_empty_seconds",
5449    ServersettingsPauseWhenEmptySecondsSet => "serversettings/pause_when_empty_seconds/set",
5450    ServersettingsPlayerIdleTimeout => "serversettings/player_idle_timeout",
5451    ServersettingsPlayerIdleTimeoutSet => "serversettings/player_idle_timeout/set",
5452    ServersettingsAllowFlight => "serversettings/allow_flight",
5453    ServersettingsAllowFlightSet => "serversettings/allow_flight/set",
5454    ServersettingsMotd => "serversettings/motd",
5455    ServersettingsMotdSet => "serversettings/motd/set",
5456    ServersettingsSpawnProtectionRadius => "serversettings/spawn_protection_radius",
5457    ServersettingsSpawnProtectionRadiusSet => "serversettings/spawn_protection_radius/set",
5458    ServersettingsForceGameMode => "serversettings/force_game_mode",
5459    ServersettingsForceGameModeSet => "serversettings/force_game_mode/set",
5460    ServersettingsGameMode => "serversettings/game_mode",
5461    ServersettingsGameModeSet => "serversettings/game_mode/set",
5462    ServersettingsViewDistance => "serversettings/view_distance",
5463    ServersettingsViewDistanceSet => "serversettings/view_distance/set",
5464    ServersettingsSimulationDistance => "serversettings/simulation_distance",
5465    ServersettingsSimulationDistanceSet => "serversettings/simulation_distance/set",
5466    ServersettingsAcceptTransfers => "serversettings/accept_transfers",
5467    ServersettingsAcceptTransfersSet => "serversettings/accept_transfers/set",
5468    ServersettingsStatusHeartbeatInterval => "serversettings/status_heartbeat_interval",
5469    ServersettingsStatusHeartbeatIntervalSet => "serversettings/status_heartbeat_interval/set",
5470    ServersettingsOperatorUserPermissionLevel => "serversettings/operator_user_permission_level",
5471    ServersettingsOperatorUserPermissionLevelSet => "serversettings/operator_user_permission_level/set",
5472    ServersettingsHideOnlinePlayers => "serversettings/hide_online_players",
5473    ServersettingsHideOnlinePlayersSet => "serversettings/hide_online_players/set",
5474    ServersettingsStatusReplies => "serversettings/status_replies",
5475    ServersettingsStatusRepliesSet => "serversettings/status_replies/set",
5476    ServersettingsEntityBroadcastRange => "serversettings/entity_broadcast_range",
5477    ServersettingsEntityBroadcastRangeSet => "serversettings/entity_broadcast_range/set",
5478    Gamerules => "gamerules",
5479    GamerulesUpdate => "gamerules/update",
5480    RpcDiscover => "rpc.discover",
5481}
5482}
5483
5484registry! {
5485enum OutgoingRpcMethods {
5486    NotificationServerStarted => "notification/server/started",
5487    NotificationServerStopping => "notification/server/stopping",
5488    NotificationServerSaving => "notification/server/saving",
5489    NotificationServerSaved => "notification/server/saved",
5490    NotificationServerActivity => "notification/server/activity",
5491    NotificationPlayersJoined => "notification/players/joined",
5492    NotificationPlayersLeft => "notification/players/left",
5493    NotificationOperatorsAdded => "notification/operators/added",
5494    NotificationOperatorsRemoved => "notification/operators/removed",
5495    NotificationAllowlistAdded => "notification/allowlist/added",
5496    NotificationAllowlistRemoved => "notification/allowlist/removed",
5497    NotificationIpBansAdded => "notification/ip_bans/added",
5498    NotificationIpBansRemoved => "notification/ip_bans/removed",
5499    NotificationBansAdded => "notification/bans/added",
5500    NotificationBansRemoved => "notification/bans/removed",
5501    NotificationGamerulesUpdated => "notification/gamerules/updated",
5502    NotificationServerStatus => "notification/server/status",
5503}
5504}
5505
5506registry! {
5507enum AttributeKind {
5508    Boolean => "boolean",
5509    TriState => "tri_state",
5510    Float => "float",
5511    AngleDegrees => "angle_degrees",
5512    RgbColor => "rgb_color",
5513    ArgbColor => "argb_color",
5514    Integer => "integer",
5515    MoonPhase => "moon_phase",
5516    Activity => "activity",
5517    BedRule => "bed_rule",
5518    Particle => "particle",
5519    AmbientParticles => "ambient_particles",
5520    BackgroundMusic => "background_music",
5521    AmbientSounds => "ambient_sounds",
5522}
5523}
5524
5525registry! {
5526enum EnvironmentAttribute {
5527    VisualFogColor => "visual/fog_color",
5528    VisualFogStartDistance => "visual/fog_start_distance",
5529    VisualFogEndDistance => "visual/fog_end_distance",
5530    VisualSkyFogEndDistance => "visual/sky_fog_end_distance",
5531    VisualCloudFogEndDistance => "visual/cloud_fog_end_distance",
5532    VisualWaterFogColor => "visual/water_fog_color",
5533    VisualWaterFogStartDistance => "visual/water_fog_start_distance",
5534    VisualWaterFogEndDistance => "visual/water_fog_end_distance",
5535    VisualSkyColor => "visual/sky_color",
5536    VisualSunriseSunsetColor => "visual/sunrise_sunset_color",
5537    VisualCloudColor => "visual/cloud_color",
5538    VisualCloudHeight => "visual/cloud_height",
5539    VisualSunAngle => "visual/sun_angle",
5540    VisualMoonAngle => "visual/moon_angle",
5541    VisualStarAngle => "visual/star_angle",
5542    VisualMoonPhase => "visual/moon_phase",
5543    VisualStarBrightness => "visual/star_brightness",
5544    VisualBlockLightTint => "visual/block_light_tint",
5545    VisualSkyLightColor => "visual/sky_light_color",
5546    VisualSkyLightFactor => "visual/sky_light_factor",
5547    VisualNightVisionColor => "visual/night_vision_color",
5548    VisualAmbientLightColor => "visual/ambient_light_color",
5549    VisualDefaultDripstoneParticle => "visual/default_dripstone_particle",
5550    VisualAmbientParticles => "visual/ambient_particles",
5551    AudioBackgroundMusic => "audio/background_music",
5552    AudioMusicVolume => "audio/music_volume",
5553    AudioAmbientSounds => "audio/ambient_sounds",
5554    AudioFireflyBushSounds => "audio/firefly_bush_sounds",
5555    GameplaySkyLightLevel => "gameplay/sky_light_level",
5556    GameplayCanStartRaid => "gameplay/can_start_raid",
5557    GameplayWaterEvaporates => "gameplay/water_evaporates",
5558    GameplayBedRule => "gameplay/bed_rule",
5559    GameplayRespawnAnchorWorks => "gameplay/respawn_anchor_works",
5560    GameplayNetherPortalSpawnsPiglin => "gameplay/nether_portal_spawns_piglin",
5561    GameplayFastLava => "gameplay/fast_lava",
5562    GameplayIncreasedFireBurnout => "gameplay/increased_fire_burnout",
5563    GameplayEyeblossomOpen => "gameplay/eyeblossom_open",
5564    GameplayTurtleEggHatchChance => "gameplay/turtle_egg_hatch_chance",
5565    GameplayPiglinsZombify => "gameplay/piglins_zombify",
5566    GameplaySnowGolemMelts => "gameplay/snow_golem_melts",
5567    GameplayCreakingActive => "gameplay/creaking_active",
5568    GameplaySurfaceSlimeSpawnChance => "gameplay/surface_slime_spawn_chance",
5569    GameplayCatWakingUpGiftChance => "gameplay/cat_waking_up_gift_chance",
5570    GameplayBeesStayInHive => "gameplay/bees_stay_in_hive",
5571    GameplayMonstersBurn => "gameplay/monsters_burn",
5572    GameplayCanPillagerPatrolSpawn => "gameplay/can_pillager_patrol_spawn",
5573    GameplayVillagerActivity => "gameplay/villager_activity",
5574    GameplayBabyVillagerActivity => "gameplay/baby_villager_activity",
5575}
5576}
5577
5578registry! {
5579enum GameRule {
5580    AdvanceTime => "advance_time",
5581    AdvanceWeather => "advance_weather",
5582    AllowEnteringNetherUsingPortals => "allow_entering_nether_using_portals",
5583    BlockDrops => "block_drops",
5584    BlockExplosionDropDecay => "block_explosion_drop_decay",
5585    CommandBlocksWork => "command_blocks_work",
5586    CommandBlockOutput => "command_block_output",
5587    DrowningDamage => "drowning_damage",
5588    ElytraMovementCheck => "elytra_movement_check",
5589    EnderPearlsVanishOnDeath => "ender_pearls_vanish_on_death",
5590    EntityDrops => "entity_drops",
5591    FallDamage => "fall_damage",
5592    FireDamage => "fire_damage",
5593    FireSpreadRadiusAroundPlayer => "fire_spread_radius_around_player",
5594    ForgiveDeadPlayers => "forgive_dead_players",
5595    FreezeDamage => "freeze_damage",
5596    GlobalSoundEvents => "global_sound_events",
5597    ImmediateRespawn => "immediate_respawn",
5598    KeepInventory => "keep_inventory",
5599    LavaSourceConversion => "lava_source_conversion",
5600    LimitedCrafting => "limited_crafting",
5601    LocatorBar => "locator_bar",
5602    LogAdminCommands => "log_admin_commands",
5603    MaxBlockModifications => "max_block_modifications",
5604    MaxCommandForks => "max_command_forks",
5605    MaxCommandSequenceLength => "max_command_sequence_length",
5606    MaxEntityCramming => "max_entity_cramming",
5607    MaxMinecartSpeed => "max_minecart_speed",
5608    MaxSnowAccumulationHeight => "max_snow_accumulation_height",
5609    MobDrops => "mob_drops",
5610    MobExplosionDropDecay => "mob_explosion_drop_decay",
5611    MobGriefing => "mob_griefing",
5612    NaturalHealthRegeneration => "natural_health_regeneration",
5613    PlayerMovementCheck => "player_movement_check",
5614    PlayersNetherPortalCreativeDelay => "players_nether_portal_creative_delay",
5615    PlayersNetherPortalDefaultDelay => "players_nether_portal_default_delay",
5616    PlayersSleepingPercentage => "players_sleeping_percentage",
5617    ProjectilesCanBreakBlocks => "projectiles_can_break_blocks",
5618    Pvp => "pvp",
5619    Raids => "raids",
5620    RandomTickSpeed => "random_tick_speed",
5621    ReducedDebugInfo => "reduced_debug_info",
5622    RespawnRadius => "respawn_radius",
5623    SendCommandFeedback => "send_command_feedback",
5624    ShowAdvancementMessages => "show_advancement_messages",
5625    ShowDeathMessages => "show_death_messages",
5626    SpawnerBlocksWork => "spawner_blocks_work",
5627    SpawnMobs => "spawn_mobs",
5628    SpawnMonsters => "spawn_monsters",
5629    SpawnPatrols => "spawn_patrols",
5630    SpawnPhantoms => "spawn_phantoms",
5631    SpawnWanderingTraders => "spawn_wandering_traders",
5632    SpawnWardens => "spawn_wardens",
5633    SpectatorsGenerateChunks => "spectators_generate_chunks",
5634    SpreadVines => "spread_vines",
5635    TntExplodes => "tnt_explodes",
5636    TntExplosionDropDecay => "tnt_explosion_drop_decay",
5637    UniversalAnger => "universal_anger",
5638    WaterSourceConversion => "water_source_conversion",
5639}
5640}
5641
5642registry! {
5643enum PermissionCheckKind {
5644    AlwaysPass => "always_pass",
5645    Require => "require",
5646}
5647}
5648
5649registry! {
5650enum PermissionKind {
5651    Atom => "atom",
5652    CommandLevel => "command_level",
5653}
5654}
5655
5656registry! {
5657enum SlotSourceKind {
5658    Group => "group",
5659    Filtered => "filtered",
5660    LimitSlots => "limit_slots",
5661    SlotRange => "slot_range",
5662    Contents => "contents",
5663    Empty => "empty",
5664}
5665}
5666
5667registry! {
5668enum AbstractBlockKind {
5669    Block => "block",
5670    Air => "air",
5671    Amethyst => "amethyst",
5672    AmethystCluster => "amethyst_cluster",
5673    Anvil => "anvil",
5674    AttachedStem => "attached_stem",
5675    Azalea => "azalea",
5676    BambooSapling => "bamboo_sapling",
5677    BambooStalk => "bamboo_stalk",
5678    Banner => "banner",
5679    Barrel => "barrel",
5680    Barrier => "barrier",
5681    BaseCoralFan => "base_coral_fan",
5682    BaseCoralPlant => "base_coral_plant",
5683    BaseCoralWallFan => "base_coral_wall_fan",
5684    Beacon => "beacon",
5685    Bed => "bed",
5686    Beehive => "beehive",
5687    Beetroot => "beetroot",
5688    Bell => "bell",
5689    BigDripleaf => "big_dripleaf",
5690    BigDripleafStem => "big_dripleaf_stem",
5691    BlastFurnace => "blast_furnace",
5692    BrewingStand => "brewing_stand",
5693    Brushable => "brushable",
5694    BubbleColumn => "bubble_column",
5695    BuddingAmethyst => "budding_amethyst",
5696    Bush => "bush",
5697    Button => "button",
5698    Cactus => "cactus",
5699    CactusFlower => "cactus_flower",
5700    Cake => "cake",
5701    CalibratedSculkSensor => "calibrated_sculk_sensor",
5702    Campfire => "campfire",
5703    CandleCake => "candle_cake",
5704    Candle => "candle",
5705    Carpet => "carpet",
5706    Carrot => "carrot",
5707    CartographyTable => "cartography_table",
5708    Cauldron => "cauldron",
5709    CaveVines => "cave_vines",
5710    CaveVinesPlant => "cave_vines_plant",
5711    CeilingHangingSign => "ceiling_hanging_sign",
5712    Chain => "chain",
5713    Chest => "chest",
5714    ChiseledBookShelf => "chiseled_book_shelf",
5715    ChorusFlower => "chorus_flower",
5716    ChorusPlant => "chorus_plant",
5717    Cocoa => "cocoa",
5718    ColoredFalling => "colored_falling",
5719    Command => "command",
5720    Comparator => "comparator",
5721    Composter => "composter",
5722    ConcretePowder => "concrete_powder",
5723    Conduit => "conduit",
5724    CopperBulbBlock => "copper_bulb_block",
5725    CopperChest => "copper_chest",
5726    CopperGolemStatue => "copper_golem_statue",
5727    Coral => "coral",
5728    CoralFan => "coral_fan",
5729    CoralPlant => "coral_plant",
5730    CoralWallFan => "coral_wall_fan",
5731    Crafter => "crafter",
5732    CraftingTable => "crafting_table",
5733    Crop => "crop",
5734    CryingObsidian => "crying_obsidian",
5735    DaylightDetector => "daylight_detector",
5736    DryVegetation => "dry_vegetation",
5737    DecoratedPot => "decorated_pot",
5738    DetectorRail => "detector_rail",
5739    DirtPath => "dirt_path",
5740    Dispenser => "dispenser",
5741    Door => "door",
5742    DoublePlant => "double_plant",
5743    DragonEgg => "dragon_egg",
5744    DriedGhast => "dried_ghast",
5745    DropExperience => "drop_experience",
5746    Dropper => "dropper",
5747    EnchantmentTable => "enchantment_table",
5748    EnderChest => "ender_chest",
5749    EndGateway => "end_gateway",
5750    EndPortal => "end_portal",
5751    EndPortalFrame => "end_portal_frame",
5752    EndRod => "end_rod",
5753    Eyeblossom => "eyeblossom",
5754    Farmland => "farmland",
5755    BonemealableFeaturePlacer => "bonemealable_feature_placer",
5756    Fence => "fence",
5757    FenceGate => "fence_gate",
5758    Fire => "fire",
5759    FireflyBush => "firefly_bush",
5760    Flower => "flower",
5761    FlowerPot => "flower_pot",
5762    Frogspawn => "frogspawn",
5763    FrostedIce => "frosted_ice",
5764    NetherFungus => "nether_fungus",
5765    Furnace => "furnace",
5766    GlazedTerracotta => "glazed_terracotta",
5767    GlowLichen => "glow_lichen",
5768    Grass => "grass",
5769    Grindstone => "grindstone",
5770    HalfTransparent => "half_transparent",
5771    HangingMoss => "hanging_moss",
5772    HangingRoots => "hanging_roots",
5773    Hay => "hay",
5774    HeavyCore => "heavy_core",
5775    Honey => "honey",
5776    Hopper => "hopper",
5777    HugeMushroom => "huge_mushroom",
5778    Ice => "ice",
5779    Infested => "infested",
5780    InfestedRotatedPillar => "infested_rotated_pillar",
5781    IronBars => "iron_bars",
5782    JackOLantern => "jack_o_lantern",
5783    Jigsaw => "jigsaw",
5784    Jukebox => "jukebox",
5785    Kelp => "kelp",
5786    KelpPlant => "kelp_plant",
5787    Ladder => "ladder",
5788    Lantern => "lantern",
5789    LavaCauldron => "lava_cauldron",
5790    LayeredCauldron => "layered_cauldron",
5791    LeafLitter => "leaf_litter",
5792    Lectern => "lectern",
5793    Lever => "lever",
5794    Light => "light",
5795    LightningRod => "lightning_rod",
5796    Liquid => "liquid",
5797    Loom => "loom",
5798    Magma => "magma",
5799    MangroveLeaves => "mangrove_leaves",
5800    MangrovePropagule => "mangrove_propagule",
5801    MangroveRoots => "mangrove_roots",
5802    MossyCarpet => "mossy_carpet",
5803    MovingPiston => "moving_piston",
5804    Mud => "mud",
5805    Multiface => "multiface",
5806    Mushroom => "mushroom",
5807    Mycelium => "mycelium",
5808    NetherPortal => "nether_portal",
5809    Netherrack => "netherrack",
5810    NetherSprouts => "nether_sprouts",
5811    NetherWart => "nether_wart",
5812    Note => "note",
5813    Nylium => "nylium",
5814    Observer => "observer",
5815    Piglinwallskull => "piglinwallskull",
5816    FlowerBed => "flower_bed",
5817    PistonBase => "piston_base",
5818    PistonHead => "piston_head",
5819    PitcherCrop => "pitcher_crop",
5820    PlayerHead => "player_head",
5821    PlayerWallHead => "player_wall_head",
5822    PointedDripstone => "pointed_dripstone",
5823    Potato => "potato",
5824    PowderSnow => "powder_snow",
5825    Powered => "powered",
5826    PoweredRail => "powered_rail",
5827    PotentSulfur => "potent_sulfur",
5828    PressurePlate => "pressure_plate",
5829    Pumpkin => "pumpkin",
5830    Rail => "rail",
5831    RedstoneLamp => "redstone_lamp",
5832    RedstoneOre => "redstone_ore",
5833    RedstoneTorch => "redstone_torch",
5834    RedstoneWallTorch => "redstone_wall_torch",
5835    RedstoneWire => "redstone_wire",
5836    Repeater => "repeater",
5837    RespawnAnchor => "respawn_anchor",
5838    RootedDirt => "rooted_dirt",
5839    NetherRoots => "nether_roots",
5840    RotatedPillar => "rotated_pillar",
5841    Sapling => "sapling",
5842    Sand => "sand",
5843    Scaffolding => "scaffolding",
5844    SculkCatalyst => "sculk_catalyst",
5845    Sculk => "sculk",
5846    SculkSensor => "sculk_sensor",
5847    SculkShrieker => "sculk_shrieker",
5848    SculkVein => "sculk_vein",
5849    Seagrass => "seagrass",
5850    SeaPickle => "sea_pickle",
5851    Shelf => "shelf",
5852    ShortDryGrass => "short_dry_grass",
5853    ShulkerBox => "shulker_box",
5854    Skull => "skull",
5855    Slab => "slab",
5856    Slime => "slime",
5857    SmallDripleaf => "small_dripleaf",
5858    SmithingTable => "smithing_table",
5859    Smoker => "smoker",
5860    SnifferEgg => "sniffer_egg",
5861    SnowLayer => "snow_layer",
5862    SnowyDirt => "snowy_dirt",
5863    SoulFire => "soul_fire",
5864    SoulSand => "soul_sand",
5865    Spawner => "spawner",
5866    CreakingHeart => "creaking_heart",
5867    Sponge => "sponge",
5868    SporeBlossom => "spore_blossom",
5869    StainedGlassPane => "stained_glass_pane",
5870    StainedGlass => "stained_glass",
5871    Stair => "stair",
5872    StandingSign => "standing_sign",
5873    Stem => "stem",
5874    Stonecutter => "stonecutter",
5875    Structure => "structure",
5876    StructureVoid => "structure_void",
5877    SugarCane => "sugar_cane",
5878    SulfurSpike => "sulfur_spike",
5879    SweetBerryBush => "sweet_berry_bush",
5880    TallDryGrass => "tall_dry_grass",
5881    TallFlower => "tall_flower",
5882    TallGrass => "tall_grass",
5883    TallSeagrass => "tall_seagrass",
5884    Target => "target",
5885    Test => "test",
5886    TestInstance => "test_instance",
5887    TintedGlass => "tinted_glass",
5888    TintedParticleLeaves => "tinted_particle_leaves",
5889    Tnt => "tnt",
5890    TorchflowerCrop => "torchflower_crop",
5891    Torch => "torch",
5892    Transparent => "transparent",
5893    Trapdoor => "trapdoor",
5894    TrappedChest => "trapped_chest",
5895    TrialSpawner => "trial_spawner",
5896    TripWireHook => "trip_wire_hook",
5897    Tripwire => "tripwire",
5898    TurtleEgg => "turtle_egg",
5899    TwistingVinesPlant => "twisting_vines_plant",
5900    TwistingVines => "twisting_vines",
5901    UntintedParticleLeaves => "untinted_particle_leaves",
5902    Vault => "vault",
5903    Vine => "vine",
5904    WallBanner => "wall_banner",
5905    WallHangingSign => "wall_hanging_sign",
5906    WallSign => "wall_sign",
5907    WallSkull => "wall_skull",
5908    WallTorch => "wall_torch",
5909    Wall => "wall",
5910    LilyPad => "lily_pad",
5911    WaterloggedTransparent => "waterlogged_transparent",
5912    WeatheringCopperBar => "weathering_copper_bar",
5913    WeatheringCopperBulb => "weathering_copper_bulb",
5914    WeatheringCopperChain => "weathering_copper_chain",
5915    WeatheringCopperChest => "weathering_copper_chest",
5916    WeatheringCopperDoor => "weathering_copper_door",
5917    WeatheringCopperFull => "weathering_copper_full",
5918    WeatheringCopperGolemStatue => "weathering_copper_golem_statue",
5919    WeatheringCopperGrate => "weathering_copper_grate",
5920    WeatheringCopperSlab => "weathering_copper_slab",
5921    WeatheringCopperStair => "weathering_copper_stair",
5922    WeatheringCopperTrapdoor => "weathering_copper_trapdoor",
5923    WeatheringLantern => "weathering_lantern",
5924    WeatheringLightningRod => "weathering_lightning_rod",
5925    Web => "web",
5926    WeepingVinesPlant => "weeping_vines_plant",
5927    WeepingVines => "weeping_vines",
5928    WeightedPressurePlate => "weighted_pressure_plate",
5929    WetSponge => "wet_sponge",
5930    WitherRose => "wither_rose",
5931    WitherSkull => "wither_skull",
5932    WitherWallSkull => "wither_wall_skull",
5933    WoolCarpet => "wool_carpet",
5934}
5935}
5936
5937registry! {
5938/// Every type of item in the game.
5939///
5940/// You might find it useful in some cases to check for categories of items
5941/// with [`azalea_registry::tags::items`](crate::tags::items), like this
5942///
5943/// ```
5944/// let item = azalea_registry::Item::OakLog;
5945/// let is_log = azalea_registry::tags::items::LOGS.contains(&item);
5946/// assert!(is_log);
5947enum ItemKind {
5948    Air => "air",
5949    Stone => "stone",
5950    Granite => "granite",
5951    PolishedGranite => "polished_granite",
5952    Diorite => "diorite",
5953    PolishedDiorite => "polished_diorite",
5954    Andesite => "andesite",
5955    PolishedAndesite => "polished_andesite",
5956    Deepslate => "deepslate",
5957    CobbledDeepslate => "cobbled_deepslate",
5958    PolishedDeepslate => "polished_deepslate",
5959    Calcite => "calcite",
5960    Tuff => "tuff",
5961    TuffSlab => "tuff_slab",
5962    TuffStairs => "tuff_stairs",
5963    TuffWall => "tuff_wall",
5964    ChiseledTuff => "chiseled_tuff",
5965    PolishedTuff => "polished_tuff",
5966    PolishedTuffSlab => "polished_tuff_slab",
5967    PolishedTuffStairs => "polished_tuff_stairs",
5968    PolishedTuffWall => "polished_tuff_wall",
5969    TuffBricks => "tuff_bricks",
5970    TuffBrickSlab => "tuff_brick_slab",
5971    TuffBrickStairs => "tuff_brick_stairs",
5972    TuffBrickWall => "tuff_brick_wall",
5973    ChiseledTuffBricks => "chiseled_tuff_bricks",
5974    Sulfur => "sulfur",
5975    PotentSulfur => "potent_sulfur",
5976    SulfurSlab => "sulfur_slab",
5977    SulfurStairs => "sulfur_stairs",
5978    SulfurWall => "sulfur_wall",
5979    PolishedSulfur => "polished_sulfur",
5980    PolishedSulfurSlab => "polished_sulfur_slab",
5981    PolishedSulfurStairs => "polished_sulfur_stairs",
5982    PolishedSulfurWall => "polished_sulfur_wall",
5983    SulfurBricks => "sulfur_bricks",
5984    SulfurBrickSlab => "sulfur_brick_slab",
5985    SulfurBrickStairs => "sulfur_brick_stairs",
5986    SulfurBrickWall => "sulfur_brick_wall",
5987    ChiseledSulfur => "chiseled_sulfur",
5988    Cinnabar => "cinnabar",
5989    CinnabarSlab => "cinnabar_slab",
5990    CinnabarStairs => "cinnabar_stairs",
5991    CinnabarWall => "cinnabar_wall",
5992    PolishedCinnabar => "polished_cinnabar",
5993    PolishedCinnabarSlab => "polished_cinnabar_slab",
5994    PolishedCinnabarStairs => "polished_cinnabar_stairs",
5995    PolishedCinnabarWall => "polished_cinnabar_wall",
5996    CinnabarBricks => "cinnabar_bricks",
5997    CinnabarBrickSlab => "cinnabar_brick_slab",
5998    CinnabarBrickStairs => "cinnabar_brick_stairs",
5999    CinnabarBrickWall => "cinnabar_brick_wall",
6000    ChiseledCinnabar => "chiseled_cinnabar",
6001    DripstoneBlock => "dripstone_block",
6002    GrassBlock => "grass_block",
6003    Dirt => "dirt",
6004    CoarseDirt => "coarse_dirt",
6005    Podzol => "podzol",
6006    RootedDirt => "rooted_dirt",
6007    Mud => "mud",
6008    CrimsonNylium => "crimson_nylium",
6009    WarpedNylium => "warped_nylium",
6010    Cobblestone => "cobblestone",
6011    OakPlanks => "oak_planks",
6012    SprucePlanks => "spruce_planks",
6013    BirchPlanks => "birch_planks",
6014    JunglePlanks => "jungle_planks",
6015    AcaciaPlanks => "acacia_planks",
6016    CherryPlanks => "cherry_planks",
6017    DarkOakPlanks => "dark_oak_planks",
6018    PaleOakPlanks => "pale_oak_planks",
6019    MangrovePlanks => "mangrove_planks",
6020    BambooPlanks => "bamboo_planks",
6021    CrimsonPlanks => "crimson_planks",
6022    WarpedPlanks => "warped_planks",
6023    BambooMosaic => "bamboo_mosaic",
6024    OakSapling => "oak_sapling",
6025    SpruceSapling => "spruce_sapling",
6026    BirchSapling => "birch_sapling",
6027    JungleSapling => "jungle_sapling",
6028    AcaciaSapling => "acacia_sapling",
6029    CherrySapling => "cherry_sapling",
6030    DarkOakSapling => "dark_oak_sapling",
6031    PaleOakSapling => "pale_oak_sapling",
6032    MangrovePropagule => "mangrove_propagule",
6033    Bedrock => "bedrock",
6034    Sand => "sand",
6035    SuspiciousSand => "suspicious_sand",
6036    SuspiciousGravel => "suspicious_gravel",
6037    RedSand => "red_sand",
6038    Gravel => "gravel",
6039    CoalOre => "coal_ore",
6040    DeepslateCoalOre => "deepslate_coal_ore",
6041    IronOre => "iron_ore",
6042    DeepslateIronOre => "deepslate_iron_ore",
6043    CopperOre => "copper_ore",
6044    DeepslateCopperOre => "deepslate_copper_ore",
6045    GoldOre => "gold_ore",
6046    DeepslateGoldOre => "deepslate_gold_ore",
6047    RedstoneOre => "redstone_ore",
6048    DeepslateRedstoneOre => "deepslate_redstone_ore",
6049    EmeraldOre => "emerald_ore",
6050    DeepslateEmeraldOre => "deepslate_emerald_ore",
6051    LapisOre => "lapis_ore",
6052    DeepslateLapisOre => "deepslate_lapis_ore",
6053    DiamondOre => "diamond_ore",
6054    DeepslateDiamondOre => "deepslate_diamond_ore",
6055    NetherGoldOre => "nether_gold_ore",
6056    NetherQuartzOre => "nether_quartz_ore",
6057    AncientDebris => "ancient_debris",
6058    CoalBlock => "coal_block",
6059    RawIronBlock => "raw_iron_block",
6060    RawCopperBlock => "raw_copper_block",
6061    RawGoldBlock => "raw_gold_block",
6062    HeavyCore => "heavy_core",
6063    AmethystBlock => "amethyst_block",
6064    BuddingAmethyst => "budding_amethyst",
6065    IronBlock => "iron_block",
6066    CopperBlock => "copper_block",
6067    ExposedCopper => "exposed_copper",
6068    WeatheredCopper => "weathered_copper",
6069    OxidizedCopper => "oxidized_copper",
6070    WaxedCopperBlock => "waxed_copper_block",
6071    WaxedExposedCopper => "waxed_exposed_copper",
6072    WaxedWeatheredCopper => "waxed_weathered_copper",
6073    WaxedOxidizedCopper => "waxed_oxidized_copper",
6074    GoldBlock => "gold_block",
6075    DiamondBlock => "diamond_block",
6076    NetheriteBlock => "netherite_block",
6077    ChiseledCopper => "chiseled_copper",
6078    ExposedChiseledCopper => "exposed_chiseled_copper",
6079    WeatheredChiseledCopper => "weathered_chiseled_copper",
6080    OxidizedChiseledCopper => "oxidized_chiseled_copper",
6081    WaxedChiseledCopper => "waxed_chiseled_copper",
6082    WaxedExposedChiseledCopper => "waxed_exposed_chiseled_copper",
6083    WaxedWeatheredChiseledCopper => "waxed_weathered_chiseled_copper",
6084    WaxedOxidizedChiseledCopper => "waxed_oxidized_chiseled_copper",
6085    CutCopper => "cut_copper",
6086    ExposedCutCopper => "exposed_cut_copper",
6087    WeatheredCutCopper => "weathered_cut_copper",
6088    OxidizedCutCopper => "oxidized_cut_copper",
6089    WaxedCutCopper => "waxed_cut_copper",
6090    WaxedExposedCutCopper => "waxed_exposed_cut_copper",
6091    WaxedWeatheredCutCopper => "waxed_weathered_cut_copper",
6092    WaxedOxidizedCutCopper => "waxed_oxidized_cut_copper",
6093    CutCopperStairs => "cut_copper_stairs",
6094    ExposedCutCopperStairs => "exposed_cut_copper_stairs",
6095    WeatheredCutCopperStairs => "weathered_cut_copper_stairs",
6096    OxidizedCutCopperStairs => "oxidized_cut_copper_stairs",
6097    WaxedCutCopperStairs => "waxed_cut_copper_stairs",
6098    WaxedExposedCutCopperStairs => "waxed_exposed_cut_copper_stairs",
6099    WaxedWeatheredCutCopperStairs => "waxed_weathered_cut_copper_stairs",
6100    WaxedOxidizedCutCopperStairs => "waxed_oxidized_cut_copper_stairs",
6101    CutCopperSlab => "cut_copper_slab",
6102    ExposedCutCopperSlab => "exposed_cut_copper_slab",
6103    WeatheredCutCopperSlab => "weathered_cut_copper_slab",
6104    OxidizedCutCopperSlab => "oxidized_cut_copper_slab",
6105    WaxedCutCopperSlab => "waxed_cut_copper_slab",
6106    WaxedExposedCutCopperSlab => "waxed_exposed_cut_copper_slab",
6107    WaxedWeatheredCutCopperSlab => "waxed_weathered_cut_copper_slab",
6108    WaxedOxidizedCutCopperSlab => "waxed_oxidized_cut_copper_slab",
6109    OakLog => "oak_log",
6110    SpruceLog => "spruce_log",
6111    BirchLog => "birch_log",
6112    JungleLog => "jungle_log",
6113    AcaciaLog => "acacia_log",
6114    CherryLog => "cherry_log",
6115    PaleOakLog => "pale_oak_log",
6116    DarkOakLog => "dark_oak_log",
6117    MangroveLog => "mangrove_log",
6118    MangroveRoots => "mangrove_roots",
6119    MuddyMangroveRoots => "muddy_mangrove_roots",
6120    CrimsonStem => "crimson_stem",
6121    WarpedStem => "warped_stem",
6122    BambooBlock => "bamboo_block",
6123    StrippedOakLog => "stripped_oak_log",
6124    StrippedSpruceLog => "stripped_spruce_log",
6125    StrippedBirchLog => "stripped_birch_log",
6126    StrippedJungleLog => "stripped_jungle_log",
6127    StrippedAcaciaLog => "stripped_acacia_log",
6128    StrippedCherryLog => "stripped_cherry_log",
6129    StrippedDarkOakLog => "stripped_dark_oak_log",
6130    StrippedPaleOakLog => "stripped_pale_oak_log",
6131    StrippedMangroveLog => "stripped_mangrove_log",
6132    StrippedCrimsonStem => "stripped_crimson_stem",
6133    StrippedWarpedStem => "stripped_warped_stem",
6134    StrippedOakWood => "stripped_oak_wood",
6135    StrippedSpruceWood => "stripped_spruce_wood",
6136    StrippedBirchWood => "stripped_birch_wood",
6137    StrippedJungleWood => "stripped_jungle_wood",
6138    StrippedAcaciaWood => "stripped_acacia_wood",
6139    StrippedCherryWood => "stripped_cherry_wood",
6140    StrippedDarkOakWood => "stripped_dark_oak_wood",
6141    StrippedPaleOakWood => "stripped_pale_oak_wood",
6142    StrippedMangroveWood => "stripped_mangrove_wood",
6143    StrippedCrimsonHyphae => "stripped_crimson_hyphae",
6144    StrippedWarpedHyphae => "stripped_warped_hyphae",
6145    StrippedBambooBlock => "stripped_bamboo_block",
6146    OakWood => "oak_wood",
6147    SpruceWood => "spruce_wood",
6148    BirchWood => "birch_wood",
6149    JungleWood => "jungle_wood",
6150    AcaciaWood => "acacia_wood",
6151    CherryWood => "cherry_wood",
6152    PaleOakWood => "pale_oak_wood",
6153    DarkOakWood => "dark_oak_wood",
6154    MangroveWood => "mangrove_wood",
6155    CrimsonHyphae => "crimson_hyphae",
6156    WarpedHyphae => "warped_hyphae",
6157    OakLeaves => "oak_leaves",
6158    SpruceLeaves => "spruce_leaves",
6159    BirchLeaves => "birch_leaves",
6160    JungleLeaves => "jungle_leaves",
6161    AcaciaLeaves => "acacia_leaves",
6162    CherryLeaves => "cherry_leaves",
6163    DarkOakLeaves => "dark_oak_leaves",
6164    PaleOakLeaves => "pale_oak_leaves",
6165    MangroveLeaves => "mangrove_leaves",
6166    AzaleaLeaves => "azalea_leaves",
6167    FloweringAzaleaLeaves => "flowering_azalea_leaves",
6168    Sponge => "sponge",
6169    WetSponge => "wet_sponge",
6170    Glass => "glass",
6171    TintedGlass => "tinted_glass",
6172    LapisBlock => "lapis_block",
6173    Sandstone => "sandstone",
6174    ChiseledSandstone => "chiseled_sandstone",
6175    CutSandstone => "cut_sandstone",
6176    Cobweb => "cobweb",
6177    ShortGrass => "short_grass",
6178    Fern => "fern",
6179    Bush => "bush",
6180    Azalea => "azalea",
6181    FloweringAzalea => "flowering_azalea",
6182    DeadBush => "dead_bush",
6183    FireflyBush => "firefly_bush",
6184    ShortDryGrass => "short_dry_grass",
6185    TallDryGrass => "tall_dry_grass",
6186    Seagrass => "seagrass",
6187    SeaPickle => "sea_pickle",
6188    WhiteWool => "white_wool",
6189    OrangeWool => "orange_wool",
6190    MagentaWool => "magenta_wool",
6191    LightBlueWool => "light_blue_wool",
6192    YellowWool => "yellow_wool",
6193    LimeWool => "lime_wool",
6194    PinkWool => "pink_wool",
6195    GrayWool => "gray_wool",
6196    LightGrayWool => "light_gray_wool",
6197    CyanWool => "cyan_wool",
6198    PurpleWool => "purple_wool",
6199    BlueWool => "blue_wool",
6200    BrownWool => "brown_wool",
6201    GreenWool => "green_wool",
6202    RedWool => "red_wool",
6203    BlackWool => "black_wool",
6204    Dandelion => "dandelion",
6205    GoldenDandelion => "golden_dandelion",
6206    OpenEyeblossom => "open_eyeblossom",
6207    ClosedEyeblossom => "closed_eyeblossom",
6208    Poppy => "poppy",
6209    BlueOrchid => "blue_orchid",
6210    Allium => "allium",
6211    AzureBluet => "azure_bluet",
6212    RedTulip => "red_tulip",
6213    OrangeTulip => "orange_tulip",
6214    WhiteTulip => "white_tulip",
6215    PinkTulip => "pink_tulip",
6216    OxeyeDaisy => "oxeye_daisy",
6217    Cornflower => "cornflower",
6218    LilyOfTheValley => "lily_of_the_valley",
6219    WitherRose => "wither_rose",
6220    Torchflower => "torchflower",
6221    PitcherPlant => "pitcher_plant",
6222    SporeBlossom => "spore_blossom",
6223    BrownMushroom => "brown_mushroom",
6224    RedMushroom => "red_mushroom",
6225    CrimsonFungus => "crimson_fungus",
6226    WarpedFungus => "warped_fungus",
6227    CrimsonRoots => "crimson_roots",
6228    WarpedRoots => "warped_roots",
6229    NetherSprouts => "nether_sprouts",
6230    WeepingVines => "weeping_vines",
6231    TwistingVines => "twisting_vines",
6232    SugarCane => "sugar_cane",
6233    Kelp => "kelp",
6234    PinkPetals => "pink_petals",
6235    Wildflowers => "wildflowers",
6236    LeafLitter => "leaf_litter",
6237    MossCarpet => "moss_carpet",
6238    MossBlock => "moss_block",
6239    PaleMossCarpet => "pale_moss_carpet",
6240    PaleHangingMoss => "pale_hanging_moss",
6241    PaleMossBlock => "pale_moss_block",
6242    HangingRoots => "hanging_roots",
6243    BigDripleaf => "big_dripleaf",
6244    SmallDripleaf => "small_dripleaf",
6245    Bamboo => "bamboo",
6246    OakSlab => "oak_slab",
6247    SpruceSlab => "spruce_slab",
6248    BirchSlab => "birch_slab",
6249    JungleSlab => "jungle_slab",
6250    AcaciaSlab => "acacia_slab",
6251    CherrySlab => "cherry_slab",
6252    DarkOakSlab => "dark_oak_slab",
6253    PaleOakSlab => "pale_oak_slab",
6254    MangroveSlab => "mangrove_slab",
6255    BambooSlab => "bamboo_slab",
6256    BambooMosaicSlab => "bamboo_mosaic_slab",
6257    CrimsonSlab => "crimson_slab",
6258    WarpedSlab => "warped_slab",
6259    StoneSlab => "stone_slab",
6260    SmoothStoneSlab => "smooth_stone_slab",
6261    SandstoneSlab => "sandstone_slab",
6262    CutSandstoneSlab => "cut_sandstone_slab",
6263    PetrifiedOakSlab => "petrified_oak_slab",
6264    CobblestoneSlab => "cobblestone_slab",
6265    BrickSlab => "brick_slab",
6266    StoneBrickSlab => "stone_brick_slab",
6267    MudBrickSlab => "mud_brick_slab",
6268    NetherBrickSlab => "nether_brick_slab",
6269    QuartzSlab => "quartz_slab",
6270    RedSandstoneSlab => "red_sandstone_slab",
6271    CutRedSandstoneSlab => "cut_red_sandstone_slab",
6272    PurpurSlab => "purpur_slab",
6273    PrismarineSlab => "prismarine_slab",
6274    PrismarineBrickSlab => "prismarine_brick_slab",
6275    DarkPrismarineSlab => "dark_prismarine_slab",
6276    SmoothQuartz => "smooth_quartz",
6277    SmoothRedSandstone => "smooth_red_sandstone",
6278    SmoothSandstone => "smooth_sandstone",
6279    SmoothStone => "smooth_stone",
6280    Bricks => "bricks",
6281    AcaciaShelf => "acacia_shelf",
6282    BambooShelf => "bamboo_shelf",
6283    BirchShelf => "birch_shelf",
6284    CherryShelf => "cherry_shelf",
6285    CrimsonShelf => "crimson_shelf",
6286    DarkOakShelf => "dark_oak_shelf",
6287    JungleShelf => "jungle_shelf",
6288    MangroveShelf => "mangrove_shelf",
6289    OakShelf => "oak_shelf",
6290    PaleOakShelf => "pale_oak_shelf",
6291    SpruceShelf => "spruce_shelf",
6292    WarpedShelf => "warped_shelf",
6293    Bookshelf => "bookshelf",
6294    ChiseledBookshelf => "chiseled_bookshelf",
6295    DecoratedPot => "decorated_pot",
6296    MossyCobblestone => "mossy_cobblestone",
6297    Obsidian => "obsidian",
6298    Torch => "torch",
6299    EndRod => "end_rod",
6300    ChorusPlant => "chorus_plant",
6301    ChorusFlower => "chorus_flower",
6302    PurpurBlock => "purpur_block",
6303    PurpurPillar => "purpur_pillar",
6304    PurpurStairs => "purpur_stairs",
6305    Spawner => "spawner",
6306    CreakingHeart => "creaking_heart",
6307    Chest => "chest",
6308    CraftingTable => "crafting_table",
6309    Farmland => "farmland",
6310    Furnace => "furnace",
6311    Ladder => "ladder",
6312    CobblestoneStairs => "cobblestone_stairs",
6313    Snow => "snow",
6314    Ice => "ice",
6315    SnowBlock => "snow_block",
6316    Cactus => "cactus",
6317    CactusFlower => "cactus_flower",
6318    Clay => "clay",
6319    Jukebox => "jukebox",
6320    OakFence => "oak_fence",
6321    SpruceFence => "spruce_fence",
6322    BirchFence => "birch_fence",
6323    JungleFence => "jungle_fence",
6324    AcaciaFence => "acacia_fence",
6325    CherryFence => "cherry_fence",
6326    DarkOakFence => "dark_oak_fence",
6327    PaleOakFence => "pale_oak_fence",
6328    MangroveFence => "mangrove_fence",
6329    BambooFence => "bamboo_fence",
6330    CrimsonFence => "crimson_fence",
6331    WarpedFence => "warped_fence",
6332    Pumpkin => "pumpkin",
6333    CarvedPumpkin => "carved_pumpkin",
6334    JackOLantern => "jack_o_lantern",
6335    Netherrack => "netherrack",
6336    SoulSand => "soul_sand",
6337    SoulSoil => "soul_soil",
6338    Basalt => "basalt",
6339    PolishedBasalt => "polished_basalt",
6340    SmoothBasalt => "smooth_basalt",
6341    SoulTorch => "soul_torch",
6342    CopperTorch => "copper_torch",
6343    Glowstone => "glowstone",
6344    InfestedStone => "infested_stone",
6345    InfestedCobblestone => "infested_cobblestone",
6346    InfestedStoneBricks => "infested_stone_bricks",
6347    InfestedMossyStoneBricks => "infested_mossy_stone_bricks",
6348    InfestedCrackedStoneBricks => "infested_cracked_stone_bricks",
6349    InfestedChiseledStoneBricks => "infested_chiseled_stone_bricks",
6350    InfestedDeepslate => "infested_deepslate",
6351    StoneBricks => "stone_bricks",
6352    MossyStoneBricks => "mossy_stone_bricks",
6353    CrackedStoneBricks => "cracked_stone_bricks",
6354    ChiseledStoneBricks => "chiseled_stone_bricks",
6355    PackedMud => "packed_mud",
6356    MudBricks => "mud_bricks",
6357    DeepslateBricks => "deepslate_bricks",
6358    CrackedDeepslateBricks => "cracked_deepslate_bricks",
6359    DeepslateTiles => "deepslate_tiles",
6360    CrackedDeepslateTiles => "cracked_deepslate_tiles",
6361    ChiseledDeepslate => "chiseled_deepslate",
6362    ReinforcedDeepslate => "reinforced_deepslate",
6363    BrownMushroomBlock => "brown_mushroom_block",
6364    RedMushroomBlock => "red_mushroom_block",
6365    MushroomStem => "mushroom_stem",
6366    IronBars => "iron_bars",
6367    CopperBars => "copper_bars",
6368    ExposedCopperBars => "exposed_copper_bars",
6369    WeatheredCopperBars => "weathered_copper_bars",
6370    OxidizedCopperBars => "oxidized_copper_bars",
6371    WaxedCopperBars => "waxed_copper_bars",
6372    WaxedExposedCopperBars => "waxed_exposed_copper_bars",
6373    WaxedWeatheredCopperBars => "waxed_weathered_copper_bars",
6374    WaxedOxidizedCopperBars => "waxed_oxidized_copper_bars",
6375    IronChain => "iron_chain",
6376    CopperChain => "copper_chain",
6377    ExposedCopperChain => "exposed_copper_chain",
6378    WeatheredCopperChain => "weathered_copper_chain",
6379    OxidizedCopperChain => "oxidized_copper_chain",
6380    WaxedCopperChain => "waxed_copper_chain",
6381    WaxedExposedCopperChain => "waxed_exposed_copper_chain",
6382    WaxedWeatheredCopperChain => "waxed_weathered_copper_chain",
6383    WaxedOxidizedCopperChain => "waxed_oxidized_copper_chain",
6384    GlassPane => "glass_pane",
6385    Melon => "melon",
6386    Vine => "vine",
6387    GlowLichen => "glow_lichen",
6388    ResinClump => "resin_clump",
6389    ResinBlock => "resin_block",
6390    ResinBricks => "resin_bricks",
6391    ResinBrickStairs => "resin_brick_stairs",
6392    ResinBrickSlab => "resin_brick_slab",
6393    ResinBrickWall => "resin_brick_wall",
6394    ChiseledResinBricks => "chiseled_resin_bricks",
6395    BrickStairs => "brick_stairs",
6396    StoneBrickStairs => "stone_brick_stairs",
6397    MudBrickStairs => "mud_brick_stairs",
6398    Mycelium => "mycelium",
6399    LilyPad => "lily_pad",
6400    NetherBricks => "nether_bricks",
6401    CrackedNetherBricks => "cracked_nether_bricks",
6402    ChiseledNetherBricks => "chiseled_nether_bricks",
6403    NetherBrickFence => "nether_brick_fence",
6404    NetherBrickStairs => "nether_brick_stairs",
6405    Sculk => "sculk",
6406    SculkVein => "sculk_vein",
6407    SculkCatalyst => "sculk_catalyst",
6408    SculkShrieker => "sculk_shrieker",
6409    EnchantingTable => "enchanting_table",
6410    EndPortalFrame => "end_portal_frame",
6411    EndStone => "end_stone",
6412    EndStoneBricks => "end_stone_bricks",
6413    DragonEgg => "dragon_egg",
6414    SandstoneStairs => "sandstone_stairs",
6415    EnderChest => "ender_chest",
6416    EmeraldBlock => "emerald_block",
6417    OakStairs => "oak_stairs",
6418    SpruceStairs => "spruce_stairs",
6419    BirchStairs => "birch_stairs",
6420    JungleStairs => "jungle_stairs",
6421    AcaciaStairs => "acacia_stairs",
6422    CherryStairs => "cherry_stairs",
6423    DarkOakStairs => "dark_oak_stairs",
6424    PaleOakStairs => "pale_oak_stairs",
6425    MangroveStairs => "mangrove_stairs",
6426    BambooStairs => "bamboo_stairs",
6427    BambooMosaicStairs => "bamboo_mosaic_stairs",
6428    CrimsonStairs => "crimson_stairs",
6429    WarpedStairs => "warped_stairs",
6430    CommandBlock => "command_block",
6431    Beacon => "beacon",
6432    CobblestoneWall => "cobblestone_wall",
6433    MossyCobblestoneWall => "mossy_cobblestone_wall",
6434    BrickWall => "brick_wall",
6435    PrismarineWall => "prismarine_wall",
6436    RedSandstoneWall => "red_sandstone_wall",
6437    MossyStoneBrickWall => "mossy_stone_brick_wall",
6438    GraniteWall => "granite_wall",
6439    StoneBrickWall => "stone_brick_wall",
6440    MudBrickWall => "mud_brick_wall",
6441    NetherBrickWall => "nether_brick_wall",
6442    AndesiteWall => "andesite_wall",
6443    RedNetherBrickWall => "red_nether_brick_wall",
6444    SandstoneWall => "sandstone_wall",
6445    EndStoneBrickWall => "end_stone_brick_wall",
6446    DioriteWall => "diorite_wall",
6447    BlackstoneWall => "blackstone_wall",
6448    PolishedBlackstoneWall => "polished_blackstone_wall",
6449    PolishedBlackstoneBrickWall => "polished_blackstone_brick_wall",
6450    CobbledDeepslateWall => "cobbled_deepslate_wall",
6451    PolishedDeepslateWall => "polished_deepslate_wall",
6452    DeepslateBrickWall => "deepslate_brick_wall",
6453    DeepslateTileWall => "deepslate_tile_wall",
6454    Anvil => "anvil",
6455    ChippedAnvil => "chipped_anvil",
6456    DamagedAnvil => "damaged_anvil",
6457    ChiseledQuartzBlock => "chiseled_quartz_block",
6458    QuartzBlock => "quartz_block",
6459    QuartzBricks => "quartz_bricks",
6460    QuartzPillar => "quartz_pillar",
6461    QuartzStairs => "quartz_stairs",
6462    WhiteTerracotta => "white_terracotta",
6463    OrangeTerracotta => "orange_terracotta",
6464    MagentaTerracotta => "magenta_terracotta",
6465    LightBlueTerracotta => "light_blue_terracotta",
6466    YellowTerracotta => "yellow_terracotta",
6467    LimeTerracotta => "lime_terracotta",
6468    PinkTerracotta => "pink_terracotta",
6469    GrayTerracotta => "gray_terracotta",
6470    LightGrayTerracotta => "light_gray_terracotta",
6471    CyanTerracotta => "cyan_terracotta",
6472    PurpleTerracotta => "purple_terracotta",
6473    BlueTerracotta => "blue_terracotta",
6474    BrownTerracotta => "brown_terracotta",
6475    GreenTerracotta => "green_terracotta",
6476    RedTerracotta => "red_terracotta",
6477    BlackTerracotta => "black_terracotta",
6478    Barrier => "barrier",
6479    Light => "light",
6480    HayBlock => "hay_block",
6481    WhiteCarpet => "white_carpet",
6482    OrangeCarpet => "orange_carpet",
6483    MagentaCarpet => "magenta_carpet",
6484    LightBlueCarpet => "light_blue_carpet",
6485    YellowCarpet => "yellow_carpet",
6486    LimeCarpet => "lime_carpet",
6487    PinkCarpet => "pink_carpet",
6488    GrayCarpet => "gray_carpet",
6489    LightGrayCarpet => "light_gray_carpet",
6490    CyanCarpet => "cyan_carpet",
6491    PurpleCarpet => "purple_carpet",
6492    BlueCarpet => "blue_carpet",
6493    BrownCarpet => "brown_carpet",
6494    GreenCarpet => "green_carpet",
6495    RedCarpet => "red_carpet",
6496    BlackCarpet => "black_carpet",
6497    Terracotta => "terracotta",
6498    PackedIce => "packed_ice",
6499    DirtPath => "dirt_path",
6500    Sunflower => "sunflower",
6501    Lilac => "lilac",
6502    RoseBush => "rose_bush",
6503    Peony => "peony",
6504    TallGrass => "tall_grass",
6505    LargeFern => "large_fern",
6506    WhiteStainedGlass => "white_stained_glass",
6507    OrangeStainedGlass => "orange_stained_glass",
6508    MagentaStainedGlass => "magenta_stained_glass",
6509    LightBlueStainedGlass => "light_blue_stained_glass",
6510    YellowStainedGlass => "yellow_stained_glass",
6511    LimeStainedGlass => "lime_stained_glass",
6512    PinkStainedGlass => "pink_stained_glass",
6513    GrayStainedGlass => "gray_stained_glass",
6514    LightGrayStainedGlass => "light_gray_stained_glass",
6515    CyanStainedGlass => "cyan_stained_glass",
6516    PurpleStainedGlass => "purple_stained_glass",
6517    BlueStainedGlass => "blue_stained_glass",
6518    BrownStainedGlass => "brown_stained_glass",
6519    GreenStainedGlass => "green_stained_glass",
6520    RedStainedGlass => "red_stained_glass",
6521    BlackStainedGlass => "black_stained_glass",
6522    WhiteStainedGlassPane => "white_stained_glass_pane",
6523    OrangeStainedGlassPane => "orange_stained_glass_pane",
6524    MagentaStainedGlassPane => "magenta_stained_glass_pane",
6525    LightBlueStainedGlassPane => "light_blue_stained_glass_pane",
6526    YellowStainedGlassPane => "yellow_stained_glass_pane",
6527    LimeStainedGlassPane => "lime_stained_glass_pane",
6528    PinkStainedGlassPane => "pink_stained_glass_pane",
6529    GrayStainedGlassPane => "gray_stained_glass_pane",
6530    LightGrayStainedGlassPane => "light_gray_stained_glass_pane",
6531    CyanStainedGlassPane => "cyan_stained_glass_pane",
6532    PurpleStainedGlassPane => "purple_stained_glass_pane",
6533    BlueStainedGlassPane => "blue_stained_glass_pane",
6534    BrownStainedGlassPane => "brown_stained_glass_pane",
6535    GreenStainedGlassPane => "green_stained_glass_pane",
6536    RedStainedGlassPane => "red_stained_glass_pane",
6537    BlackStainedGlassPane => "black_stained_glass_pane",
6538    Prismarine => "prismarine",
6539    PrismarineBricks => "prismarine_bricks",
6540    DarkPrismarine => "dark_prismarine",
6541    PrismarineStairs => "prismarine_stairs",
6542    PrismarineBrickStairs => "prismarine_brick_stairs",
6543    DarkPrismarineStairs => "dark_prismarine_stairs",
6544    SeaLantern => "sea_lantern",
6545    RedSandstone => "red_sandstone",
6546    ChiseledRedSandstone => "chiseled_red_sandstone",
6547    CutRedSandstone => "cut_red_sandstone",
6548    RedSandstoneStairs => "red_sandstone_stairs",
6549    RepeatingCommandBlock => "repeating_command_block",
6550    ChainCommandBlock => "chain_command_block",
6551    MagmaBlock => "magma_block",
6552    NetherWartBlock => "nether_wart_block",
6553    WarpedWartBlock => "warped_wart_block",
6554    RedNetherBricks => "red_nether_bricks",
6555    BoneBlock => "bone_block",
6556    StructureVoid => "structure_void",
6557    ShulkerBox => "shulker_box",
6558    WhiteShulkerBox => "white_shulker_box",
6559    OrangeShulkerBox => "orange_shulker_box",
6560    MagentaShulkerBox => "magenta_shulker_box",
6561    LightBlueShulkerBox => "light_blue_shulker_box",
6562    YellowShulkerBox => "yellow_shulker_box",
6563    LimeShulkerBox => "lime_shulker_box",
6564    PinkShulkerBox => "pink_shulker_box",
6565    GrayShulkerBox => "gray_shulker_box",
6566    LightGrayShulkerBox => "light_gray_shulker_box",
6567    CyanShulkerBox => "cyan_shulker_box",
6568    PurpleShulkerBox => "purple_shulker_box",
6569    BlueShulkerBox => "blue_shulker_box",
6570    BrownShulkerBox => "brown_shulker_box",
6571    GreenShulkerBox => "green_shulker_box",
6572    RedShulkerBox => "red_shulker_box",
6573    BlackShulkerBox => "black_shulker_box",
6574    WhiteGlazedTerracotta => "white_glazed_terracotta",
6575    OrangeGlazedTerracotta => "orange_glazed_terracotta",
6576    MagentaGlazedTerracotta => "magenta_glazed_terracotta",
6577    LightBlueGlazedTerracotta => "light_blue_glazed_terracotta",
6578    YellowGlazedTerracotta => "yellow_glazed_terracotta",
6579    LimeGlazedTerracotta => "lime_glazed_terracotta",
6580    PinkGlazedTerracotta => "pink_glazed_terracotta",
6581    GrayGlazedTerracotta => "gray_glazed_terracotta",
6582    LightGrayGlazedTerracotta => "light_gray_glazed_terracotta",
6583    CyanGlazedTerracotta => "cyan_glazed_terracotta",
6584    PurpleGlazedTerracotta => "purple_glazed_terracotta",
6585    BlueGlazedTerracotta => "blue_glazed_terracotta",
6586    BrownGlazedTerracotta => "brown_glazed_terracotta",
6587    GreenGlazedTerracotta => "green_glazed_terracotta",
6588    RedGlazedTerracotta => "red_glazed_terracotta",
6589    BlackGlazedTerracotta => "black_glazed_terracotta",
6590    WhiteConcrete => "white_concrete",
6591    OrangeConcrete => "orange_concrete",
6592    MagentaConcrete => "magenta_concrete",
6593    LightBlueConcrete => "light_blue_concrete",
6594    YellowConcrete => "yellow_concrete",
6595    LimeConcrete => "lime_concrete",
6596    PinkConcrete => "pink_concrete",
6597    GrayConcrete => "gray_concrete",
6598    LightGrayConcrete => "light_gray_concrete",
6599    CyanConcrete => "cyan_concrete",
6600    PurpleConcrete => "purple_concrete",
6601    BlueConcrete => "blue_concrete",
6602    BrownConcrete => "brown_concrete",
6603    GreenConcrete => "green_concrete",
6604    RedConcrete => "red_concrete",
6605    BlackConcrete => "black_concrete",
6606    WhiteConcretePowder => "white_concrete_powder",
6607    OrangeConcretePowder => "orange_concrete_powder",
6608    MagentaConcretePowder => "magenta_concrete_powder",
6609    LightBlueConcretePowder => "light_blue_concrete_powder",
6610    YellowConcretePowder => "yellow_concrete_powder",
6611    LimeConcretePowder => "lime_concrete_powder",
6612    PinkConcretePowder => "pink_concrete_powder",
6613    GrayConcretePowder => "gray_concrete_powder",
6614    LightGrayConcretePowder => "light_gray_concrete_powder",
6615    CyanConcretePowder => "cyan_concrete_powder",
6616    PurpleConcretePowder => "purple_concrete_powder",
6617    BlueConcretePowder => "blue_concrete_powder",
6618    BrownConcretePowder => "brown_concrete_powder",
6619    GreenConcretePowder => "green_concrete_powder",
6620    RedConcretePowder => "red_concrete_powder",
6621    BlackConcretePowder => "black_concrete_powder",
6622    TurtleEgg => "turtle_egg",
6623    SnifferEgg => "sniffer_egg",
6624    DriedGhast => "dried_ghast",
6625    DeadTubeCoralBlock => "dead_tube_coral_block",
6626    DeadBrainCoralBlock => "dead_brain_coral_block",
6627    DeadBubbleCoralBlock => "dead_bubble_coral_block",
6628    DeadFireCoralBlock => "dead_fire_coral_block",
6629    DeadHornCoralBlock => "dead_horn_coral_block",
6630    TubeCoralBlock => "tube_coral_block",
6631    BrainCoralBlock => "brain_coral_block",
6632    BubbleCoralBlock => "bubble_coral_block",
6633    FireCoralBlock => "fire_coral_block",
6634    HornCoralBlock => "horn_coral_block",
6635    TubeCoral => "tube_coral",
6636    BrainCoral => "brain_coral",
6637    BubbleCoral => "bubble_coral",
6638    FireCoral => "fire_coral",
6639    HornCoral => "horn_coral",
6640    DeadBrainCoral => "dead_brain_coral",
6641    DeadBubbleCoral => "dead_bubble_coral",
6642    DeadFireCoral => "dead_fire_coral",
6643    DeadHornCoral => "dead_horn_coral",
6644    DeadTubeCoral => "dead_tube_coral",
6645    TubeCoralFan => "tube_coral_fan",
6646    BrainCoralFan => "brain_coral_fan",
6647    BubbleCoralFan => "bubble_coral_fan",
6648    FireCoralFan => "fire_coral_fan",
6649    HornCoralFan => "horn_coral_fan",
6650    DeadTubeCoralFan => "dead_tube_coral_fan",
6651    DeadBrainCoralFan => "dead_brain_coral_fan",
6652    DeadBubbleCoralFan => "dead_bubble_coral_fan",
6653    DeadFireCoralFan => "dead_fire_coral_fan",
6654    DeadHornCoralFan => "dead_horn_coral_fan",
6655    BlueIce => "blue_ice",
6656    Conduit => "conduit",
6657    PolishedGraniteStairs => "polished_granite_stairs",
6658    SmoothRedSandstoneStairs => "smooth_red_sandstone_stairs",
6659    MossyStoneBrickStairs => "mossy_stone_brick_stairs",
6660    PolishedDioriteStairs => "polished_diorite_stairs",
6661    MossyCobblestoneStairs => "mossy_cobblestone_stairs",
6662    EndStoneBrickStairs => "end_stone_brick_stairs",
6663    StoneStairs => "stone_stairs",
6664    SmoothSandstoneStairs => "smooth_sandstone_stairs",
6665    SmoothQuartzStairs => "smooth_quartz_stairs",
6666    GraniteStairs => "granite_stairs",
6667    AndesiteStairs => "andesite_stairs",
6668    RedNetherBrickStairs => "red_nether_brick_stairs",
6669    PolishedAndesiteStairs => "polished_andesite_stairs",
6670    DioriteStairs => "diorite_stairs",
6671    CobbledDeepslateStairs => "cobbled_deepslate_stairs",
6672    PolishedDeepslateStairs => "polished_deepslate_stairs",
6673    DeepslateBrickStairs => "deepslate_brick_stairs",
6674    DeepslateTileStairs => "deepslate_tile_stairs",
6675    PolishedGraniteSlab => "polished_granite_slab",
6676    SmoothRedSandstoneSlab => "smooth_red_sandstone_slab",
6677    MossyStoneBrickSlab => "mossy_stone_brick_slab",
6678    PolishedDioriteSlab => "polished_diorite_slab",
6679    MossyCobblestoneSlab => "mossy_cobblestone_slab",
6680    EndStoneBrickSlab => "end_stone_brick_slab",
6681    SmoothSandstoneSlab => "smooth_sandstone_slab",
6682    SmoothQuartzSlab => "smooth_quartz_slab",
6683    GraniteSlab => "granite_slab",
6684    AndesiteSlab => "andesite_slab",
6685    RedNetherBrickSlab => "red_nether_brick_slab",
6686    PolishedAndesiteSlab => "polished_andesite_slab",
6687    DioriteSlab => "diorite_slab",
6688    CobbledDeepslateSlab => "cobbled_deepslate_slab",
6689    PolishedDeepslateSlab => "polished_deepslate_slab",
6690    DeepslateBrickSlab => "deepslate_brick_slab",
6691    DeepslateTileSlab => "deepslate_tile_slab",
6692    Scaffolding => "scaffolding",
6693    Redstone => "redstone",
6694    RedstoneTorch => "redstone_torch",
6695    RedstoneBlock => "redstone_block",
6696    Repeater => "repeater",
6697    Comparator => "comparator",
6698    Piston => "piston",
6699    StickyPiston => "sticky_piston",
6700    SlimeBlock => "slime_block",
6701    HoneyBlock => "honey_block",
6702    Observer => "observer",
6703    Hopper => "hopper",
6704    Dispenser => "dispenser",
6705    Dropper => "dropper",
6706    Lectern => "lectern",
6707    Target => "target",
6708    Lever => "lever",
6709    LightningRod => "lightning_rod",
6710    ExposedLightningRod => "exposed_lightning_rod",
6711    WeatheredLightningRod => "weathered_lightning_rod",
6712    OxidizedLightningRod => "oxidized_lightning_rod",
6713    WaxedLightningRod => "waxed_lightning_rod",
6714    WaxedExposedLightningRod => "waxed_exposed_lightning_rod",
6715    WaxedWeatheredLightningRod => "waxed_weathered_lightning_rod",
6716    WaxedOxidizedLightningRod => "waxed_oxidized_lightning_rod",
6717    DaylightDetector => "daylight_detector",
6718    SculkSensor => "sculk_sensor",
6719    CalibratedSculkSensor => "calibrated_sculk_sensor",
6720    TripwireHook => "tripwire_hook",
6721    TrappedChest => "trapped_chest",
6722    Tnt => "tnt",
6723    RedstoneLamp => "redstone_lamp",
6724    NoteBlock => "note_block",
6725    StoneButton => "stone_button",
6726    PolishedBlackstoneButton => "polished_blackstone_button",
6727    OakButton => "oak_button",
6728    SpruceButton => "spruce_button",
6729    BirchButton => "birch_button",
6730    JungleButton => "jungle_button",
6731    AcaciaButton => "acacia_button",
6732    CherryButton => "cherry_button",
6733    DarkOakButton => "dark_oak_button",
6734    PaleOakButton => "pale_oak_button",
6735    MangroveButton => "mangrove_button",
6736    BambooButton => "bamboo_button",
6737    CrimsonButton => "crimson_button",
6738    WarpedButton => "warped_button",
6739    StonePressurePlate => "stone_pressure_plate",
6740    PolishedBlackstonePressurePlate => "polished_blackstone_pressure_plate",
6741    LightWeightedPressurePlate => "light_weighted_pressure_plate",
6742    HeavyWeightedPressurePlate => "heavy_weighted_pressure_plate",
6743    OakPressurePlate => "oak_pressure_plate",
6744    SprucePressurePlate => "spruce_pressure_plate",
6745    BirchPressurePlate => "birch_pressure_plate",
6746    JunglePressurePlate => "jungle_pressure_plate",
6747    AcaciaPressurePlate => "acacia_pressure_plate",
6748    CherryPressurePlate => "cherry_pressure_plate",
6749    DarkOakPressurePlate => "dark_oak_pressure_plate",
6750    PaleOakPressurePlate => "pale_oak_pressure_plate",
6751    MangrovePressurePlate => "mangrove_pressure_plate",
6752    BambooPressurePlate => "bamboo_pressure_plate",
6753    CrimsonPressurePlate => "crimson_pressure_plate",
6754    WarpedPressurePlate => "warped_pressure_plate",
6755    IronDoor => "iron_door",
6756    OakDoor => "oak_door",
6757    SpruceDoor => "spruce_door",
6758    BirchDoor => "birch_door",
6759    JungleDoor => "jungle_door",
6760    AcaciaDoor => "acacia_door",
6761    CherryDoor => "cherry_door",
6762    DarkOakDoor => "dark_oak_door",
6763    PaleOakDoor => "pale_oak_door",
6764    MangroveDoor => "mangrove_door",
6765    BambooDoor => "bamboo_door",
6766    CrimsonDoor => "crimson_door",
6767    WarpedDoor => "warped_door",
6768    CopperDoor => "copper_door",
6769    ExposedCopperDoor => "exposed_copper_door",
6770    WeatheredCopperDoor => "weathered_copper_door",
6771    OxidizedCopperDoor => "oxidized_copper_door",
6772    WaxedCopperDoor => "waxed_copper_door",
6773    WaxedExposedCopperDoor => "waxed_exposed_copper_door",
6774    WaxedWeatheredCopperDoor => "waxed_weathered_copper_door",
6775    WaxedOxidizedCopperDoor => "waxed_oxidized_copper_door",
6776    IronTrapdoor => "iron_trapdoor",
6777    OakTrapdoor => "oak_trapdoor",
6778    SpruceTrapdoor => "spruce_trapdoor",
6779    BirchTrapdoor => "birch_trapdoor",
6780    JungleTrapdoor => "jungle_trapdoor",
6781    AcaciaTrapdoor => "acacia_trapdoor",
6782    CherryTrapdoor => "cherry_trapdoor",
6783    DarkOakTrapdoor => "dark_oak_trapdoor",
6784    PaleOakTrapdoor => "pale_oak_trapdoor",
6785    MangroveTrapdoor => "mangrove_trapdoor",
6786    BambooTrapdoor => "bamboo_trapdoor",
6787    CrimsonTrapdoor => "crimson_trapdoor",
6788    WarpedTrapdoor => "warped_trapdoor",
6789    CopperTrapdoor => "copper_trapdoor",
6790    ExposedCopperTrapdoor => "exposed_copper_trapdoor",
6791    WeatheredCopperTrapdoor => "weathered_copper_trapdoor",
6792    OxidizedCopperTrapdoor => "oxidized_copper_trapdoor",
6793    WaxedCopperTrapdoor => "waxed_copper_trapdoor",
6794    WaxedExposedCopperTrapdoor => "waxed_exposed_copper_trapdoor",
6795    WaxedWeatheredCopperTrapdoor => "waxed_weathered_copper_trapdoor",
6796    WaxedOxidizedCopperTrapdoor => "waxed_oxidized_copper_trapdoor",
6797    OakFenceGate => "oak_fence_gate",
6798    SpruceFenceGate => "spruce_fence_gate",
6799    BirchFenceGate => "birch_fence_gate",
6800    JungleFenceGate => "jungle_fence_gate",
6801    AcaciaFenceGate => "acacia_fence_gate",
6802    CherryFenceGate => "cherry_fence_gate",
6803    DarkOakFenceGate => "dark_oak_fence_gate",
6804    PaleOakFenceGate => "pale_oak_fence_gate",
6805    MangroveFenceGate => "mangrove_fence_gate",
6806    BambooFenceGate => "bamboo_fence_gate",
6807    CrimsonFenceGate => "crimson_fence_gate",
6808    WarpedFenceGate => "warped_fence_gate",
6809    PoweredRail => "powered_rail",
6810    DetectorRail => "detector_rail",
6811    Rail => "rail",
6812    ActivatorRail => "activator_rail",
6813    Saddle => "saddle",
6814    WhiteHarness => "white_harness",
6815    OrangeHarness => "orange_harness",
6816    MagentaHarness => "magenta_harness",
6817    LightBlueHarness => "light_blue_harness",
6818    YellowHarness => "yellow_harness",
6819    LimeHarness => "lime_harness",
6820    PinkHarness => "pink_harness",
6821    GrayHarness => "gray_harness",
6822    LightGrayHarness => "light_gray_harness",
6823    CyanHarness => "cyan_harness",
6824    PurpleHarness => "purple_harness",
6825    BlueHarness => "blue_harness",
6826    BrownHarness => "brown_harness",
6827    GreenHarness => "green_harness",
6828    RedHarness => "red_harness",
6829    BlackHarness => "black_harness",
6830    Minecart => "minecart",
6831    ChestMinecart => "chest_minecart",
6832    FurnaceMinecart => "furnace_minecart",
6833    TntMinecart => "tnt_minecart",
6834    HopperMinecart => "hopper_minecart",
6835    CarrotOnAStick => "carrot_on_a_stick",
6836    WarpedFungusOnAStick => "warped_fungus_on_a_stick",
6837    PhantomMembrane => "phantom_membrane",
6838    Elytra => "elytra",
6839    OakBoat => "oak_boat",
6840    OakChestBoat => "oak_chest_boat",
6841    SpruceBoat => "spruce_boat",
6842    SpruceChestBoat => "spruce_chest_boat",
6843    BirchBoat => "birch_boat",
6844    BirchChestBoat => "birch_chest_boat",
6845    JungleBoat => "jungle_boat",
6846    JungleChestBoat => "jungle_chest_boat",
6847    AcaciaBoat => "acacia_boat",
6848    AcaciaChestBoat => "acacia_chest_boat",
6849    CherryBoat => "cherry_boat",
6850    CherryChestBoat => "cherry_chest_boat",
6851    DarkOakBoat => "dark_oak_boat",
6852    DarkOakChestBoat => "dark_oak_chest_boat",
6853    PaleOakBoat => "pale_oak_boat",
6854    PaleOakChestBoat => "pale_oak_chest_boat",
6855    MangroveBoat => "mangrove_boat",
6856    MangroveChestBoat => "mangrove_chest_boat",
6857    BambooRaft => "bamboo_raft",
6858    BambooChestRaft => "bamboo_chest_raft",
6859    StructureBlock => "structure_block",
6860    Jigsaw => "jigsaw",
6861    TestBlock => "test_block",
6862    TestInstanceBlock => "test_instance_block",
6863    TurtleHelmet => "turtle_helmet",
6864    TurtleScute => "turtle_scute",
6865    ArmadilloScute => "armadillo_scute",
6866    WolfArmor => "wolf_armor",
6867    FlintAndSteel => "flint_and_steel",
6868    Bowl => "bowl",
6869    Apple => "apple",
6870    Bow => "bow",
6871    Arrow => "arrow",
6872    Coal => "coal",
6873    Charcoal => "charcoal",
6874    Diamond => "diamond",
6875    Emerald => "emerald",
6876    LapisLazuli => "lapis_lazuli",
6877    Quartz => "quartz",
6878    AmethystShard => "amethyst_shard",
6879    RawIron => "raw_iron",
6880    IronIngot => "iron_ingot",
6881    RawCopper => "raw_copper",
6882    CopperIngot => "copper_ingot",
6883    RawGold => "raw_gold",
6884    GoldIngot => "gold_ingot",
6885    NetheriteIngot => "netherite_ingot",
6886    NetheriteScrap => "netherite_scrap",
6887    WoodenSword => "wooden_sword",
6888    WoodenShovel => "wooden_shovel",
6889    WoodenPickaxe => "wooden_pickaxe",
6890    WoodenAxe => "wooden_axe",
6891    WoodenHoe => "wooden_hoe",
6892    CopperSword => "copper_sword",
6893    CopperShovel => "copper_shovel",
6894    CopperPickaxe => "copper_pickaxe",
6895    CopperAxe => "copper_axe",
6896    CopperHoe => "copper_hoe",
6897    StoneSword => "stone_sword",
6898    StoneShovel => "stone_shovel",
6899    StonePickaxe => "stone_pickaxe",
6900    StoneAxe => "stone_axe",
6901    StoneHoe => "stone_hoe",
6902    GoldenSword => "golden_sword",
6903    GoldenShovel => "golden_shovel",
6904    GoldenPickaxe => "golden_pickaxe",
6905    GoldenAxe => "golden_axe",
6906    GoldenHoe => "golden_hoe",
6907    IronSword => "iron_sword",
6908    IronShovel => "iron_shovel",
6909    IronPickaxe => "iron_pickaxe",
6910    IronAxe => "iron_axe",
6911    IronHoe => "iron_hoe",
6912    DiamondSword => "diamond_sword",
6913    DiamondShovel => "diamond_shovel",
6914    DiamondPickaxe => "diamond_pickaxe",
6915    DiamondAxe => "diamond_axe",
6916    DiamondHoe => "diamond_hoe",
6917    NetheriteSword => "netherite_sword",
6918    NetheriteShovel => "netherite_shovel",
6919    NetheritePickaxe => "netherite_pickaxe",
6920    NetheriteAxe => "netherite_axe",
6921    NetheriteHoe => "netherite_hoe",
6922    Stick => "stick",
6923    MushroomStew => "mushroom_stew",
6924    String => "string",
6925    Feather => "feather",
6926    Gunpowder => "gunpowder",
6927    WheatSeeds => "wheat_seeds",
6928    Wheat => "wheat",
6929    Bread => "bread",
6930    LeatherHelmet => "leather_helmet",
6931    LeatherChestplate => "leather_chestplate",
6932    LeatherLeggings => "leather_leggings",
6933    LeatherBoots => "leather_boots",
6934    CopperHelmet => "copper_helmet",
6935    CopperChestplate => "copper_chestplate",
6936    CopperLeggings => "copper_leggings",
6937    CopperBoots => "copper_boots",
6938    ChainmailHelmet => "chainmail_helmet",
6939    ChainmailChestplate => "chainmail_chestplate",
6940    ChainmailLeggings => "chainmail_leggings",
6941    ChainmailBoots => "chainmail_boots",
6942    IronHelmet => "iron_helmet",
6943    IronChestplate => "iron_chestplate",
6944    IronLeggings => "iron_leggings",
6945    IronBoots => "iron_boots",
6946    DiamondHelmet => "diamond_helmet",
6947    DiamondChestplate => "diamond_chestplate",
6948    DiamondLeggings => "diamond_leggings",
6949    DiamondBoots => "diamond_boots",
6950    GoldenHelmet => "golden_helmet",
6951    GoldenChestplate => "golden_chestplate",
6952    GoldenLeggings => "golden_leggings",
6953    GoldenBoots => "golden_boots",
6954    NetheriteHelmet => "netherite_helmet",
6955    NetheriteChestplate => "netherite_chestplate",
6956    NetheriteLeggings => "netherite_leggings",
6957    NetheriteBoots => "netherite_boots",
6958    Flint => "flint",
6959    Porkchop => "porkchop",
6960    CookedPorkchop => "cooked_porkchop",
6961    Painting => "painting",
6962    GoldenApple => "golden_apple",
6963    EnchantedGoldenApple => "enchanted_golden_apple",
6964    OakSign => "oak_sign",
6965    SpruceSign => "spruce_sign",
6966    BirchSign => "birch_sign",
6967    JungleSign => "jungle_sign",
6968    AcaciaSign => "acacia_sign",
6969    CherrySign => "cherry_sign",
6970    DarkOakSign => "dark_oak_sign",
6971    PaleOakSign => "pale_oak_sign",
6972    MangroveSign => "mangrove_sign",
6973    BambooSign => "bamboo_sign",
6974    CrimsonSign => "crimson_sign",
6975    WarpedSign => "warped_sign",
6976    OakHangingSign => "oak_hanging_sign",
6977    SpruceHangingSign => "spruce_hanging_sign",
6978    BirchHangingSign => "birch_hanging_sign",
6979    JungleHangingSign => "jungle_hanging_sign",
6980    AcaciaHangingSign => "acacia_hanging_sign",
6981    CherryHangingSign => "cherry_hanging_sign",
6982    DarkOakHangingSign => "dark_oak_hanging_sign",
6983    PaleOakHangingSign => "pale_oak_hanging_sign",
6984    MangroveHangingSign => "mangrove_hanging_sign",
6985    BambooHangingSign => "bamboo_hanging_sign",
6986    CrimsonHangingSign => "crimson_hanging_sign",
6987    WarpedHangingSign => "warped_hanging_sign",
6988    Bucket => "bucket",
6989    WaterBucket => "water_bucket",
6990    LavaBucket => "lava_bucket",
6991    PowderSnowBucket => "powder_snow_bucket",
6992    Snowball => "snowball",
6993    Leather => "leather",
6994    MilkBucket => "milk_bucket",
6995    PufferfishBucket => "pufferfish_bucket",
6996    SalmonBucket => "salmon_bucket",
6997    CodBucket => "cod_bucket",
6998    TropicalFishBucket => "tropical_fish_bucket",
6999    AxolotlBucket => "axolotl_bucket",
7000    SulfurCubeBucket => "sulfur_cube_bucket",
7001    TadpoleBucket => "tadpole_bucket",
7002    Brick => "brick",
7003    ClayBall => "clay_ball",
7004    DriedKelpBlock => "dried_kelp_block",
7005    Paper => "paper",
7006    Book => "book",
7007    SlimeBall => "slime_ball",
7008    Egg => "egg",
7009    BlueEgg => "blue_egg",
7010    BrownEgg => "brown_egg",
7011    Compass => "compass",
7012    RecoveryCompass => "recovery_compass",
7013    Bundle => "bundle",
7014    WhiteBundle => "white_bundle",
7015    OrangeBundle => "orange_bundle",
7016    MagentaBundle => "magenta_bundle",
7017    LightBlueBundle => "light_blue_bundle",
7018    YellowBundle => "yellow_bundle",
7019    LimeBundle => "lime_bundle",
7020    PinkBundle => "pink_bundle",
7021    GrayBundle => "gray_bundle",
7022    LightGrayBundle => "light_gray_bundle",
7023    CyanBundle => "cyan_bundle",
7024    PurpleBundle => "purple_bundle",
7025    BlueBundle => "blue_bundle",
7026    BrownBundle => "brown_bundle",
7027    GreenBundle => "green_bundle",
7028    RedBundle => "red_bundle",
7029    BlackBundle => "black_bundle",
7030    FishingRod => "fishing_rod",
7031    Clock => "clock",
7032    Spyglass => "spyglass",
7033    GlowstoneDust => "glowstone_dust",
7034    Cod => "cod",
7035    Salmon => "salmon",
7036    TropicalFish => "tropical_fish",
7037    Pufferfish => "pufferfish",
7038    CookedCod => "cooked_cod",
7039    CookedSalmon => "cooked_salmon",
7040    InkSac => "ink_sac",
7041    GlowInkSac => "glow_ink_sac",
7042    CocoaBeans => "cocoa_beans",
7043    WhiteDye => "white_dye",
7044    OrangeDye => "orange_dye",
7045    MagentaDye => "magenta_dye",
7046    LightBlueDye => "light_blue_dye",
7047    YellowDye => "yellow_dye",
7048    LimeDye => "lime_dye",
7049    PinkDye => "pink_dye",
7050    GrayDye => "gray_dye",
7051    LightGrayDye => "light_gray_dye",
7052    CyanDye => "cyan_dye",
7053    PurpleDye => "purple_dye",
7054    BlueDye => "blue_dye",
7055    BrownDye => "brown_dye",
7056    GreenDye => "green_dye",
7057    RedDye => "red_dye",
7058    BlackDye => "black_dye",
7059    BoneMeal => "bone_meal",
7060    Bone => "bone",
7061    Sugar => "sugar",
7062    Cake => "cake",
7063    WhiteBed => "white_bed",
7064    OrangeBed => "orange_bed",
7065    MagentaBed => "magenta_bed",
7066    LightBlueBed => "light_blue_bed",
7067    YellowBed => "yellow_bed",
7068    LimeBed => "lime_bed",
7069    PinkBed => "pink_bed",
7070    GrayBed => "gray_bed",
7071    LightGrayBed => "light_gray_bed",
7072    CyanBed => "cyan_bed",
7073    PurpleBed => "purple_bed",
7074    BlueBed => "blue_bed",
7075    BrownBed => "brown_bed",
7076    GreenBed => "green_bed",
7077    RedBed => "red_bed",
7078    BlackBed => "black_bed",
7079    Cookie => "cookie",
7080    Crafter => "crafter",
7081    FilledMap => "filled_map",
7082    Shears => "shears",
7083    MelonSlice => "melon_slice",
7084    DriedKelp => "dried_kelp",
7085    PumpkinSeeds => "pumpkin_seeds",
7086    MelonSeeds => "melon_seeds",
7087    Beef => "beef",
7088    CookedBeef => "cooked_beef",
7089    Chicken => "chicken",
7090    CookedChicken => "cooked_chicken",
7091    RottenFlesh => "rotten_flesh",
7092    EnderPearl => "ender_pearl",
7093    BlazeRod => "blaze_rod",
7094    GhastTear => "ghast_tear",
7095    GoldNugget => "gold_nugget",
7096    NetherWart => "nether_wart",
7097    GlassBottle => "glass_bottle",
7098    Potion => "potion",
7099    SpiderEye => "spider_eye",
7100    FermentedSpiderEye => "fermented_spider_eye",
7101    BlazePowder => "blaze_powder",
7102    MagmaCream => "magma_cream",
7103    BrewingStand => "brewing_stand",
7104    Cauldron => "cauldron",
7105    EnderEye => "ender_eye",
7106    GlisteringMelonSlice => "glistering_melon_slice",
7107    ChickenSpawnEgg => "chicken_spawn_egg",
7108    CowSpawnEgg => "cow_spawn_egg",
7109    PigSpawnEgg => "pig_spawn_egg",
7110    SheepSpawnEgg => "sheep_spawn_egg",
7111    CamelSpawnEgg => "camel_spawn_egg",
7112    DonkeySpawnEgg => "donkey_spawn_egg",
7113    HorseSpawnEgg => "horse_spawn_egg",
7114    MuleSpawnEgg => "mule_spawn_egg",
7115    CatSpawnEgg => "cat_spawn_egg",
7116    ParrotSpawnEgg => "parrot_spawn_egg",
7117    WolfSpawnEgg => "wolf_spawn_egg",
7118    ArmadilloSpawnEgg => "armadillo_spawn_egg",
7119    BatSpawnEgg => "bat_spawn_egg",
7120    BeeSpawnEgg => "bee_spawn_egg",
7121    FoxSpawnEgg => "fox_spawn_egg",
7122    GoatSpawnEgg => "goat_spawn_egg",
7123    LlamaSpawnEgg => "llama_spawn_egg",
7124    OcelotSpawnEgg => "ocelot_spawn_egg",
7125    PandaSpawnEgg => "panda_spawn_egg",
7126    PolarBearSpawnEgg => "polar_bear_spawn_egg",
7127    RabbitSpawnEgg => "rabbit_spawn_egg",
7128    AxolotlSpawnEgg => "axolotl_spawn_egg",
7129    CodSpawnEgg => "cod_spawn_egg",
7130    DolphinSpawnEgg => "dolphin_spawn_egg",
7131    FrogSpawnEgg => "frog_spawn_egg",
7132    GlowSquidSpawnEgg => "glow_squid_spawn_egg",
7133    NautilusSpawnEgg => "nautilus_spawn_egg",
7134    PufferfishSpawnEgg => "pufferfish_spawn_egg",
7135    SalmonSpawnEgg => "salmon_spawn_egg",
7136    SquidSpawnEgg => "squid_spawn_egg",
7137    TadpoleSpawnEgg => "tadpole_spawn_egg",
7138    TropicalFishSpawnEgg => "tropical_fish_spawn_egg",
7139    TurtleSpawnEgg => "turtle_spawn_egg",
7140    AllaySpawnEgg => "allay_spawn_egg",
7141    MooshroomSpawnEgg => "mooshroom_spawn_egg",
7142    SnifferSpawnEgg => "sniffer_spawn_egg",
7143    SulfurCubeSpawnEgg => "sulfur_cube_spawn_egg",
7144    CopperGolemSpawnEgg => "copper_golem_spawn_egg",
7145    IronGolemSpawnEgg => "iron_golem_spawn_egg",
7146    SnowGolemSpawnEgg => "snow_golem_spawn_egg",
7147    TraderLlamaSpawnEgg => "trader_llama_spawn_egg",
7148    VillagerSpawnEgg => "villager_spawn_egg",
7149    WanderingTraderSpawnEgg => "wandering_trader_spawn_egg",
7150    BoggedSpawnEgg => "bogged_spawn_egg",
7151    CamelHuskSpawnEgg => "camel_husk_spawn_egg",
7152    DrownedSpawnEgg => "drowned_spawn_egg",
7153    HuskSpawnEgg => "husk_spawn_egg",
7154    ParchedSpawnEgg => "parched_spawn_egg",
7155    SkeletonSpawnEgg => "skeleton_spawn_egg",
7156    SkeletonHorseSpawnEgg => "skeleton_horse_spawn_egg",
7157    StraySpawnEgg => "stray_spawn_egg",
7158    WitherSpawnEgg => "wither_spawn_egg",
7159    WitherSkeletonSpawnEgg => "wither_skeleton_spawn_egg",
7160    ZombieSpawnEgg => "zombie_spawn_egg",
7161    ZombieHorseSpawnEgg => "zombie_horse_spawn_egg",
7162    ZombieNautilusSpawnEgg => "zombie_nautilus_spawn_egg",
7163    ZombieVillagerSpawnEgg => "zombie_villager_spawn_egg",
7164    CaveSpiderSpawnEgg => "cave_spider_spawn_egg",
7165    SpiderSpawnEgg => "spider_spawn_egg",
7166    BreezeSpawnEgg => "breeze_spawn_egg",
7167    CreakingSpawnEgg => "creaking_spawn_egg",
7168    CreeperSpawnEgg => "creeper_spawn_egg",
7169    ElderGuardianSpawnEgg => "elder_guardian_spawn_egg",
7170    GuardianSpawnEgg => "guardian_spawn_egg",
7171    PhantomSpawnEgg => "phantom_spawn_egg",
7172    SilverfishSpawnEgg => "silverfish_spawn_egg",
7173    SlimeSpawnEgg => "slime_spawn_egg",
7174    WardenSpawnEgg => "warden_spawn_egg",
7175    WitchSpawnEgg => "witch_spawn_egg",
7176    EvokerSpawnEgg => "evoker_spawn_egg",
7177    PillagerSpawnEgg => "pillager_spawn_egg",
7178    RavagerSpawnEgg => "ravager_spawn_egg",
7179    VindicatorSpawnEgg => "vindicator_spawn_egg",
7180    VexSpawnEgg => "vex_spawn_egg",
7181    BlazeSpawnEgg => "blaze_spawn_egg",
7182    GhastSpawnEgg => "ghast_spawn_egg",
7183    HappyGhastSpawnEgg => "happy_ghast_spawn_egg",
7184    HoglinSpawnEgg => "hoglin_spawn_egg",
7185    MagmaCubeSpawnEgg => "magma_cube_spawn_egg",
7186    PiglinSpawnEgg => "piglin_spawn_egg",
7187    PiglinBruteSpawnEgg => "piglin_brute_spawn_egg",
7188    StriderSpawnEgg => "strider_spawn_egg",
7189    ZoglinSpawnEgg => "zoglin_spawn_egg",
7190    ZombifiedPiglinSpawnEgg => "zombified_piglin_spawn_egg",
7191    EnderDragonSpawnEgg => "ender_dragon_spawn_egg",
7192    EndermanSpawnEgg => "enderman_spawn_egg",
7193    EndermiteSpawnEgg => "endermite_spawn_egg",
7194    ShulkerSpawnEgg => "shulker_spawn_egg",
7195    ExperienceBottle => "experience_bottle",
7196    FireCharge => "fire_charge",
7197    WindCharge => "wind_charge",
7198    WritableBook => "writable_book",
7199    WrittenBook => "written_book",
7200    BreezeRod => "breeze_rod",
7201    Mace => "mace",
7202    ItemFrame => "item_frame",
7203    GlowItemFrame => "glow_item_frame",
7204    FlowerPot => "flower_pot",
7205    Carrot => "carrot",
7206    Potato => "potato",
7207    BakedPotato => "baked_potato",
7208    PoisonousPotato => "poisonous_potato",
7209    Map => "map",
7210    GoldenCarrot => "golden_carrot",
7211    SkeletonSkull => "skeleton_skull",
7212    WitherSkeletonSkull => "wither_skeleton_skull",
7213    PlayerHead => "player_head",
7214    ZombieHead => "zombie_head",
7215    CreeperHead => "creeper_head",
7216    DragonHead => "dragon_head",
7217    PiglinHead => "piglin_head",
7218    NetherStar => "nether_star",
7219    PumpkinPie => "pumpkin_pie",
7220    FireworkRocket => "firework_rocket",
7221    FireworkStar => "firework_star",
7222    EnchantedBook => "enchanted_book",
7223    NetherBrick => "nether_brick",
7224    ResinBrick => "resin_brick",
7225    PrismarineShard => "prismarine_shard",
7226    PrismarineCrystals => "prismarine_crystals",
7227    Rabbit => "rabbit",
7228    CookedRabbit => "cooked_rabbit",
7229    RabbitStew => "rabbit_stew",
7230    RabbitFoot => "rabbit_foot",
7231    RabbitHide => "rabbit_hide",
7232    ArmorStand => "armor_stand",
7233    CopperHorseArmor => "copper_horse_armor",
7234    IronHorseArmor => "iron_horse_armor",
7235    GoldenHorseArmor => "golden_horse_armor",
7236    DiamondHorseArmor => "diamond_horse_armor",
7237    NetheriteHorseArmor => "netherite_horse_armor",
7238    LeatherHorseArmor => "leather_horse_armor",
7239    Lead => "lead",
7240    NameTag => "name_tag",
7241    CommandBlockMinecart => "command_block_minecart",
7242    Mutton => "mutton",
7243    CookedMutton => "cooked_mutton",
7244    WhiteBanner => "white_banner",
7245    OrangeBanner => "orange_banner",
7246    MagentaBanner => "magenta_banner",
7247    LightBlueBanner => "light_blue_banner",
7248    YellowBanner => "yellow_banner",
7249    LimeBanner => "lime_banner",
7250    PinkBanner => "pink_banner",
7251    GrayBanner => "gray_banner",
7252    LightGrayBanner => "light_gray_banner",
7253    CyanBanner => "cyan_banner",
7254    PurpleBanner => "purple_banner",
7255    BlueBanner => "blue_banner",
7256    BrownBanner => "brown_banner",
7257    GreenBanner => "green_banner",
7258    RedBanner => "red_banner",
7259    BlackBanner => "black_banner",
7260    EndCrystal => "end_crystal",
7261    ChorusFruit => "chorus_fruit",
7262    PoppedChorusFruit => "popped_chorus_fruit",
7263    TorchflowerSeeds => "torchflower_seeds",
7264    PitcherPod => "pitcher_pod",
7265    Beetroot => "beetroot",
7266    BeetrootSeeds => "beetroot_seeds",
7267    BeetrootSoup => "beetroot_soup",
7268    DragonBreath => "dragon_breath",
7269    SplashPotion => "splash_potion",
7270    SpectralArrow => "spectral_arrow",
7271    TippedArrow => "tipped_arrow",
7272    LingeringPotion => "lingering_potion",
7273    Shield => "shield",
7274    WoodenSpear => "wooden_spear",
7275    StoneSpear => "stone_spear",
7276    CopperSpear => "copper_spear",
7277    IronSpear => "iron_spear",
7278    GoldenSpear => "golden_spear",
7279    DiamondSpear => "diamond_spear",
7280    NetheriteSpear => "netherite_spear",
7281    TotemOfUndying => "totem_of_undying",
7282    ShulkerShell => "shulker_shell",
7283    IronNugget => "iron_nugget",
7284    CopperNugget => "copper_nugget",
7285    KnowledgeBook => "knowledge_book",
7286    DebugStick => "debug_stick",
7287    MusicDisc13 => "music_disc_13",
7288    MusicDiscCat => "music_disc_cat",
7289    MusicDiscBlocks => "music_disc_blocks",
7290    MusicDiscBounce => "music_disc_bounce",
7291    MusicDiscChirp => "music_disc_chirp",
7292    MusicDiscCreator => "music_disc_creator",
7293    MusicDiscCreatorMusicBox => "music_disc_creator_music_box",
7294    MusicDiscFar => "music_disc_far",
7295    MusicDiscLavaChicken => "music_disc_lava_chicken",
7296    MusicDiscMall => "music_disc_mall",
7297    MusicDiscMellohi => "music_disc_mellohi",
7298    MusicDiscStal => "music_disc_stal",
7299    MusicDiscStrad => "music_disc_strad",
7300    MusicDiscWard => "music_disc_ward",
7301    MusicDisc11 => "music_disc_11",
7302    MusicDiscWait => "music_disc_wait",
7303    MusicDiscOtherside => "music_disc_otherside",
7304    MusicDiscRelic => "music_disc_relic",
7305    MusicDisc5 => "music_disc_5",
7306    MusicDiscPigstep => "music_disc_pigstep",
7307    MusicDiscPrecipice => "music_disc_precipice",
7308    MusicDiscTears => "music_disc_tears",
7309    DiscFragment5 => "disc_fragment_5",
7310    Trident => "trident",
7311    NautilusShell => "nautilus_shell",
7312    IronNautilusArmor => "iron_nautilus_armor",
7313    GoldenNautilusArmor => "golden_nautilus_armor",
7314    DiamondNautilusArmor => "diamond_nautilus_armor",
7315    NetheriteNautilusArmor => "netherite_nautilus_armor",
7316    CopperNautilusArmor => "copper_nautilus_armor",
7317    HeartOfTheSea => "heart_of_the_sea",
7318    Crossbow => "crossbow",
7319    SuspiciousStew => "suspicious_stew",
7320    Loom => "loom",
7321    FlowerBannerPattern => "flower_banner_pattern",
7322    CreeperBannerPattern => "creeper_banner_pattern",
7323    SkullBannerPattern => "skull_banner_pattern",
7324    MojangBannerPattern => "mojang_banner_pattern",
7325    GlobeBannerPattern => "globe_banner_pattern",
7326    PiglinBannerPattern => "piglin_banner_pattern",
7327    FlowBannerPattern => "flow_banner_pattern",
7328    GusterBannerPattern => "guster_banner_pattern",
7329    FieldMasonedBannerPattern => "field_masoned_banner_pattern",
7330    BordureIndentedBannerPattern => "bordure_indented_banner_pattern",
7331    GoatHorn => "goat_horn",
7332    Composter => "composter",
7333    Barrel => "barrel",
7334    Smoker => "smoker",
7335    BlastFurnace => "blast_furnace",
7336    CartographyTable => "cartography_table",
7337    FletchingTable => "fletching_table",
7338    Grindstone => "grindstone",
7339    SmithingTable => "smithing_table",
7340    Stonecutter => "stonecutter",
7341    Bell => "bell",
7342    Lantern => "lantern",
7343    SoulLantern => "soul_lantern",
7344    CopperLantern => "copper_lantern",
7345    ExposedCopperLantern => "exposed_copper_lantern",
7346    WeatheredCopperLantern => "weathered_copper_lantern",
7347    OxidizedCopperLantern => "oxidized_copper_lantern",
7348    WaxedCopperLantern => "waxed_copper_lantern",
7349    WaxedExposedCopperLantern => "waxed_exposed_copper_lantern",
7350    WaxedWeatheredCopperLantern => "waxed_weathered_copper_lantern",
7351    WaxedOxidizedCopperLantern => "waxed_oxidized_copper_lantern",
7352    SweetBerries => "sweet_berries",
7353    GlowBerries => "glow_berries",
7354    Campfire => "campfire",
7355    SoulCampfire => "soul_campfire",
7356    Shroomlight => "shroomlight",
7357    Honeycomb => "honeycomb",
7358    BeeNest => "bee_nest",
7359    Beehive => "beehive",
7360    HoneyBottle => "honey_bottle",
7361    HoneycombBlock => "honeycomb_block",
7362    Lodestone => "lodestone",
7363    CryingObsidian => "crying_obsidian",
7364    Blackstone => "blackstone",
7365    BlackstoneSlab => "blackstone_slab",
7366    BlackstoneStairs => "blackstone_stairs",
7367    GildedBlackstone => "gilded_blackstone",
7368    PolishedBlackstone => "polished_blackstone",
7369    PolishedBlackstoneSlab => "polished_blackstone_slab",
7370    PolishedBlackstoneStairs => "polished_blackstone_stairs",
7371    ChiseledPolishedBlackstone => "chiseled_polished_blackstone",
7372    PolishedBlackstoneBricks => "polished_blackstone_bricks",
7373    PolishedBlackstoneBrickSlab => "polished_blackstone_brick_slab",
7374    PolishedBlackstoneBrickStairs => "polished_blackstone_brick_stairs",
7375    CrackedPolishedBlackstoneBricks => "cracked_polished_blackstone_bricks",
7376    RespawnAnchor => "respawn_anchor",
7377    Candle => "candle",
7378    WhiteCandle => "white_candle",
7379    OrangeCandle => "orange_candle",
7380    MagentaCandle => "magenta_candle",
7381    LightBlueCandle => "light_blue_candle",
7382    YellowCandle => "yellow_candle",
7383    LimeCandle => "lime_candle",
7384    PinkCandle => "pink_candle",
7385    GrayCandle => "gray_candle",
7386    LightGrayCandle => "light_gray_candle",
7387    CyanCandle => "cyan_candle",
7388    PurpleCandle => "purple_candle",
7389    BlueCandle => "blue_candle",
7390    BrownCandle => "brown_candle",
7391    GreenCandle => "green_candle",
7392    RedCandle => "red_candle",
7393    BlackCandle => "black_candle",
7394    SmallAmethystBud => "small_amethyst_bud",
7395    MediumAmethystBud => "medium_amethyst_bud",
7396    LargeAmethystBud => "large_amethyst_bud",
7397    AmethystCluster => "amethyst_cluster",
7398    PointedDripstone => "pointed_dripstone",
7399    SulfurSpike => "sulfur_spike",
7400    OchreFroglight => "ochre_froglight",
7401    VerdantFroglight => "verdant_froglight",
7402    PearlescentFroglight => "pearlescent_froglight",
7403    Frogspawn => "frogspawn",
7404    EchoShard => "echo_shard",
7405    Brush => "brush",
7406    NetheriteUpgradeSmithingTemplate => "netherite_upgrade_smithing_template",
7407    SentryArmorTrimSmithingTemplate => "sentry_armor_trim_smithing_template",
7408    DuneArmorTrimSmithingTemplate => "dune_armor_trim_smithing_template",
7409    CoastArmorTrimSmithingTemplate => "coast_armor_trim_smithing_template",
7410    WildArmorTrimSmithingTemplate => "wild_armor_trim_smithing_template",
7411    WardArmorTrimSmithingTemplate => "ward_armor_trim_smithing_template",
7412    EyeArmorTrimSmithingTemplate => "eye_armor_trim_smithing_template",
7413    VexArmorTrimSmithingTemplate => "vex_armor_trim_smithing_template",
7414    TideArmorTrimSmithingTemplate => "tide_armor_trim_smithing_template",
7415    SnoutArmorTrimSmithingTemplate => "snout_armor_trim_smithing_template",
7416    RibArmorTrimSmithingTemplate => "rib_armor_trim_smithing_template",
7417    SpireArmorTrimSmithingTemplate => "spire_armor_trim_smithing_template",
7418    WayfinderArmorTrimSmithingTemplate => "wayfinder_armor_trim_smithing_template",
7419    ShaperArmorTrimSmithingTemplate => "shaper_armor_trim_smithing_template",
7420    SilenceArmorTrimSmithingTemplate => "silence_armor_trim_smithing_template",
7421    RaiserArmorTrimSmithingTemplate => "raiser_armor_trim_smithing_template",
7422    HostArmorTrimSmithingTemplate => "host_armor_trim_smithing_template",
7423    FlowArmorTrimSmithingTemplate => "flow_armor_trim_smithing_template",
7424    BoltArmorTrimSmithingTemplate => "bolt_armor_trim_smithing_template",
7425    AnglerPotterySherd => "angler_pottery_sherd",
7426    ArcherPotterySherd => "archer_pottery_sherd",
7427    ArmsUpPotterySherd => "arms_up_pottery_sherd",
7428    BladePotterySherd => "blade_pottery_sherd",
7429    BrewerPotterySherd => "brewer_pottery_sherd",
7430    BurnPotterySherd => "burn_pottery_sherd",
7431    DangerPotterySherd => "danger_pottery_sherd",
7432    ExplorerPotterySherd => "explorer_pottery_sherd",
7433    FlowPotterySherd => "flow_pottery_sherd",
7434    FriendPotterySherd => "friend_pottery_sherd",
7435    GusterPotterySherd => "guster_pottery_sherd",
7436    HeartPotterySherd => "heart_pottery_sherd",
7437    HeartbreakPotterySherd => "heartbreak_pottery_sherd",
7438    HowlPotterySherd => "howl_pottery_sherd",
7439    MinerPotterySherd => "miner_pottery_sherd",
7440    MournerPotterySherd => "mourner_pottery_sherd",
7441    PlentyPotterySherd => "plenty_pottery_sherd",
7442    PrizePotterySherd => "prize_pottery_sherd",
7443    ScrapePotterySherd => "scrape_pottery_sherd",
7444    SheafPotterySherd => "sheaf_pottery_sherd",
7445    ShelterPotterySherd => "shelter_pottery_sherd",
7446    SkullPotterySherd => "skull_pottery_sherd",
7447    SnortPotterySherd => "snort_pottery_sherd",
7448    CopperGrate => "copper_grate",
7449    ExposedCopperGrate => "exposed_copper_grate",
7450    WeatheredCopperGrate => "weathered_copper_grate",
7451    OxidizedCopperGrate => "oxidized_copper_grate",
7452    WaxedCopperGrate => "waxed_copper_grate",
7453    WaxedExposedCopperGrate => "waxed_exposed_copper_grate",
7454    WaxedWeatheredCopperGrate => "waxed_weathered_copper_grate",
7455    WaxedOxidizedCopperGrate => "waxed_oxidized_copper_grate",
7456    CopperBulb => "copper_bulb",
7457    ExposedCopperBulb => "exposed_copper_bulb",
7458    WeatheredCopperBulb => "weathered_copper_bulb",
7459    OxidizedCopperBulb => "oxidized_copper_bulb",
7460    WaxedCopperBulb => "waxed_copper_bulb",
7461    WaxedExposedCopperBulb => "waxed_exposed_copper_bulb",
7462    WaxedWeatheredCopperBulb => "waxed_weathered_copper_bulb",
7463    WaxedOxidizedCopperBulb => "waxed_oxidized_copper_bulb",
7464    CopperChest => "copper_chest",
7465    ExposedCopperChest => "exposed_copper_chest",
7466    WeatheredCopperChest => "weathered_copper_chest",
7467    OxidizedCopperChest => "oxidized_copper_chest",
7468    WaxedCopperChest => "waxed_copper_chest",
7469    WaxedExposedCopperChest => "waxed_exposed_copper_chest",
7470    WaxedWeatheredCopperChest => "waxed_weathered_copper_chest",
7471    WaxedOxidizedCopperChest => "waxed_oxidized_copper_chest",
7472    CopperGolemStatue => "copper_golem_statue",
7473    ExposedCopperGolemStatue => "exposed_copper_golem_statue",
7474    WeatheredCopperGolemStatue => "weathered_copper_golem_statue",
7475    OxidizedCopperGolemStatue => "oxidized_copper_golem_statue",
7476    WaxedCopperGolemStatue => "waxed_copper_golem_statue",
7477    WaxedExposedCopperGolemStatue => "waxed_exposed_copper_golem_statue",
7478    WaxedWeatheredCopperGolemStatue => "waxed_weathered_copper_golem_statue",
7479    WaxedOxidizedCopperGolemStatue => "waxed_oxidized_copper_golem_statue",
7480    TrialSpawner => "trial_spawner",
7481    TrialKey => "trial_key",
7482    OminousTrialKey => "ominous_trial_key",
7483    Vault => "vault",
7484    OminousBottle => "ominous_bottle",
7485}
7486}