gitextract_1tlnm8df/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── pull_request_template.md │ └── workflows/ │ ├── automatic_release.yml │ ├── automatic_revert.yml │ ├── deploy_dynamic_content.yml │ ├── lock.yml │ └── test_ci.yml ├── .gitignore ├── 1.12.lang ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── check_news.js ├── datapack/ │ ├── data/ │ │ └── minecraft/ │ │ └── loot_tables/ │ │ └── entities/ │ │ └── evoker.json │ └── pack.mcmeta ├── dynamic/ │ ├── alerts.json │ ├── news.json │ └── sp_messages.json ├── en-mods/ │ ├── betternether.json │ ├── craftpresence.json │ ├── extraalchemy.json │ ├── shulkerboxtooltip.json │ └── tdnf.json ├── list_of_language_modules.md ├── list_of_supported_mods.md ├── mappings/ │ ├── addServer.json │ ├── advMode.json │ ├── advancements.json │ ├── all_mappings │ ├── attribute.json │ ├── book.json │ ├── build.json │ ├── chat.json │ ├── connect.json │ ├── container.json │ ├── controls.json │ ├── createWorld.json │ ├── death.json │ ├── deathScreen.json │ ├── debug.json │ ├── demo.json │ ├── difficulty.json │ ├── disconnect.json │ ├── effect.json │ ├── enchantment.json │ ├── entity.json │ ├── filled_map.json │ ├── gameMode.json │ ├── generator.json │ ├── gui.json │ ├── inventory.json │ ├── item.json │ ├── itemGroup.json │ ├── key.json │ ├── lanServer.json │ ├── language.json │ ├── lingering_potion.json │ ├── mcoServer.json │ ├── menu.json │ ├── merchant.json │ ├── mount.json │ ├── multiplayer.json │ ├── narrator.json │ ├── options.json │ ├── potion.json │ ├── recipe.json │ ├── record.json │ ├── resourcePack.json │ ├── screenshot.json │ ├── selectServer.json │ ├── selectWorld.json │ ├── sign.json │ ├── soundCategory.json │ ├── spectatorMenu.json │ ├── splash_potion.json │ ├── stat.json │ ├── stats.json │ ├── structure_block.json │ ├── subtitles.json │ ├── tile.json │ ├── tipped_arrow.json │ ├── title.json │ ├── translation.json │ ├── tutorial.json │ └── wip.txt ├── materials/ │ ├── 0.xcf │ ├── 1.xcf │ ├── 2.xcf │ ├── 2_bedrock.xcf │ ├── 3.xcf │ ├── 3_bedrock.xcf │ ├── 3_bedrock_netease.xcf │ ├── 3_netease.xcf │ ├── 4.xcf │ ├── 4_bedrock.xcf │ ├── 4_netease.xcf │ ├── 5.xcf │ ├── 6.xcf │ ├── 7.xcf │ ├── 8.xcf │ ├── banner.xcf │ ├── banner_2nd_birthday.xcf │ ├── hammer_of_ban.bbmodel │ ├── update.xcf │ ├── zh_meme.xcf │ ├── zh_meme_1.17.xcf │ ├── zh_meme_2nd_birthday.xcf │ ├── 梗体中文.xcf │ └── 梗体中文_new.xcf ├── mods/ │ ├── Computronics.json │ ├── adorn.json │ ├── anc.json │ ├── blockus.json │ ├── buildcraft.json │ ├── cloth-config2.json │ ├── corail_woodcutter.json │ ├── craftingpp.json │ ├── create.json │ ├── diggusmaximus.json │ ├── durabilityviewer.json │ ├── dynamicfps.json │ ├── expandedstorage.json │ ├── firefly8.json │ ├── glassdoor.json │ ├── hwyla.json │ ├── illuminations.json │ ├── immersive_engineering.json │ ├── immersive_portals.json │ ├── inventoryprofiles.json │ ├── inventorysorter.json │ ├── itemscroller.json │ ├── ivrench.json │ ├── justmap.json │ ├── lightoverlay.json │ ├── litematica.json │ ├── minihud.json │ ├── modmenu.json │ ├── mousewheelie.json │ ├── mycommands.json │ ├── nochatreport.json │ ├── opencomputers.json │ ├── optifine.lang │ ├── orderly.json │ ├── raa.json │ ├── realcamera.json │ ├── roughlyenoughitems.json │ ├── simplevoidworld.json │ ├── simplexterrain.json │ ├── slimefunction.json │ ├── sodium.json │ ├── sweet_potato.json │ ├── techreborn.json │ ├── terrestria.json │ ├── torcherino.json │ ├── traverse.json │ ├── tweakeroo.json │ ├── vanilla_hammers.json │ └── voxelmap.json ├── modules/ │ ├── a_letter/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── texts/ │ │ │ └── end.txt │ │ └── module_manifest.json │ ├── a_piece_of_seriousness/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── texts/ │ │ │ └── end.txt │ │ └── module_manifest.json │ ├── air_pods/ │ │ └── module_manifest.json │ ├── anniversary/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── block/ │ │ │ └── cake.json │ │ └── module_manifest.json │ ├── annoying_sounds/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ ├── sounds/ │ │ │ │ ├── copyright.ogg │ │ │ │ ├── ding.ogg │ │ │ │ ├── ghost.ogg │ │ │ │ ├── peach.ogg │ │ │ │ ├── whaaaaat.ogg │ │ │ │ ├── yee.ogg │ │ │ │ └── yeet.ogg │ │ │ └── sounds.json │ │ └── module_manifest.json │ ├── author_zombies/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── optifine/ │ │ │ └── random/ │ │ │ └── entity/ │ │ │ └── zombie/ │ │ │ └── zombie.properties │ │ └── module_manifest.json │ ├── bagify/ │ │ └── module_manifest.json │ ├── baguette/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── item/ │ │ │ └── bread.json │ │ └── module_manifest.json │ ├── bb_mace/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ ├── models/ │ │ │ │ └── item/ │ │ │ │ └── mace.json │ │ │ ├── sounds/ │ │ │ │ └── item/ │ │ │ │ └── mace/ │ │ │ │ ├── smash_air.ogg │ │ │ │ └── smash_ground.ogg │ │ │ └── sounds.json │ │ └── module_manifest.json │ ├── beautiful_chicken/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── sounds/ │ │ │ └── mob/ │ │ │ └── chicken/ │ │ │ ├── hurt1.ogg │ │ │ └── hurt2.ogg │ │ └── module_manifest.json │ ├── bee_breeze/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── bee_pickaxe/ │ │ └── module_manifest.json │ ├── bee_pickaxe_ii/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── item/ │ │ │ └── golden_pickaxe.json │ │ └── module_manifest.json │ ├── bell_sound/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── sounds/ │ │ │ └── block/ │ │ │ └── bell/ │ │ │ ├── bell_use01.ogg │ │ │ └── bell_use02.ogg │ │ └── module_manifest.json │ ├── block_animation_reverse/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── textures/ │ │ │ └── block/ │ │ │ ├── blast_furnace_front_on.png.mcmeta │ │ │ ├── campfire_fire.png.mcmeta │ │ │ ├── campfire_log_lit.png.mcmeta │ │ │ ├── chain_command_block_back.png.mcmeta │ │ │ ├── chain_command_block_conditional.png.mcmeta │ │ │ ├── chain_command_block_front.png.mcmeta │ │ │ ├── chain_command_block_side.png.mcmeta │ │ │ ├── command_block_back.png.mcmeta │ │ │ ├── command_block_conditional.png.mcmeta │ │ │ ├── command_block_front.png.mcmeta │ │ │ ├── command_block_side.png.mcmeta │ │ │ ├── crimson_stem.png.mcmeta │ │ │ ├── fire_0.png.mcmeta │ │ │ ├── fire_1.png.mcmeta │ │ │ ├── firefly_bush_emissive.png.mcmeta │ │ │ ├── kelp.png.mcmeta │ │ │ ├── kelp_plant.png.mcmeta │ │ │ ├── lantern.png.mcmeta │ │ │ ├── lava_flow.png.mcmeta │ │ │ ├── lava_still.png.mcmeta │ │ │ ├── magma.png.mcmeta │ │ │ ├── nether_portal.png.mcmeta │ │ │ ├── prismarine.png.mcmeta │ │ │ ├── repeating_command_block_back.png.mcmeta │ │ │ ├── repeating_command_block_conditional.png.mcmeta │ │ │ ├── repeating_command_block_front.png.mcmeta │ │ │ ├── repeating_command_block_side.png.mcmeta │ │ │ ├── respawn_anchor_top.png.mcmeta │ │ │ ├── sculk.png.mcmeta │ │ │ ├── sculk_catalyst_side_bloom.png.mcmeta │ │ │ ├── sculk_catalyst_top_bloom.png.mcmeta │ │ │ ├── sculk_sensor_tendril_active.png.mcmeta │ │ │ ├── sculk_sensor_tendril_inactive.png.mcmeta │ │ │ ├── sculk_shrieker_can_summon_inner_top.png.mcmeta │ │ │ ├── sculk_shrieker_inner_top.png.mcmeta │ │ │ ├── sculk_vein.png.mcmeta │ │ │ ├── sea_lantern.png.mcmeta │ │ │ ├── seagrass.png.mcmeta │ │ │ ├── smoker_front_on.png.mcmeta │ │ │ ├── soul_campfire_fire.png.mcmeta │ │ │ ├── soul_campfire_log_lit.png.mcmeta │ │ │ ├── soul_fire_0.png.mcmeta │ │ │ ├── soul_fire_1.png.mcmeta │ │ │ ├── soul_lantern.png.mcmeta │ │ │ ├── stonecutter_saw.png.mcmeta │ │ │ ├── tall_seagrass_bottom.png.mcmeta │ │ │ ├── tall_seagrass_top.png.mcmeta │ │ │ ├── warped_stem.png.mcmeta │ │ │ ├── water_flow.png.mcmeta │ │ │ └── water_still.png.mcmeta │ │ └── module_manifest.json │ ├── blue_basin/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── brewing_stand_model/ │ │ ├── assets/ │ │ │ ├── mcwzhmeme/ │ │ │ │ └── models/ │ │ │ │ └── block/ │ │ │ │ └── author/ │ │ │ │ ├── dianliang.json │ │ │ │ ├── gugle.json │ │ │ │ ├── lake.json │ │ │ │ ├── littlec.json │ │ │ │ ├── lxazl5770.json │ │ │ │ ├── mysticnebula70.json │ │ │ │ ├── skyeyefast.json │ │ │ │ └── wolf.json │ │ │ └── minecraft/ │ │ │ └── blockstates/ │ │ │ └── brewing_stand.json │ │ └── module_manifest.json │ ├── bugjump/ │ │ └── module_manifest.json │ ├── chicken_soup/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── chiseled_bookshelf/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── choice_module_netease/ │ │ └── module_manifest.json │ ├── choice_modules_default/ │ │ └── module_manifest.json │ ├── disco_ball/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── textures/ │ │ │ └── block/ │ │ │ └── redstone_lamp_on.png.mcmeta │ │ └── module_manifest.json │ ├── dorowolf_texture/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── item/ │ │ │ └── wolf_spawn_egg.json │ │ └── module_manifest.json │ ├── enable_compliancies/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── regional_compliancies.json │ │ └── module_manifest.json │ ├── enchantment_level_extend/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── explorer_pottery_pattern/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── fake_multitool/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── item/ │ │ │ ├── diamond_axe.json │ │ │ ├── diamond_hoe.json │ │ │ ├── diamond_pickaxe.json │ │ │ ├── diamond_shovel.json │ │ │ ├── diamond_sword.json │ │ │ ├── golden_axe.json │ │ │ ├── golden_hoe.json │ │ │ ├── golden_pickaxe.json │ │ │ ├── golden_shovel.json │ │ │ ├── golden_sword.json │ │ │ ├── iron_axe.json │ │ │ ├── iron_hoe.json │ │ │ ├── iron_pickaxe.json │ │ │ ├── iron_shovel.json │ │ │ ├── iron_sword.json │ │ │ ├── netherite_axe.json │ │ │ ├── netherite_hoe.json │ │ │ ├── netherite_pickaxe.json │ │ │ ├── netherite_shovel.json │ │ │ ├── netherite_sword.json │ │ │ ├── stone_axe.json │ │ │ ├── stone_hoe.json │ │ │ ├── stone_pickaxe.json │ │ │ ├── stone_shovel.json │ │ │ ├── stone_sword.json │ │ │ ├── wooden_axe.json │ │ │ ├── wooden_hoe.json │ │ │ ├── wooden_pickaxe.json │ │ │ ├── wooden_shovel.json │ │ │ └── wooden_sword.json │ │ └── module_manifest.json │ ├── fake_omniore/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ ├── blockstates/ │ │ │ │ ├── infested_deepslate.json │ │ │ │ └── infested_stone.json │ │ │ ├── models/ │ │ │ │ └── block/ │ │ │ │ ├── coal_ore.json │ │ │ │ ├── copper_ore.json │ │ │ │ ├── deepslate_coal_ore.json │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ ├── deepslate_diamond_ore.json │ │ │ │ ├── deepslate_emerald_ore.json │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ ├── deepslate_lapis_ore.json │ │ │ │ ├── deepslate_redstone_ore.json │ │ │ │ ├── diamond_ore.json │ │ │ │ ├── emerald_ore.json │ │ │ │ ├── fake_omniore.json │ │ │ │ ├── fake_omniore_deepslate.json │ │ │ │ ├── gold_ore.json │ │ │ │ ├── iron_ore.json │ │ │ │ ├── lapis_ore.json │ │ │ │ ├── nether_gold_ore.json │ │ │ │ ├── nether_quartz_ore.json │ │ │ │ └── redstone_ore.json │ │ │ └── textures/ │ │ │ └── block/ │ │ │ ├── omniore.png.mcmeta │ │ │ ├── omniore_deepslate.png.mcmeta │ │ │ └── omniore_nether.png.mcmeta │ │ └── module_manifest.json │ ├── famous_scene/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── firework_sound/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── sounds/ │ │ │ └── fireworks/ │ │ │ ├── blast1.ogg │ │ │ ├── blast_far1.ogg │ │ │ ├── largeblast1.ogg │ │ │ ├── largeblast_far1.ogg │ │ │ ├── launch1.ogg │ │ │ ├── twinkle1.ogg │ │ │ └── twinkle_far1.ogg │ │ └── module_manifest.json │ ├── fursuit/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── ga_zhi/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── sounds/ │ │ │ ├── block/ │ │ │ │ └── creaking_heart/ │ │ │ │ ├── break/ │ │ │ │ │ └── creaking_heart_break.ogg │ │ │ │ ├── fall/ │ │ │ │ │ └── creaking_heart_fall.ogg │ │ │ │ ├── hit/ │ │ │ │ │ ├── creaking_heart_hit1.ogg │ │ │ │ │ ├── creaking_heart_hit2.ogg │ │ │ │ │ ├── creaking_heart_hit3.ogg │ │ │ │ │ ├── creaking_heart_hit4.ogg │ │ │ │ │ └── creaking_heart_hit5.ogg │ │ │ │ ├── hurt/ │ │ │ │ │ ├── trail1.ogg │ │ │ │ │ ├── trail2.ogg │ │ │ │ │ ├── trail3.ogg │ │ │ │ │ ├── trail4.ogg │ │ │ │ │ ├── trail5.ogg │ │ │ │ │ ├── trail6.ogg │ │ │ │ │ └── trail7.ogg │ │ │ │ ├── idle/ │ │ │ │ │ ├── creaking_heart_idle1.ogg │ │ │ │ │ ├── creaking_heart_idle2.ogg │ │ │ │ │ ├── creaking_heart_idle3.ogg │ │ │ │ │ └── creaking_heart_idle4.ogg │ │ │ │ ├── place/ │ │ │ │ │ ├── wood1.ogg │ │ │ │ │ ├── wood2.ogg │ │ │ │ │ ├── wood3.ogg │ │ │ │ │ └── wood4.ogg │ │ │ │ ├── spawnmob/ │ │ │ │ │ └── creaking_heart_spawnmob.ogg │ │ │ │ └── step/ │ │ │ │ ├── creaking_heart_step1.ogg │ │ │ │ ├── creaking_heart_step2.ogg │ │ │ │ ├── creaking_heart_step3.ogg │ │ │ │ ├── creaking_heart_step4.ogg │ │ │ │ ├── creaking_heart_step5.ogg │ │ │ │ └── creaking_heart_step6.ogg │ │ │ └── mob/ │ │ │ └── creaking/ │ │ │ ├── attack.ogg │ │ │ ├── creaking_activate.ogg │ │ │ ├── creaking_attack1.ogg │ │ │ ├── creaking_attack2.ogg │ │ │ ├── creaking_attack3.ogg │ │ │ ├── creaking_attack4.ogg │ │ │ ├── creaking_deactive.ogg │ │ │ ├── creaking_death.ogg │ │ │ ├── creaking_freeze1.ogg │ │ │ ├── creaking_freeze2.ogg │ │ │ ├── creaking_freeze3.ogg │ │ │ ├── creaking_freeze4.ogg │ │ │ ├── creaking_idle1.ogg │ │ │ ├── creaking_idle2.ogg │ │ │ ├── creaking_idle3.ogg │ │ │ ├── creaking_idle4.ogg │ │ │ ├── creaking_idle5.ogg │ │ │ ├── creaking_idle6.ogg │ │ │ ├── creaking_spawn.ogg │ │ │ ├── creaking_step1.ogg │ │ │ ├── creaking_step2.ogg │ │ │ ├── creaking_step3.ogg │ │ │ ├── creaking_step4.ogg │ │ │ ├── creaking_step5.ogg │ │ │ ├── creaking_sway.ogg │ │ │ ├── creaking_unfreeze1.ogg │ │ │ ├── creaking_unfreeze2.ogg │ │ │ └── creaking_unfreeze3.ogg │ │ └── module_manifest.json │ ├── gameplay_confuser/ │ │ └── module_manifest.json │ ├── goat_horn_sound/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── sounds/ │ │ │ └── item/ │ │ │ └── goat_horn/ │ │ │ ├── call0.ogg │ │ │ ├── call1.ogg │ │ │ ├── call2.ogg │ │ │ ├── call3.ogg │ │ │ ├── call4.ogg │ │ │ ├── call5.ogg │ │ │ ├── call6.ogg │ │ │ └── call7.ogg │ │ └── module_manifest.json │ ├── grass_enchanted/ │ │ └── module_manifest.json │ ├── jinkela/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_achievements_1.11-1.11.2/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_april_fools_snapshots/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── nothingtoseeheremovealong/ │ │ │ └── sounds/ │ │ │ └── ananas/ │ │ │ ├── papapaya.ogg │ │ │ └── papaya.ogg │ │ └── module_manifest.json │ ├── lang_attributes_1.12.2-1.15.2/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_backupworld_1.12.2-1.16.5/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_chat_preview_1.19.2/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_combat_test_6/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_commands_1.11-1.12.2/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_compatibility_1.12/ │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_extra_strings/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_grass_path_1.12.2-1.16.5/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_itemgroup_1.12.2-1.19.2/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_multiplayer_1.12.2-1.16.3/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_netease/ │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_nether_biome_1.12.2-1.15.2/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_old_biomes_1.12.2-1.17.1/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_old_realms_strings/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_old_strings/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_replaceitem_1.12.2-1.16.5/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_selectworld_gui_1.12.2-1.16.1/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_selectworld_gui_1.16.2-1.16.5/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_serious_dedication_1.12.2-1.15.2/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_sfc/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_sfw/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_sleep_impossible_1.12.2-1.16.5/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_spawnpoint_1.12.2-1.15.2/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_spawnpoint_1.16-1.16.1/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_trapdoor_1.12.2-1.15.2/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── lang_world_generation_1.12.2-1.18.2/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── lang_worldborder_1.12.2-1.16.5/ │ │ ├── add.json │ │ ├── module_manifest.json │ │ └── remove.json │ ├── latiao/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── linus_minecraft_craps/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── locusazzurro/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── item/ │ │ │ └── chicken_spawn_egg.json │ │ └── module_manifest.json │ ├── manhole_trapdoor/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── map_override/ │ │ └── module_manifest.json │ ├── mcbbs/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── meme_resourcepack/ │ │ ├── LICENSE │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ ├── lang/ │ │ │ │ └── zh_meme.json │ │ │ └── texts/ │ │ │ └── credits.json │ │ ├── module_manifest.json │ │ └── pack.mcmeta │ ├── meme_splashes/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── texts/ │ │ │ └── splashes.txt │ │ └── module_manifest.json │ ├── miku_bucket/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── item/ │ │ │ └── tadpole_bucket.json │ │ └── module_manifest.json │ ├── minecart_helmet/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── minecraft_cjk_character_supplement/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── font/ │ │ │ ├── default.json │ │ │ ├── ext-d │ │ │ ├── ext-i │ │ │ ├── extb-first-32 │ │ │ ├── extb-supp │ │ │ ├── extb-to-extf │ │ │ ├── extc-supp │ │ │ ├── extg-first-384 │ │ │ └── unicode_ext_a_15_1_pending_correct1.hex │ │ └── module_manifest.json │ ├── mooncake/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── mopemope/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── muilla/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── observer_think/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── block/ │ │ │ └── observer_on.json │ │ └── module_manifest.json │ ├── open_close_sound/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── sounds/ │ │ │ └── block/ │ │ │ ├── barrel/ │ │ │ │ ├── close.ogg │ │ │ │ ├── open1.ogg │ │ │ │ └── open2.ogg │ │ │ ├── chest/ │ │ │ │ ├── close.ogg │ │ │ │ ├── close2.ogg │ │ │ │ ├── close3.ogg │ │ │ │ └── open.ogg │ │ │ ├── enderchest/ │ │ │ │ ├── close.ogg │ │ │ │ └── open.ogg │ │ │ ├── fence_gate/ │ │ │ │ ├── close1.ogg │ │ │ │ ├── close2.ogg │ │ │ │ ├── open1.ogg │ │ │ │ └── open2.ogg │ │ │ ├── iron_door/ │ │ │ │ ├── close1.ogg │ │ │ │ ├── close2.ogg │ │ │ │ ├── close3.ogg │ │ │ │ ├── close4.ogg │ │ │ │ ├── open1.ogg │ │ │ │ ├── open2.ogg │ │ │ │ ├── open3.ogg │ │ │ │ └── open4.ogg │ │ │ ├── iron_trapdoor/ │ │ │ │ ├── close1.ogg │ │ │ │ ├── close2.ogg │ │ │ │ ├── close3.ogg │ │ │ │ ├── close4.ogg │ │ │ │ ├── open1.ogg │ │ │ │ ├── open2.ogg │ │ │ │ ├── open3.ogg │ │ │ │ └── open4.ogg │ │ │ ├── shulker_box/ │ │ │ │ ├── close.ogg │ │ │ │ └── open.ogg │ │ │ ├── wooden_door/ │ │ │ │ ├── close1.ogg │ │ │ │ ├── close2.ogg │ │ │ │ ├── close3.ogg │ │ │ │ ├── close4.ogg │ │ │ │ ├── close5.ogg │ │ │ │ ├── close6.ogg │ │ │ │ ├── open1.ogg │ │ │ │ ├── open2.ogg │ │ │ │ ├── open3.ogg │ │ │ │ └── open4.ogg │ │ │ └── wooden_trapdoor/ │ │ │ ├── close1.ogg │ │ │ ├── close2.ogg │ │ │ ├── close3.ogg │ │ │ ├── open1.ogg │ │ │ ├── open2.ogg │ │ │ ├── open3.ogg │ │ │ ├── open4.ogg │ │ │ └── open5.ogg │ │ └── module_manifest.json │ ├── point_and_pixelate/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── gui/ │ │ │ └── sprites/ │ │ │ └── container/ │ │ │ └── slot_highlight_front.png.mcmeta │ │ └── module_manifest.json │ ├── priority.txt │ ├── questioning_totem/ │ │ └── module_manifest.json │ ├── rainbow_enchanting/ │ │ └── module_manifest.json │ ├── real_grass/ │ │ └── module_manifest.json │ ├── real_meme_resourcepack/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── block/ │ │ │ └── stem_fruit.json │ │ └── module_manifest.json │ ├── red_leaf_valley/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── optifine/ │ │ │ └── colormap/ │ │ │ └── blocks/ │ │ │ ├── birch_foliage.properties │ │ │ └── spruce_foliage.properties │ │ └── module_manifest.json │ ├── reverse_cake_model/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── block/ │ │ │ ├── cake.json │ │ │ ├── cake_slice1.json │ │ │ ├── cake_slice2.json │ │ │ ├── cake_slice3.json │ │ │ ├── cake_slice4.json │ │ │ ├── cake_slice5.json │ │ │ └── cake_slice6.json │ │ └── module_manifest.json │ ├── reverse_cake_texture/ │ │ ├── add.json │ │ └── module_manifest.json │ ├── sacabambaspis_dropper/ │ │ └── module_manifest.json │ ├── sculk_sound/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── sounds/ │ │ │ └── block/ │ │ │ ├── sculk_sensor/ │ │ │ │ ├── sculk_clicking1.ogg │ │ │ │ ├── sculk_clicking2.ogg │ │ │ │ ├── sculk_clicking3.ogg │ │ │ │ ├── sculk_clicking4.ogg │ │ │ │ ├── sculk_clicking5.ogg │ │ │ │ └── sculk_clicking6.ogg │ │ │ └── sculk_shrieker/ │ │ │ ├── shriek1.ogg │ │ │ ├── shriek2.ogg │ │ │ ├── shriek3.ogg │ │ │ ├── shriek4.ogg │ │ │ ├── shriek5.ogg │ │ │ └── shriek6.ogg │ │ └── module_manifest.json │ ├── sounds_modules/ │ │ └── module_manifest.json │ ├── strange_item_modules/ │ │ └── module_manifest.json │ ├── strange_spawn_eggs/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── textures/ │ │ │ └── item/ │ │ │ ├── panda_spawn_egg.png.mcmeta │ │ │ ├── parrot_spawn_egg.png.mcmeta │ │ │ └── witch_spawn_egg.png.mcmeta │ │ └── module_manifest.json │ ├── super_spicy_seaweed/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── textures/ │ │ │ └── block/ │ │ │ ├── kelp.png.mcmeta │ │ │ ├── kelp_plant.png.mcmeta │ │ │ ├── seagrass.png.mcmeta │ │ │ ├── tall_seagrass_bottom.png.mcmeta │ │ │ └── tall_seagrass_top.png.mcmeta │ │ └── module_manifest.json │ ├── sus_stuff/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── optifine/ │ │ │ └── cit/ │ │ │ └── suspicious_stew/ │ │ │ ├── blindness.properties │ │ │ ├── fire_resistance.properties │ │ │ ├── jump_boost.properties │ │ │ ├── night_vision.properties │ │ │ ├── poison.properties │ │ │ ├── regeneration.properties │ │ │ ├── saturation.properties │ │ │ ├── weakness.properties │ │ │ └── wither.properties │ │ └── module_manifest.json │ ├── text_credits_1.12-1.16.5/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── texts/ │ │ │ └── credits.txt │ │ └── module_manifest.json │ ├── text_credits_1.17-1.19.4/ │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── texts/ │ │ │ └── credits.json │ │ └── module_manifest.json │ ├── tnt_bamboo_block/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── block/ │ │ │ ├── bamboo_block.json │ │ │ ├── bamboo_block_x.json │ │ │ ├── bamboo_block_y.json │ │ │ ├── bamboo_block_z.json │ │ │ ├── stripped_bamboo_block.json │ │ │ ├── stripped_bamboo_block_x.json │ │ │ ├── stripped_bamboo_block_y.json │ │ │ └── stripped_bamboo_block_z.json │ │ └── module_manifest.json │ ├── too_much_compliancies/ │ │ ├── add.json │ │ ├── assets/ │ │ │ └── minecraft/ │ │ │ └── regional_compliancies.json │ │ └── module_manifest.json │ ├── totem_model/ │ │ ├── assets/ │ │ │ ├── mcwzhmeme/ │ │ │ │ └── models/ │ │ │ │ └── item/ │ │ │ │ └── author/ │ │ │ │ ├── dianliang.json │ │ │ │ ├── gugle.json │ │ │ │ ├── lake.json │ │ │ │ ├── littlec.json │ │ │ │ ├── lxazl5770.json │ │ │ │ ├── mysticnebula70.json │ │ │ │ ├── skyeyefast.json │ │ │ │ └── wolf.json │ │ │ └── minecraft/ │ │ │ └── models/ │ │ │ └── item/ │ │ │ └── totem_of_undying.json │ │ └── module_manifest.json │ ├── version_1.12.2-1.15.2/ │ │ └── module_manifest.json │ ├── version_1.13-1.15.2/ │ │ └── module_manifest.json │ ├── version_1.16.1/ │ │ └── module_manifest.json │ ├── version_1.16.5/ │ │ └── module_manifest.json │ ├── version_1.17.1/ │ │ └── module_manifest.json │ ├── version_1.18.2/ │ │ └── module_manifest.json │ ├── version_1.19.2/ │ │ └── module_manifest.json │ ├── version_1.19.3/ │ │ └── module_manifest.json │ ├── version_1.19.4/ │ │ └── module_manifest.json │ ├── version_1.20/ │ │ └── module_manifest.json │ ├── version_1.21/ │ │ └── module_manifest.json │ └── vulpes_ferrilata/ │ ├── add.json │ └── module_manifest.json ├── package.json ├── preset_build.js ├── prettier.config.js ├── renovate.json └── tools/ ├── cancel_ascii.py ├── conversion.py ├── conversiongroup.py ├── enchantment_level.py ├── generate_bitmap_font_provider.py ├── json2lang.py ├── lang_diff.py ├── lang_update/ │ ├── .gitignore │ ├── README.md │ ├── apply_patch.py │ ├── gen_diff.py │ └── requirements.txt ├── mapping_evaluating.py ├── pnghex.py └── sort.py