├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── build.yml ├── .gitignore ├── .mcattributes ├── .mcdefinitions ├── .prettierrc.json ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── README_zh_CN.md ├── behavior_packs └── mccr │ ├── dialogue │ ├── creator_ace.json │ ├── creator_grid.json │ ├── creator_melt.json │ ├── creator_mojang.json │ ├── creator_sand.json │ ├── floating_text.-17179869182.json │ ├── floating_text.-17179869183.json │ ├── floating_text.-4294967127.json │ ├── floating_text.-8589934579.json │ ├── floating_text.-8589934580.json │ ├── floating_text.-8589934581.json │ ├── floating_text.-8589934582.json │ ├── floating_text.21.json │ ├── frog.json │ ├── join_queue.json │ ├── puzzle_helper.json │ ├── start_game.json │ ├── vendor_food.json │ ├── vendor_hat.json │ ├── vendor_mascot.json │ └── vendor_toys.json │ ├── entities │ ├── balloon_helium.json │ ├── disco_ball.json │ ├── floating_text.json │ ├── md_blaze.json │ ├── md_skeleton.json │ ├── md_spider.json │ ├── md_v.json │ ├── md_zombie.json │ ├── player.json │ ├── seat.entity.json │ ├── start_btn.json │ ├── vanilla_vindictor.json │ ├── vendor_food.json │ ├── vendor_hat.json │ ├── vendor_mascot.json │ └── vendor_toys.json │ ├── functions │ ├── challenges │ │ └── puzzles │ │ │ ├── 3.mcfunction │ │ │ └── index.mcfunction │ ├── frog.mcfunction │ ├── mccr │ │ ├── ace_race.mcfunction │ │ ├── boost.mcfunction │ │ ├── coins.mcfunction │ │ ├── elytra.mcfunction │ │ ├── elytra_gates.mcfunction │ │ ├── gr.mcfunction │ │ ├── index.mcfunction │ │ ├── meltdown.mcfunction │ │ ├── on_tick.mcfunction │ │ ├── portals.mcfunction │ │ ├── return.mcfunction │ │ └── sot.mcfunction │ ├── player │ │ └── effect │ │ │ └── check │ │ │ └── block │ │ │ └── boost.mcfunction │ └── tick.json │ ├── items │ └── noxcrew.ft │ │ ├── celebration_fireworks.json │ │ ├── freezing_bow.json │ │ └── party_cake.json │ ├── manifest.json │ └── pack_icon.png ├── eslint.config.mjs ├── floating_texts.json ├── logo.png ├── mcdata ├── ar.mcdata ├── gr.mcdata ├── meltdown.mcdata └── sot.mcdata ├── package.json ├── resource_packs └── mccr │ ├── attachables │ └── bow.json │ ├── manifest.json │ ├── pack_icon.png │ ├── texts │ ├── en_US.lang │ ├── languages.json │ ├── zh_CN.lang │ └── zh_TW.lang │ ├── textures │ ├── item_texture.json │ └── mccr │ │ └── meltdown │ │ ├── bow_pulling_0.png │ │ ├── bow_pulling_1.png │ │ ├── bow_pulling_2.png │ │ └── bow_standby.png │ └── ui │ ├── _global_variables.json │ ├── _ui_defs.json │ └── hud_screen.json ├── scripts ├── challenges.ts ├── components.ts ├── data.ts ├── data │ ├── ar.ts │ ├── gr.ts │ ├── meltdown.ts │ └── sot.ts ├── debug │ ├── index.ts │ └── scripts │ │ └── challenges.ts ├── environment.ts ├── flags.ts ├── game.ts ├── gameData.ts ├── games │ ├── ace_race.ts │ ├── gameInstance.ts │ ├── grid_runners.ts │ ├── meltdown.ts │ └── sot.ts ├── global.d.ts ├── inventory.ts ├── lang.ts ├── langfile.ts ├── logger.ts ├── main.ts ├── math.ts ├── minecraft │ └── math │ │ ├── clamp.ts │ │ ├── coreHelpers.ts │ │ ├── index.ts │ │ └── vectorWrapper.ts ├── patches.d.ts ├── plugin.ts ├── puzzles │ └── puzzle.ts ├── queue.ts ├── record.ts ├── rule.ts ├── sound.ts ├── text.ts ├── types.ts ├── ui │ ├── gamebar.ts │ ├── gametoast.ts │ ├── screens.ts │ └── title.ts └── utils.ts ├── tools ├── cmdGenerator.py ├── floatingTextDG.cjs ├── genTranslatedDialogue.py └── lang.json ├── tsconfig.json ├── world ├── behavior_packs │ └── MCC x Minecraft │ │ ├── animation_controllers │ │ └── player │ │ │ ├── death.json │ │ │ ├── item_interact.json │ │ │ └── jump.json │ │ ├── animations │ │ ├── hub_door.json │ │ ├── player │ │ │ └── ui_spawn.json │ │ ├── portal_detect.json │ │ ├── portal_sound.json │ │ └── scoreboard_update.json │ │ ├── blocks │ │ └── noxcrew.ft │ │ │ ├── ace_banner.json │ │ │ ├── ace_banner_a.json │ │ │ ├── ace_banner_b.json │ │ │ ├── audience_member_angry.json │ │ │ ├── audience_member_happy.json │ │ │ ├── audience_member_joy.json │ │ │ ├── audience_member_oof.json │ │ │ ├── audience_member_starstruck.json │ │ │ ├── audience_member_unimpressed.json │ │ │ ├── audience_member_unsure.json │ │ │ ├── bigcake_bottom.json │ │ │ ├── bigcake_top.json │ │ │ ├── blue_panel_a.json │ │ │ ├── blue_panel_b.json │ │ │ ├── blue_panel_c.json │ │ │ ├── blue_panel_d.json │ │ │ ├── blue_slab.json │ │ │ ├── blue_slab_top.json │ │ │ ├── cake_centre.json │ │ │ ├── cake_cherry.json │ │ │ ├── cake_edge.json │ │ │ ├── cake_slice.json │ │ │ ├── cake_sponge.json │ │ │ ├── castle_pink.json │ │ │ ├── cloud_foliage.json │ │ │ ├── cup_poster1.json │ │ │ ├── cup_poster2.json │ │ │ ├── cyan_slab.json │ │ │ ├── cyan_slab_top.json │ │ │ ├── decoration_banner_15_long_a.json │ │ │ ├── decoration_banner_15_long_b.json │ │ │ ├── decoration_banner_mcc_a.json │ │ │ ├── decoration_banner_mcc_b.json │ │ │ ├── decoration_banner_mcc_c.json │ │ │ ├── decoration_banner_mcc_d.json │ │ │ ├── decoration_banner_mcc_long_a.json │ │ │ ├── decoration_banner_mcc_long_b.json │ │ │ ├── decoration_bunting_a.json │ │ │ ├── decoration_bunting_b.json │ │ │ ├── decoration_bunting_mcc.json │ │ │ ├── decoration_flag_15.json │ │ │ ├── decoration_flag_15_long_a.json │ │ │ ├── decoration_flag_15_long_b.json │ │ │ ├── decoration_flag_mcc.json │ │ │ ├── decoration_flag_mcc_long_a.json │ │ │ ├── decoration_flag_mcc_long_b.json │ │ │ ├── decoration_pennon_15_a.json │ │ │ ├── decoration_pennon_15_b.json │ │ │ ├── decoration_pennon_mcc.json │ │ │ ├── decoration_present.json │ │ │ ├── dragon_scale.json │ │ │ ├── elytra_icon.json │ │ │ ├── exit_a.json │ │ │ ├── exit_b.json │ │ │ ├── exit_small.json │ │ │ ├── fake_end_portal.json │ │ │ ├── fake_portal.json │ │ │ ├── fake_pot.json │ │ │ ├── fan_vent.json │ │ │ ├── floor_panel_a.json │ │ │ ├── floor_panel_b.json │ │ │ ├── floor_panel_c.json │ │ │ ├── floor_panel_d.json │ │ │ ├── gr_glass2.json │ │ │ ├── gr_glass3.json │ │ │ ├── gray_panel_a.json │ │ │ ├── gray_panel_b.json │ │ │ ├── gray_panel_c.json │ │ │ ├── gray_panel_d.json │ │ │ ├── hieroglyph_1_a.json │ │ │ ├── hieroglyph_1_b.json │ │ │ ├── hieroglyph_1_c.json │ │ │ ├── hieroglyph_1_d.json │ │ │ ├── hieroglyph_2_a.json │ │ │ ├── hieroglyph_2_b.json │ │ │ ├── hieroglyph_2_c.json │ │ │ ├── hieroglyph_2_d.json │ │ │ ├── hieroglyph_3_a.json │ │ │ ├── hieroglyph_3_b.json │ │ │ ├── hieroglyph_3_c.json │ │ │ ├── hieroglyph_3_d.json │ │ │ ├── hieroglyph_4_a.json │ │ │ ├── hieroglyph_4_b.json │ │ │ ├── hieroglyph_4_c.json │ │ │ ├── hieroglyph_4_d.json │ │ │ ├── hieroglyph_5_a.json │ │ │ ├── hieroglyph_5_b.json │ │ │ ├── hieroglyph_5_c.json │ │ │ ├── hieroglyph_5_d.json │ │ │ ├── hieroglyph_6_a.json │ │ │ ├── hieroglyph_6_b.json │ │ │ ├── hieroglyph_6_c.json │ │ │ ├── hieroglyph_6_d.json │ │ │ ├── hieroglyph_7_a.json │ │ │ ├── hieroglyph_7_b.json │ │ │ ├── hieroglyph_7_c.json │ │ │ ├── hieroglyph_7_d.json │ │ │ ├── hub_net.json │ │ │ ├── iron_bars.json │ │ │ ├── iron_bars_c.json │ │ │ ├── iron_bars_h.json │ │ │ ├── jump_pad.json │ │ │ ├── l_blue_slab.json │ │ │ ├── l_blue_slab_top.json │ │ │ ├── launch_pad.json │ │ │ ├── light_blue_panel_a.json │ │ │ ├── light_blue_panel_b.json │ │ │ ├── light_blue_panel_c.json │ │ │ ├── light_blue_panel_d.json │ │ │ ├── light_navy_concrete.json │ │ │ ├── light_navy_panel_a.json │ │ │ ├── light_navy_panel_b.json │ │ │ ├── light_navy_panel_c.json │ │ │ ├── light_navy_panel_d.json │ │ │ ├── light_navy_terracotta.json │ │ │ ├── light_navy_wool.json │ │ │ ├── lime_slab.json │ │ │ ├── lime_slab_top.json │ │ │ ├── logo_1.json │ │ │ ├── logo_2.json │ │ │ ├── logo_3.json │ │ │ ├── md_a.json │ │ │ ├── md_b.json │ │ │ ├── md_barrel.json │ │ │ ├── md_c.json │ │ │ ├── md_d.json │ │ │ ├── md_e.json │ │ │ ├── md_f.json │ │ │ ├── md_g.json │ │ │ ├── md_white_border.json │ │ │ ├── melt_spawner.json │ │ │ ├── melted_bars.json │ │ │ ├── melted_bars_c.json │ │ │ ├── melted_bars_h.json │ │ │ ├── melted_rigging_h.json │ │ │ ├── melted_rigging_v.json │ │ │ ├── metal_rigging_h.json │ │ │ ├── metal_rigging_v.json │ │ │ ├── modern_light.json │ │ │ ├── n_button.json │ │ │ ├── navy_concrete.json │ │ │ ├── navy_panel_a.json │ │ │ ├── navy_panel_b.json │ │ │ ├── navy_panel_c.json │ │ │ ├── navy_panel_d.json │ │ │ ├── navy_terracotta.json │ │ │ ├── navy_wool.json │ │ │ ├── office_chair.json │ │ │ ├── orange_slab.json │ │ │ ├── orange_slab_top.json │ │ │ ├── painting_black.json │ │ │ ├── painting_blue.json │ │ │ ├── painting_brown.json │ │ │ ├── painting_green.json │ │ │ ├── painting_purple.json │ │ │ ├── painting_red.json │ │ │ ├── painting_white.json │ │ │ ├── painting_yellow.json │ │ │ ├── park_bench_a.json │ │ │ ├── park_bench_b.json │ │ │ ├── plush_aqua.json │ │ │ ├── plush_blue.json │ │ │ ├── plush_cyan.json │ │ │ ├── plush_green.json │ │ │ ├── plush_lime.json │ │ │ ├── plush_orange.json │ │ │ ├── plush_pink.json │ │ │ ├── plush_purple.json │ │ │ ├── plush_red.json │ │ │ ├── plush_yellow.json │ │ │ ├── purple_slab.json │ │ │ ├── purple_slab_top.json │ │ │ ├── recycling_bin.json │ │ │ ├── red_slab.json │ │ │ ├── red_slab_top.json │ │ │ ├── rotating_light.json │ │ │ ├── rotating_light_off.json │ │ │ ├── snow_slab.json │ │ │ ├── snow_slab_top.json │ │ │ ├── sot_a.json │ │ │ ├── sot_b.json │ │ │ ├── sot_c.json │ │ │ ├── sot_d.json │ │ │ ├── sot_e.json │ │ │ ├── sot_f.json │ │ │ ├── sot_flower.json │ │ │ ├── sot_g.json │ │ │ ├── sot_h.json │ │ │ ├── sot_i.json │ │ │ ├── sot_j.json │ │ │ ├── sot_k.json │ │ │ ├── sot_l.json │ │ │ ├── sot_m.json │ │ │ ├── sot_n.json │ │ │ ├── sot_o.json │ │ │ ├── sot_p.json │ │ │ ├── sot_portal.json │ │ │ ├── sot_q.json │ │ │ ├── sot_r.json │ │ │ ├── sot_s.json │ │ │ ├── sot_t.json │ │ │ ├── speed_pad.json │ │ │ ├── teleport_block_a.json │ │ │ ├── teleport_block_b.json │ │ │ ├── vent_a.json │ │ │ ├── vent_b.json │ │ │ ├── wind_particle.json │ │ │ ├── window_oak.json │ │ │ ├── window_spruce.json │ │ │ ├── wood_crate.json │ │ │ ├── yellow_slab.json │ │ │ └── yellow_slab_top.json │ │ ├── entities │ │ ├── course │ │ │ ├── checkpoint.json │ │ │ ├── nether_portal.json │ │ │ ├── star_firework.json │ │ │ ├── tnt_minecart.json │ │ │ └── toolswap_gate.json │ │ ├── hub │ │ │ ├── biome_icon.json │ │ │ ├── scoreboard.json │ │ │ └── tutorial_sign.json │ │ ├── marketing │ │ │ ├── advert.json │ │ │ ├── keyart.json │ │ │ └── socials.json │ │ ├── noxcrew.ft │ │ │ ├── advert_creator_cup.json │ │ │ ├── armor_podium.json │ │ │ ├── beach_ball.json │ │ │ ├── cake_candles.json │ │ │ ├── coin_stack.json │ │ │ ├── creator_ace.json │ │ │ ├── creator_grid.json │ │ │ ├── creator_melt.json │ │ │ ├── creator_mojang.json │ │ │ ├── creator_sands.json │ │ │ ├── crowned_frog.json │ │ │ ├── decoration_15.json │ │ │ ├── decoration_awning.json │ │ │ ├── decoration_balloons.json │ │ │ ├── decoration_board.json │ │ │ ├── decoration_bunting.json │ │ │ ├── decoration_chicken_balloon.json │ │ │ ├── decoration_cupcake.json │ │ │ ├── decoration_mcc_balloon.json │ │ │ ├── floating_text.json │ │ │ ├── giant_cake.json │ │ │ ├── hieroglyph_helper.json │ │ │ ├── hub_coin.json │ │ │ ├── key_podium.json │ │ │ ├── lost_pearl.json │ │ │ ├── md_zombie.json │ │ │ ├── paint_pot.json │ │ │ ├── paint_proj.json │ │ │ ├── sand_blocks.json │ │ │ ├── sand_timer.json │ │ │ ├── seat.json │ │ │ ├── start_button.json │ │ │ ├── treasure_chest.json │ │ │ ├── trophy_help.json │ │ │ ├── vendor_food.json │ │ │ ├── vendor_hat.json │ │ │ ├── vendor_mascot.json │ │ │ └── vendor_toys.json │ │ ├── player.json │ │ └── utility │ │ │ ├── animator.json │ │ │ ├── fire_douser.json │ │ │ ├── launcher.json │ │ │ ├── raycaster.json │ │ │ └── ui_popup.json │ │ ├── functions │ │ ├── main_tick.mcfunction │ │ ├── music │ │ │ ├── start.mcfunction │ │ │ ├── stop_course.mcfunction │ │ │ └── stop_return.mcfunction │ │ ├── player │ │ │ ├── effect │ │ │ │ ├── check │ │ │ │ │ ├── block │ │ │ │ │ │ ├── boost.mcfunction │ │ │ │ │ │ ├── jump.mcfunction │ │ │ │ │ │ ├── jump_finish.mcfunction │ │ │ │ │ │ ├── jump_loop.mcfunction │ │ │ │ │ │ └── speed.mcfunction │ │ │ │ │ ├── clear.mcfunction │ │ │ │ │ ├── clear │ │ │ │ │ │ ├── boost.mcfunction │ │ │ │ │ │ ├── jump.mcfunction │ │ │ │ │ │ └── speed.mcfunction │ │ │ │ │ ├── give.mcfunction │ │ │ │ │ └── give │ │ │ │ │ │ ├── boost.mcfunction │ │ │ │ │ │ ├── jump.mcfunction │ │ │ │ │ │ └── speed.mcfunction │ │ │ │ ├── clear │ │ │ │ │ ├── boost.mcfunction │ │ │ │ │ ├── jump.mcfunction │ │ │ │ │ └── speed.mcfunction │ │ │ │ ├── give │ │ │ │ │ ├── boost.mcfunction │ │ │ │ │ ├── jump.mcfunction │ │ │ │ │ └── speed.mcfunction │ │ │ │ └── update.mcfunction │ │ │ ├── item │ │ │ │ ├── elytra.mcfunction │ │ │ │ ├── tools.mcfunction │ │ │ │ ├── trident.mcfunction │ │ │ │ └── update.mcfunction │ │ │ ├── loc │ │ │ │ ├── changed.mcfunction │ │ │ │ └── update.mcfunction │ │ │ └── tick.mcfunction │ │ └── tick.json │ │ ├── items │ │ └── noxcrew.ft │ │ │ ├── anniversary_hot_dog.json │ │ │ ├── balloon_animal.json │ │ │ ├── balloon_helium.json │ │ │ ├── beach_ball.json │ │ │ ├── beanie_aqua.json │ │ │ ├── beanie_blue.json │ │ │ ├── beanie_cyan.json │ │ │ ├── beanie_green.json │ │ │ ├── beanie_lime.json │ │ │ ├── beanie_orange.json │ │ │ ├── beanie_pink.json │ │ │ ├── beanie_purple.json │ │ │ ├── beanie_red.json │ │ │ ├── beanie_yellow.json │ │ │ ├── big_bubble_blower.json │ │ │ ├── celebration_fireworks.json │ │ │ ├── challenge_list.json │ │ │ ├── confetti_tag_leftover.json │ │ │ ├── confetti_tag_prime.json │ │ │ ├── cosmetic_chest.json │ │ │ ├── cotton_candy.json │ │ │ ├── disco_ball.json │ │ │ ├── egg.json │ │ │ ├── fake_bow.json │ │ │ ├── foam_finger.json │ │ │ ├── freezing_bow.json │ │ │ ├── hat_birthday_present.json │ │ │ ├── hat_boombox.json │ │ │ ├── hat_chicken_jockey.json │ │ │ ├── hat_crown_cake.json │ │ │ ├── hat_jester.json │ │ │ ├── hat_party.json │ │ │ ├── hat_propeller.json │ │ │ ├── key_diamond.json │ │ │ ├── key_gold.json │ │ │ ├── key_iron.json │ │ │ ├── key_netherite.json │ │ │ ├── leave_game.json │ │ │ ├── mcc_burger.json │ │ │ ├── milk_bucket.json │ │ │ ├── paintbrush.json │ │ │ ├── paintbrush_black.json │ │ │ ├── paintbrush_blue.json │ │ │ ├── paintbrush_brown.json │ │ │ ├── paintbrush_green.json │ │ │ ├── paintbrush_purple.json │ │ │ ├── paintbrush_red.json │ │ │ ├── paintbrush_white.json │ │ │ ├── paintbrush_yellow.json │ │ │ ├── party_cake.json │ │ │ ├── party_chips.json │ │ │ ├── party_cookie.json │ │ │ ├── party_cupcake.json │ │ │ ├── party_popper.json │ │ │ ├── party_soda.json │ │ │ ├── pizza_box.json │ │ │ ├── pizza_slice.json │ │ │ ├── player_gift_giving.json │ │ │ ├── player_gift_receiving.json │ │ │ ├── popcorn.json │ │ │ ├── silly_horn.json │ │ │ ├── super_wrap.json │ │ │ └── teleporter.json │ │ ├── loot_tables │ │ └── tools │ │ │ ├── boots.json │ │ │ └── elytra.json │ │ └── manifest.json ├── db │ ├── 003846.ldb │ ├── 003848.ldb │ ├── 003851.ldb │ ├── 003852.log │ ├── 003870.log │ ├── 003871.ldb │ ├── 003893.log │ ├── 003895.ldb │ ├── 003946.log │ ├── 003948.ldb │ ├── CURRENT │ ├── MANIFEST-003850 │ ├── MANIFEST-003868 │ ├── MANIFEST-003872 │ ├── MANIFEST-003884 │ └── MANIFEST-003942 ├── level.dat ├── level.dat_old ├── levelname.txt ├── resource_packs │ ├── MCCxMine_0 │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── sounds.json │ │ └── textures │ │ │ ├── entity │ │ │ └── arrows.png │ │ │ └── items │ │ │ ├── bow_pulling_0.png │ │ │ ├── bow_pulling_1.png │ │ │ ├── bow_pulling_2.png │ │ │ └── bow_standby.png │ ├── MCCxMine_1 │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── sounds.json │ │ └── textures │ │ │ ├── entity │ │ │ └── arrows.png │ │ │ └── items │ │ │ ├── bow_pulling_0.png │ │ │ ├── bow_pulling_1.png │ │ │ ├── bow_pulling_2.png │ │ │ └── bow_standby.png │ ├── MCCxMine_2 │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── sounds.json │ │ └── textures │ │ │ ├── entity │ │ │ └── arrows.png │ │ │ └── items │ │ │ ├── bow_pulling_0.png │ │ │ ├── bow_pulling_1.png │ │ │ ├── bow_pulling_2.png │ │ │ └── bow_standby.png │ ├── MCCxMine_3 │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── sounds.json │ │ └── textures │ │ │ ├── entity │ │ │ └── arrows.png │ │ │ └── items │ │ │ ├── bow_pulling_0.png │ │ │ ├── bow_pulling_1.png │ │ │ ├── bow_pulling_2.png │ │ │ └── bow_standby.png │ ├── MCCxMine_4 │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── sounds.json │ │ └── textures │ │ │ ├── entity │ │ │ └── arrows.png │ │ │ └── items │ │ │ ├── arrow.png │ │ │ ├── bow_pulling_0.png │ │ │ ├── bow_pulling_1.png │ │ │ ├── bow_pulling_2.png │ │ │ └── bow_standby.png │ └── MCCxMine_5 │ │ ├── .mcattributes │ │ ├── README.md │ │ ├── animation_controllers │ │ ├── advert_creator_cup.ac.json │ │ ├── creator.ac.json │ │ ├── crowned_frog.ac.json │ │ ├── giant_cake.ac.json │ │ ├── hieroplyph_helper.ac.json │ │ ├── ice.ac.json │ │ ├── paintbrush.ac.json │ │ ├── player.ac.json │ │ ├── start_button.ac.json │ │ ├── treasure_chest.ac.json │ │ └── vendor.ac.json │ │ ├── animations │ │ ├── advert_creator_cup.animation.json │ │ ├── ballons.animation.json │ │ ├── beachball.animation.json │ │ ├── blaze.animation.json │ │ ├── cake_candles.animation.json │ │ ├── coins.animation.json │ │ ├── coins.json │ │ ├── creators.animation.json │ │ ├── crowned_frog.animation.json │ │ ├── disco_ball.animation.json │ │ ├── giant_cake.animation.json │ │ ├── hats.animation.json │ │ ├── hieroglyph_helper.animation.json │ │ ├── holdable.animation.json │ │ ├── humanoid.animation.json │ │ ├── ice.animation.json │ │ ├── lost_pearl.animation.json │ │ ├── md_skeleton.animation.json │ │ ├── paintbrush.animation.json │ │ ├── podiums.animation.json │ │ ├── projectiles.animation.json │ │ ├── sand_timer.animation.json │ │ ├── start_button.animation.json │ │ ├── treasure_chest.animation.json │ │ ├── trophy_help.animation.json │ │ └── vendors.animation.json │ │ ├── attachables │ │ ├── balloon_animal.json │ │ ├── beanies │ │ │ ├── beanie_aqua.json │ │ │ ├── beanie_blue.json │ │ │ ├── beanie_cyan.json │ │ │ ├── beanie_green.json │ │ │ ├── beanie_lime.json │ │ │ ├── beanie_orange.json │ │ │ ├── beanie_pink.json │ │ │ ├── beanie_purple.json │ │ │ ├── beanie_red.json │ │ │ └── beanie_yellow.json │ │ ├── big_bubble_blower.json │ │ ├── brushes │ │ │ ├── brush_black.json │ │ │ ├── brush_blue.json │ │ │ ├── brush_brown.json │ │ │ ├── brush_empty.json │ │ │ ├── brush_green.json │ │ │ ├── brush_purple.json │ │ │ ├── brush_red.json │ │ │ ├── brush_white.json │ │ │ └── brush_yellow.json │ │ ├── foam_finger.json │ │ ├── hats │ │ │ ├── hat_birthday_present.json │ │ │ ├── hat_boombox.json │ │ │ ├── hat_chicken_jockey.json │ │ │ ├── hat_crown_cake.json │ │ │ ├── hat_jester.json │ │ │ ├── hat_party.json │ │ │ └── hat_propeller.json │ │ ├── party_popper.json │ │ ├── pizza_box.json │ │ └── silly_horn.json │ │ ├── biomes_client.json │ │ ├── blocks.json │ │ ├── entity │ │ ├── advert.entity.json │ │ ├── animator.entity.json │ │ ├── arrows.png │ │ ├── biome_icon.entity.json │ │ ├── checkpoint.entity.json │ │ ├── decorations │ │ │ ├── decoration_15.entity.json │ │ │ ├── decoration_awning.entity.json │ │ │ ├── decoration_ballons.entity.json │ │ │ ├── decoration_board.entity.json │ │ │ ├── decoration_bunting.entity.json │ │ │ ├── decoration_chicken_balloon.entity.json │ │ │ ├── decoration_cupcake.entity.json │ │ │ └── decoration_mcc_balloon.entity.json │ │ ├── fake_netherportal.entity.json │ │ ├── gr │ │ │ ├── giant_cake.entity.json │ │ │ ├── lost_pearl.json │ │ │ ├── paint_pot.entity.json │ │ │ └── paint_projectile.entity.json │ │ ├── hub │ │ │ ├── advert_creator_cup.json │ │ │ ├── balloon_helium.entity.json │ │ │ ├── beach_ball.entity.json │ │ │ ├── cake_candles.entity.json │ │ │ ├── disco_ball.entity.json │ │ │ ├── floating_text.entity.json │ │ │ ├── hub_coin.json │ │ │ ├── start_button.entity.json │ │ │ ├── trophy_help.entity.json │ │ │ ├── vendor_food.entity.json │ │ │ ├── vendor_hat.entity.json │ │ │ ├── vendor_mascot.entity.json │ │ │ └── vendor_toys.entity.json │ │ ├── keyart.entity.json │ │ ├── npc │ │ │ ├── creator_ace.entity.json │ │ │ ├── creator_grid.entity.json │ │ │ ├── creator_melt.entity.json │ │ │ ├── creator_mojang.entity.json │ │ │ ├── creator_sands.entity.json │ │ │ ├── crowned_frog.entity.json │ │ │ └── hieroglyph_helper.entity.json │ │ ├── scoreboard.entity.json │ │ ├── socials.entity.json │ │ ├── sot │ │ │ ├── armor_podium.entity.json │ │ │ ├── coin_stack.json │ │ │ ├── key_podium.entity.json │ │ │ ├── sand_blocks.entity.json │ │ │ ├── sand_timer.entity.json │ │ │ └── treasure_chest.entity.json │ │ ├── star_firework.entity.json │ │ ├── toolswap_gate.entity.json │ │ ├── tutorial_sign.entity.json │ │ ├── ui_popup.entity.json │ │ └── vanilla_mob │ │ │ ├── md_blaze.entity.json │ │ │ ├── md_creeper.entity.json │ │ │ ├── md_skeleton.entity.json │ │ │ ├── md_spider.entity.json │ │ │ ├── md_vindicator.entity.json │ │ │ ├── md_zombie.entity.json │ │ │ └── md_zombie_baby.entity.json │ │ ├── fogs │ │ ├── ace.json │ │ ├── grid.json │ │ ├── hub.json │ │ ├── melt.json │ │ └── sand.json │ │ ├── font │ │ └── glyph_E1.png │ │ ├── items │ │ ├── arrow.png │ │ ├── bow_pulling_0.png │ │ ├── bow_pulling_1.png │ │ ├── bow_pulling_2.png │ │ └── bow_standby.png │ │ ├── manifest.json │ │ ├── materials │ │ └── entity.material │ │ ├── models │ │ ├── blocks │ │ │ ├── acerace │ │ │ │ ├── ace_banner.geo.json │ │ │ │ ├── ace_banner_a.geo.json │ │ │ │ ├── ace_banner_b.geo.json │ │ │ │ ├── cloud_foliage.geo.json │ │ │ │ ├── elytra_icon.geo.json │ │ │ │ └── wind_particle.geo.json │ │ │ ├── decorations │ │ │ │ ├── bigcake_bottom.geo.json │ │ │ │ ├── bigcake_top.geo.json │ │ │ │ ├── cake_slice.geo.json │ │ │ │ ├── cup_poster.geo.json │ │ │ │ ├── flag.geo.json │ │ │ │ ├── flag_long_a.geo.json │ │ │ │ ├── flag_long_b.geo.json │ │ │ │ ├── generic_poster_bottom.geo.json │ │ │ │ ├── generic_poster_top.geo.json │ │ │ │ ├── gr_glass2.geo.json │ │ │ │ ├── gr_glass3.geo.json │ │ │ │ ├── hub_net.geo.json │ │ │ │ ├── park_bench_a.geo.json │ │ │ │ ├── park_bench_b.geo.json │ │ │ │ ├── pennon.geo.json │ │ │ │ ├── plush │ │ │ │ │ ├── plush_aqua.geo.json │ │ │ │ │ ├── plush_blue.geo.json │ │ │ │ │ ├── plush_cyan.geo.json │ │ │ │ │ ├── plush_green.geo.json │ │ │ │ │ ├── plush_lime.geo.json │ │ │ │ │ ├── plush_orange.geo.json │ │ │ │ │ ├── plush_pink.geo.json │ │ │ │ │ ├── plush_purple.geo.json │ │ │ │ │ ├── plush_red.geo.json │ │ │ │ │ └── plush_yellow.geo.json │ │ │ │ ├── present.geo.json │ │ │ │ └── recycling_bin.geo.json │ │ │ ├── fake_end_portal.geo.json │ │ │ ├── fake_portal.geo.json │ │ │ ├── fake_pot.geo.json │ │ │ ├── iron_bars.json │ │ │ ├── iron_bars_c.json │ │ │ ├── iron_bars_h.json │ │ │ ├── logo │ │ │ │ ├── logo_1.geo.json │ │ │ │ ├── logo_2.geo.json │ │ │ │ ├── logo_3.geo.json │ │ │ │ ├── n_button.geo.json │ │ │ │ └── n_button_pressed.geo.json │ │ │ ├── md │ │ │ │ ├── exit_a.geo.json │ │ │ │ ├── exit_b.geo.json │ │ │ │ ├── exit_small.geo.json │ │ │ │ ├── md_barrel.geo.json │ │ │ │ ├── melt_spawner.geo.json │ │ │ │ ├── office_chair.geo.json │ │ │ │ ├── rotating_light.geo.json │ │ │ │ ├── rotating_light_off.geo.json │ │ │ │ └── wood_crate.geo.json │ │ │ ├── metal_rigging_h.geo.json │ │ │ ├── metal_rigging_v.geo.json │ │ │ ├── rope_h.geo.json │ │ │ ├── sot_flower.geo.json │ │ │ ├── unit_cube.json │ │ │ ├── unit_cube_sides.json │ │ │ ├── unit_slab.geo.json │ │ │ └── window.geo.json │ │ └── entity │ │ │ ├── attachable │ │ │ ├── balloon_animal.geo.json │ │ │ ├── beanie.geo.json │ │ │ ├── big_bubble_blower.geo.json │ │ │ ├── foam_finger.geo.json │ │ │ ├── hat_birthday_present.geo.json │ │ │ ├── hat_boombox.geo.json │ │ │ ├── hat_chicken_jockey.geo.json │ │ │ ├── hat_crown_cake.geo.json │ │ │ ├── hat_jester.geo.json │ │ │ ├── hat_party.geo.json │ │ │ ├── hat_propeller.geo.json │ │ │ ├── paintbrush.geo.json │ │ │ ├── party_popper.geo.json │ │ │ ├── pizza_box.geo.json │ │ │ └── silly_horn.geo.json │ │ │ ├── decorations │ │ │ ├── chicken_balloon.geo.json │ │ │ ├── decoration_15.geo.json │ │ │ ├── decoration_awning.geo.json │ │ │ ├── decoration_balloons.geo.json │ │ │ ├── decoration_board.geo.json │ │ │ ├── decoration_bunting.geo.json │ │ │ ├── decoration_cupcake.geo.json │ │ │ └── decoration_mcc_balloon.geo.json │ │ │ ├── gr │ │ │ ├── giant_cake.geo.json │ │ │ ├── lost_pearl.geo.json │ │ │ ├── paint_pot.geo.json │ │ │ └── paint_projectile.geo.json │ │ │ ├── hub │ │ │ ├── advert_creator_cup.geo.json │ │ │ ├── beachball.geo.json │ │ │ ├── cake_candles.geo.json │ │ │ ├── disco_ball.geo.json │ │ │ ├── helium_balloon.geo.json │ │ │ ├── start_button.geo.json │ │ │ ├── trophy_help.geo.json │ │ │ ├── vendor_food.geo.json │ │ │ ├── vendor_hat.geo.json │ │ │ ├── vendor_mascot.geo.json │ │ │ └── vendor_toys.geo.json │ │ │ ├── invisible.geo.json │ │ │ ├── npc │ │ │ ├── creator.geo.json │ │ │ ├── creator_ace.geo.json │ │ │ ├── creator_grid.geo.json │ │ │ ├── creator_meltdown.geo.json │ │ │ ├── creator_mojang.geo.json │ │ │ ├── creator_sot.geo.json │ │ │ ├── crowned_frog.geo.json │ │ │ └── hieroglyph_helper.geo.json │ │ │ ├── sot │ │ │ ├── armor │ │ │ │ ├── boots.geo.json │ │ │ │ ├── chestplate.geo.json │ │ │ │ └── leggings.geo.json │ │ │ ├── key_podium │ │ │ │ ├── diamond.geo.json │ │ │ │ ├── gold.geo.json │ │ │ │ ├── iron.geo.json │ │ │ │ └── netherite.geo.json │ │ │ ├── large_coin.geo.json │ │ │ ├── medium_coin.geo.json │ │ │ ├── sand_blocks.geo.json │ │ │ ├── sand_timer.geo.json │ │ │ ├── small_coin.geo.json │ │ │ └── treasure_chest │ │ │ │ ├── diamond.geo.json │ │ │ │ ├── gold.geo.json │ │ │ │ ├── iron.geo.json │ │ │ │ └── netherite.geo.json │ │ │ └── vanilla_mob │ │ │ ├── blaze.geo.json │ │ │ ├── creeper.geo.json │ │ │ ├── ice.geo.json │ │ │ ├── skeleton.geo.json │ │ │ ├── spider.geo.json │ │ │ ├── vindicator.geo.json │ │ │ ├── zombie.geo.json │ │ │ └── zombie_baby.geo.json │ │ ├── pack_icon.png │ │ ├── particles │ │ ├── ball_pop.particle.json │ │ ├── balloon │ │ │ ├── animal.particle.json │ │ │ ├── balloon_flop.particle.json │ │ │ └── balloon_trail.particle.json │ │ ├── beanie_sparkley.particle.json │ │ ├── big_bubbles.particle.json │ │ ├── big_sparkle.particle.json │ │ ├── biome_replay.particle.json │ │ ├── brush │ │ │ ├── d_black.particle.json │ │ │ ├── d_blue.particle.json │ │ │ ├── d_brown.particle.json │ │ │ ├── d_green.particle.json │ │ │ ├── d_purple.particle.json │ │ │ ├── d_red.particle.json │ │ │ ├── d_white.particle.json │ │ │ ├── d_yellow.particle.json │ │ │ ├── f_black.particle.json │ │ │ ├── f_blue.particle.json │ │ │ ├── f_brown.particle.json │ │ │ ├── f_green.particle.json │ │ │ ├── f_purple.particle.json │ │ │ ├── f_red.particle.json │ │ │ ├── f_white.particle.json │ │ │ └── f_yellow.particle.json │ │ ├── cake │ │ │ ├── 1.particle.json │ │ │ ├── 2.particle.json │ │ │ ├── 3.particle.json │ │ │ ├── 3_a.particle.json │ │ │ ├── 4.particle.json │ │ │ └── candle.particle.json │ │ ├── cape │ │ │ ├── noxcrew.ft_cape1.particle.json │ │ │ ├── noxcrew.ft_cape2.particle.json │ │ │ ├── noxcrew.ft_cape3.particle.json │ │ │ ├── noxcrew.ft_cape_burst.particle.json │ │ │ ├── noxcrew.ft_cape_celebration.particle.json │ │ │ └── noxcrew.ft_cape_trail.particle.json │ │ ├── checkpoint_confetti.particle.json │ │ ├── checkpoint_corner.particle.json │ │ ├── coin │ │ │ ├── burst_large.particle.json │ │ │ ├── burst_small.particle.json │ │ │ ├── collect_large.particle.json │ │ │ ├── collect_small.particle.json │ │ │ ├── medium_collect.particle.json │ │ │ ├── pile_idle.particle.json │ │ │ ├── pile_sparkles.particle.json │ │ │ ├── sack.particle.json │ │ │ ├── sack_e1.particle.json │ │ │ └── single.particle.json │ │ ├── collect.particle.json │ │ ├── confetti │ │ │ ├── leftover.particle.json │ │ │ └── prime.particle.json │ │ ├── console_click.particle.json │ │ ├── creator │ │ │ ├── creator_brush.particle.json │ │ │ ├── creator_cake.particle.json │ │ │ └── creator_torch.particle.json │ │ ├── crowned_frog_poof.particle.json │ │ ├── disco_beams.particle.json │ │ ├── disco_floor.particle.json │ │ ├── dusting.particle.json │ │ ├── elytra_gate.particle.json │ │ ├── elytra_gate2.particle.json │ │ ├── fake_netherportal.particle.json │ │ ├── falling_border_dust.particle.json │ │ ├── finish_confetti.particle.json │ │ ├── firework │ │ │ ├── 15.particle.json │ │ │ ├── burst.particle.json │ │ │ ├── fizzle.particle.json │ │ │ ├── rocket.particle.json │ │ │ ├── smoke.particle.json │ │ │ └── trail.particle.json │ │ ├── frozen_shatter.particle.json │ │ ├── frozen_shatter_e1.particle.json │ │ ├── gr_pipe.particle.json │ │ ├── guide_collect.particle.json │ │ ├── guide_particle.particle.json │ │ ├── horn.particle.json │ │ ├── idle_sparkle.particle.json │ │ ├── key_collect.particle.json │ │ ├── meltdown_heat.particle.json │ │ ├── melting.particle.json │ │ ├── noxcrew.particle.json │ │ ├── paint │ │ │ ├── land_black.particle.json │ │ │ ├── land_blue.particle.json │ │ │ ├── land_brown.particle.json │ │ │ ├── land_green.particle.json │ │ │ ├── land_purple.particle.json │ │ │ ├── land_red.particle.json │ │ │ ├── land_white.particle.json │ │ │ ├── land_yellow.particle.json │ │ │ ├── trail_black.particle.json │ │ │ ├── trail_blue.particle.json │ │ │ ├── trail_brown.particle.json │ │ │ ├── trail_green.particle.json │ │ │ ├── trail_purple.particle.json │ │ │ ├── trail_red.particle.json │ │ │ ├── trail_white.particle.json │ │ │ └── trail_yellow.particle.json │ │ ├── party_popper.particle.json │ │ ├── party_popper_event1.particle.json │ │ ├── player_gift_giving_a.particle.json │ │ ├── player_gift_giving_b.particle.json │ │ ├── pot │ │ │ ├── pot_splash_black.particle.json │ │ │ ├── pot_splash_blue.particle.json │ │ │ ├── pot_splash_brown.particle.json │ │ │ ├── pot_splash_green.particle.json │ │ │ ├── pot_splash_purple.particle.json │ │ │ ├── pot_splash_red.particle.json │ │ │ ├── pot_splash_white.particle.json │ │ │ └── pot_splash_yellow.particle.json │ │ ├── rising_border_dust.particle.json │ │ ├── sand │ │ │ ├── collect.particle.json │ │ │ ├── collect_e1.particle.json │ │ │ ├── collect_e2.particle.json │ │ │ └── falling.particle.json │ │ ├── sot_despawn.particle.json │ │ ├── sot_despawn_spider.particle.json │ │ ├── sparkley.particle.json │ │ ├── star_firework.particle.json │ │ ├── star_firework_burst.particle.json │ │ ├── star_firework_trail.particle.json │ │ ├── treasure_chest_sparkles.particle.json │ │ ├── treasure_chest_wrong.particle.json │ │ └── vendor_icon.particle.json │ │ ├── render_controllers │ │ ├── base.render_controllers.json │ │ ├── game.render_controllers.json │ │ ├── vanilla_md.render_controllers.json │ │ └── variants.render_controllers.json │ │ ├── sounds.json │ │ ├── sounds │ │ ├── ar │ │ │ ├── castle_door.ogg │ │ │ ├── checkpoint_pass.ogg │ │ │ ├── elytra_remove.ogg │ │ │ ├── elytra_zone.ogg │ │ │ ├── jump1.ogg │ │ │ ├── jump2.ogg │ │ │ ├── jump3.ogg │ │ │ ├── jump_alert.ogg │ │ │ ├── launch1.ogg │ │ │ ├── launch2.ogg │ │ │ ├── launch3.ogg │ │ │ ├── music │ │ │ │ └── music_ar.ogg │ │ │ ├── speed1.ogg │ │ │ ├── speed2.ogg │ │ │ ├── speed3.ogg │ │ │ └── tutorial_ring.ogg │ │ ├── dialogue │ │ │ ├── creator_ace.1_0.ogg │ │ │ ├── creator_ace.2_0.ogg │ │ │ ├── creator_ace.3_0.ogg │ │ │ ├── creator_ace.3_1.ogg │ │ │ ├── creator_ace.3_2.ogg │ │ │ ├── creator_ace.3_3.ogg │ │ │ ├── creator_ace.3_4.ogg │ │ │ ├── creator_ace.3_5.ogg │ │ │ ├── creator_grid.1_0.ogg │ │ │ ├── creator_grid.2_0.ogg │ │ │ ├── creator_grid.3_0.ogg │ │ │ ├── creator_grid.3_1.ogg │ │ │ ├── creator_grid.3_2.ogg │ │ │ ├── creator_grid.3_3.ogg │ │ │ ├── creator_grid.3_4.ogg │ │ │ ├── creator_grid.4_0.ogg │ │ │ ├── creator_grid3._2.ogg │ │ │ ├── creator_melt.1_0.ogg │ │ │ ├── creator_melt.2_0.ogg │ │ │ ├── creator_melt.3_0.ogg │ │ │ ├── creator_melt.3_1.ogg │ │ │ ├── creator_melt.3_2.ogg │ │ │ ├── creator_melt.3_3.ogg │ │ │ ├── creator_melt.3_4.ogg │ │ │ ├── creator_melt.3_5.ogg │ │ │ ├── creator_sands.1_0.ogg │ │ │ ├── creator_sands.2_0.ogg │ │ │ ├── creator_sands.3_0.ogg │ │ │ ├── creator_sands.3_1.ogg │ │ │ ├── creator_sands.3_2.ogg │ │ │ ├── creator_sands.3_3.ogg │ │ │ ├── creator_sands.3_4.ogg │ │ │ ├── creator_sands.3_5.ogg │ │ │ ├── jagnes.1_0.dia1.ogg │ │ │ ├── jagnes.1_0.dia2.ogg │ │ │ ├── jagnes.1_0.dia3.ogg │ │ │ ├── jagnes.1_0.dia4.ogg │ │ │ ├── jagnes.1_0.dia5.ogg │ │ │ ├── jagnes.1_0.dia6.ogg │ │ │ ├── jagnes.1_0.dia6_1.ogg │ │ │ ├── jagnes.1_0.dia6_2.ogg │ │ │ ├── jagnes.1_0.ogg │ │ │ ├── jagnes.2_0.ogg │ │ │ ├── jagnes.2_1.ogg │ │ │ ├── jagnes.3_0.ogg │ │ │ ├── jagnes.4_0.ogg │ │ │ ├── jagnes.help_ace_race_portal1.ogg │ │ │ ├── jagnes.help_ace_race_portal2.ogg │ │ │ ├── jagnes.help_ace_race_portal3.ogg │ │ │ ├── jagnes.help_activity1.ogg │ │ │ ├── jagnes.help_activity2.ogg │ │ │ ├── jagnes.help_cave1.ogg │ │ │ ├── jagnes.help_cave2.ogg │ │ │ ├── jagnes.help_grid_runners_portal1.ogg │ │ │ ├── jagnes.help_grid_runners_portal2.ogg │ │ │ ├── jagnes.help_grid_runners_portal3.ogg │ │ │ ├── jagnes.help_meltdown_portal1.ogg │ │ │ ├── jagnes.help_meltdown_portal2.ogg │ │ │ ├── jagnes.help_meltdown_portal3.ogg │ │ │ ├── jagnes.help_portal1.ogg │ │ │ ├── jagnes.help_portal2.ogg │ │ │ ├── jagnes.help_portal3.ogg │ │ │ ├── jagnes.help_shop1.ogg │ │ │ ├── jagnes.help_shop2.ogg │ │ │ ├── jagnes.help_sot_portal1.ogg │ │ │ ├── jagnes.help_sot_portal2.ogg │ │ │ ├── jagnes.help_sot_portal3.ogg │ │ │ ├── jagnes.help_trophy1.ogg │ │ │ ├── jagnes.help_trophy2.ogg │ │ │ └── jagnes.help_trophy3.ogg │ │ ├── general │ │ │ ├── 321.ogg │ │ │ ├── armor_upgrade.ogg │ │ │ ├── bigcoins.ogg │ │ │ ├── cape_reward.ogg │ │ │ ├── challenge_complete.ogg │ │ │ ├── death.ogg │ │ │ ├── go.ogg │ │ │ ├── leave_game.ogg │ │ │ ├── music_game_big_success.ogg │ │ │ ├── music_game_end.ogg │ │ │ ├── music_game_small_success.ogg │ │ │ ├── music_game_win.ogg │ │ │ ├── purchase.ogg │ │ │ ├── queue_countdown.ogg │ │ │ ├── queue_joining.ogg │ │ │ ├── queue_success.ogg │ │ │ ├── queue_teleport.ogg │ │ │ ├── reward_claim.ogg │ │ │ ├── reward_recieve.ogg │ │ │ ├── scoreacquired.ogg │ │ │ ├── smallcoins.ogg │ │ │ └── trash.ogg │ │ ├── gr │ │ │ ├── blastoff.ogg │ │ │ ├── cake_candle.ogg │ │ │ ├── cake_cherries.ogg │ │ │ ├── cake_complete.ogg │ │ │ ├── cake_disappear.ogg │ │ │ ├── cake_eat.ogg │ │ │ ├── cake_icing.ogg │ │ │ ├── cake_sponge.ogg │ │ │ ├── finish.ogg │ │ │ ├── food_correct.ogg │ │ │ ├── gate_open_short.ogg │ │ │ ├── music │ │ │ │ ├── music_gr.ogg │ │ │ │ ├── music_gr_intro.ogg │ │ │ │ └── music_gr_win.ogg │ │ │ ├── paintbrush_fire1.ogg │ │ │ ├── paintbrush_fire2.ogg │ │ │ ├── paintbrush_fire3.ogg │ │ │ ├── paintpot.ogg │ │ │ ├── pipe_suck_start.ogg │ │ │ ├── pipe_teleport.ogg │ │ │ ├── room_beast.ogg │ │ │ ├── room_cake.ogg │ │ │ ├── room_complete.ogg │ │ │ └── room_copy.ogg │ │ ├── hub │ │ │ ├── ball_hit.ogg │ │ │ ├── ball_pop.ogg │ │ │ ├── balloon_helium.ogg │ │ │ ├── disco_ball_idle.ogg │ │ │ ├── disco_ball_spawn.ogg │ │ │ ├── hieroglyphics_complete.ogg │ │ │ ├── hieroglyphics_solve.ogg │ │ │ ├── music │ │ │ │ ├── disco_ball_music.ogg │ │ │ │ └── music_hub.ogg │ │ │ ├── squeak.ogg │ │ │ ├── start_button_interact.ogg │ │ │ └── start_button_special.ogg │ │ ├── items │ │ │ ├── balloon_animal.ogg │ │ │ ├── bubble_blower.ogg │ │ │ ├── confetti_tag.ogg │ │ │ ├── party_popper.ogg │ │ │ ├── player_gift.ogg │ │ │ └── silly_horn.ogg │ │ ├── md │ │ │ ├── enemy_shatter.ogg │ │ │ ├── enemy_spawn.ogg │ │ │ ├── freeze_bow_fire1.ogg │ │ │ ├── freeze_bow_fire2.ogg │ │ │ ├── freeze_bow_fire3.ogg │ │ │ ├── freeze_bow_hit.ogg │ │ │ ├── meltdown_alarm_loop.ogg │ │ │ ├── meltdown_alarm_start.ogg │ │ │ ├── meltdown_entrance.ogg │ │ │ ├── meltdown_frozen.ogg │ │ │ ├── music │ │ │ │ └── music_md.ogg │ │ │ └── room_clear.ogg │ │ ├── noxcrew.ogg │ │ ├── npcs │ │ │ ├── agnes_special1.ogg │ │ │ ├── agnes_special2.ogg │ │ │ ├── frog_special1.ogg │ │ │ ├── frog_special2.ogg │ │ │ ├── frog_special3.ogg │ │ │ ├── frog_special4.ogg │ │ │ ├── frog_transform1.ogg │ │ │ ├── frog_transform2.ogg │ │ │ ├── hannah_special1.ogg │ │ │ ├── hannah_special2.ogg │ │ │ ├── hbomb_special1.ogg │ │ │ ├── hbomb_special2.ogg │ │ │ ├── jens_special1.ogg │ │ │ ├── jens_special2.ogg │ │ │ ├── seapeekay_special1.ogg │ │ │ ├── seapeekay_special2.ogg │ │ │ ├── smajor_special1.ogg │ │ │ ├── smajor_special2.ogg │ │ │ ├── vendor_food.ogg │ │ │ ├── vendor_hat.ogg │ │ │ ├── vendor_mascot.ogg │ │ │ └── vendor_toys.ogg │ │ ├── sot │ │ │ ├── key_pickup_gold.ogg │ │ │ ├── key_pickup_vault.ogg │ │ │ ├── lock_in.ogg │ │ │ ├── music │ │ │ │ └── music_sot.ogg │ │ │ ├── rescue.ogg │ │ │ ├── sand_place1.ogg │ │ │ ├── sand_place2.ogg │ │ │ ├── sand_place3.ogg │ │ │ ├── sandtimer_10sec.ogg │ │ │ ├── sandtimer_20sec.ogg │ │ │ ├── sandtimer_30sec.ogg │ │ │ ├── sparkle1.ogg │ │ │ ├── sparkle2.ogg │ │ │ ├── sparkle3.ogg │ │ │ ├── sparkle4.ogg │ │ │ ├── sparkle5.ogg │ │ │ ├── sparkle6.ogg │ │ │ ├── sparkle8.ogg │ │ │ ├── teamvault_open.ogg │ │ │ ├── treasure_chest_open.ogg │ │ │ └── treasure_chest_wrong.ogg │ │ └── sound_definitions.json │ │ ├── texts │ │ ├── bg_BG.lang │ │ ├── cs_CZ.lang │ │ ├── da_DK.lang │ │ ├── de_DE.lang │ │ ├── el_GR.lang │ │ ├── en_GB.lang │ │ ├── en_US.lang │ │ ├── es_ES.lang │ │ ├── es_MX.lang │ │ ├── fi_FI.lang │ │ ├── fr_CA.lang │ │ ├── fr_FR.lang │ │ ├── hu_HU.lang │ │ ├── id_ID.lang │ │ ├── it_IT.lang │ │ ├── ja_JP.lang │ │ ├── ko_KR.lang │ │ ├── languages.json │ │ ├── nb_NO.lang │ │ ├── nl_NL.lang │ │ ├── pl_PL.lang │ │ ├── pt_BR.lang │ │ ├── pt_PT.lang │ │ ├── ru_RU.lang │ │ ├── sk_SK.lang │ │ ├── sv_SE.lang │ │ ├── tr_TR.lang │ │ ├── uk_UA.lang │ │ ├── zh_CN.lang │ │ └── zh_TW.lang │ │ ├── textures │ │ ├── blocks │ │ │ ├── acacia_trapdoor.png │ │ │ ├── acerace │ │ │ │ ├── ace_banner.png │ │ │ │ ├── ace_banner_b.png │ │ │ │ ├── castle_pink.png │ │ │ │ ├── cloud_foliage.png │ │ │ │ ├── dragon_scale.png │ │ │ │ ├── elytra_icon.png │ │ │ │ ├── jump_pad.png │ │ │ │ ├── launch_pad.png │ │ │ │ ├── speed_pad.png │ │ │ │ └── wind_particle.png │ │ │ ├── amethyst_block.png │ │ │ ├── amethyst_cluster.png │ │ │ ├── audience │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── azalea_leaves.png │ │ │ ├── azalea_leaves_flowers.png │ │ │ ├── azalea_leaves_flowers_opaque.png │ │ │ ├── azalea_leaves_opaque.png │ │ │ ├── azalea_plant.png │ │ │ ├── azalea_side.png │ │ │ ├── azalea_top.png │ │ │ ├── bamboo_mosaic.png │ │ │ ├── bamboo_planks.png │ │ │ ├── barrel_bottom.png │ │ │ ├── barrel_side.png │ │ │ ├── barrel_top.png │ │ │ ├── barrel_top_open.png │ │ │ ├── basalt_side.png │ │ │ ├── basalt_top.png │ │ │ ├── bedrock.png │ │ │ ├── beehive_front.png │ │ │ ├── beehive_front_honey.png │ │ │ ├── beehive_side.png │ │ │ ├── beehive_top.png │ │ │ ├── big_dripleaf_side.png │ │ │ ├── big_dripleaf_side1.png │ │ │ ├── big_dripleaf_side2.png │ │ │ ├── big_dripleaf_stem.png │ │ │ ├── big_dripleaf_tip.png │ │ │ ├── big_dripleaf_top.png │ │ │ ├── birch_trapdoor.png │ │ │ ├── blackstone.png │ │ │ ├── blue_concrete_powder.png │ │ │ ├── blue_ice.png │ │ │ ├── bone_block_side.png │ │ │ ├── bone_block_top.png │ │ │ ├── bookshelf.png │ │ │ ├── brick.png │ │ │ ├── cactus_bottom.tga │ │ │ ├── cactus_side.tga │ │ │ ├── cactus_top.tga │ │ │ ├── cake │ │ │ │ ├── centre.png │ │ │ │ ├── cherry.png │ │ │ │ ├── edge.png │ │ │ │ └── sponge.png │ │ │ ├── calcite.png │ │ │ ├── campfire_log.png │ │ │ ├── campfire_log_lit.png │ │ │ ├── cauldron_bottom.png │ │ │ ├── cauldron_inner.png │ │ │ ├── cauldron_side.png │ │ │ ├── cauldron_top.png │ │ │ ├── cauldron_water.png │ │ │ ├── cave_vines_body.png │ │ │ ├── cave_vines_body_berries.png │ │ │ ├── cave_vines_head.png │ │ │ ├── cave_vines_head_berries.png │ │ │ ├── chain1.png │ │ │ ├── chain2.png │ │ │ ├── cherry_leaves.png │ │ │ ├── cherry_leaves_opaque.png │ │ │ ├── cherry_log_side.png │ │ │ ├── cherry_log_top.png │ │ │ ├── chiseled_bookshelf_empty.png │ │ │ ├── chiseled_bookshelf_side.png │ │ │ ├── chiseled_bookshelf_top.png │ │ │ ├── chorus_flower.png │ │ │ ├── chorus_flower_dead.png │ │ │ ├── chorus_plant.png │ │ │ ├── clay.png │ │ │ ├── coal_ore.png │ │ │ ├── coarse_dirt.png │ │ │ ├── cobblestone.png │ │ │ ├── cobblestone_mossy.png │ │ │ ├── concrete_black.png │ │ │ ├── concrete_blue.png │ │ │ ├── concrete_brown.png │ │ │ ├── concrete_cyan.png │ │ │ ├── concrete_gray.png │ │ │ ├── concrete_green.png │ │ │ ├── concrete_light_blue.png │ │ │ ├── concrete_lime.png │ │ │ ├── concrete_magenta.png │ │ │ ├── concrete_orange.png │ │ │ ├── concrete_pink.png │ │ │ ├── concrete_powder_black.png │ │ │ ├── concrete_powder_blue.png │ │ │ ├── concrete_powder_brown.png │ │ │ ├── concrete_powder_cyan.png │ │ │ ├── concrete_powder_green.png │ │ │ ├── concrete_powder_light_blue.png │ │ │ ├── concrete_powder_lime.png │ │ │ ├── concrete_powder_magenta.png │ │ │ ├── concrete_powder_orange.png │ │ │ ├── concrete_powder_pink.png │ │ │ ├── concrete_powder_purple.png │ │ │ ├── concrete_powder_red.png │ │ │ ├── concrete_powder_white.png │ │ │ ├── concrete_powder_yellow.png │ │ │ ├── concrete_purple.png │ │ │ ├── concrete_red.png │ │ │ ├── concrete_silver.png │ │ │ ├── concrete_white.png │ │ │ ├── concrete_yellow.png │ │ │ ├── copper_block.png │ │ │ ├── copper_ore.png │ │ │ ├── coral_pink_dead.png │ │ │ ├── coral_purple_dead.png │ │ │ ├── coral_red_dead.png │ │ │ ├── coral_yellow_dead.png │ │ │ ├── custom │ │ │ │ ├── fake_end_portal.png │ │ │ │ ├── fake_pot.png │ │ │ │ ├── iron_bars.png │ │ │ │ ├── metal_rigging.png │ │ │ │ ├── window_oak.png │ │ │ │ └── window_spruce.png │ │ │ ├── cut_copper.png │ │ │ ├── daylight_detector_inverted_top.png │ │ │ ├── daylight_detector_side.png │ │ │ ├── daylight_detector_top.png │ │ │ ├── deadbush.png │ │ │ ├── decorations │ │ │ │ ├── banner │ │ │ │ │ ├── a.png │ │ │ │ │ └── b.png │ │ │ │ ├── bigbanner │ │ │ │ │ ├── a.png │ │ │ │ │ └── b.png │ │ │ │ ├── bigcake │ │ │ │ │ ├── bottom.png │ │ │ │ │ └── top.png │ │ │ │ ├── bunting │ │ │ │ │ ├── a.png │ │ │ │ │ └── b.png │ │ │ │ ├── cake_slice.png │ │ │ │ ├── cup_poster1.png │ │ │ │ ├── cup_poster2.png │ │ │ │ ├── flag │ │ │ │ │ ├── a.png │ │ │ │ │ └── b.png │ │ │ │ ├── flag_long │ │ │ │ │ ├── default_a.png │ │ │ │ │ ├── default_b.png │ │ │ │ │ ├── mcc_a.png │ │ │ │ │ └── mcc_b.png │ │ │ │ ├── hub_net.png │ │ │ │ ├── mcc_present.png │ │ │ │ ├── park_bench.png │ │ │ │ ├── pennon │ │ │ │ │ ├── a.png │ │ │ │ │ ├── b.png │ │ │ │ │ └── mcc.png │ │ │ │ ├── plush │ │ │ │ │ ├── plush_aqua.png │ │ │ │ │ ├── plush_blue.png │ │ │ │ │ ├── plush_cyan.png │ │ │ │ │ ├── plush_green.png │ │ │ │ │ ├── plush_lime.png │ │ │ │ │ ├── plush_orange.png │ │ │ │ │ ├── plush_pink.png │ │ │ │ │ ├── plush_purple.png │ │ │ │ │ ├── plush_red.png │ │ │ │ │ └── plush_yellow.png │ │ │ │ └── recycling_bin.png │ │ │ ├── deepslate │ │ │ │ ├── cobbled_deepslate.png │ │ │ │ ├── deepslate.png │ │ │ │ ├── deepslate_bricks.png │ │ │ │ ├── deepslate_coal_ore.png │ │ │ │ ├── deepslate_diamond_ore.png │ │ │ │ ├── deepslate_gold_ore.png │ │ │ │ └── deepslate_top.png │ │ │ ├── deepslate_tiles.png │ │ │ ├── diamond_block.png │ │ │ ├── diamond_ore.png │ │ │ ├── dirt.png │ │ │ ├── dirt_podzol_side.png │ │ │ ├── dirt_podzol_top.png │ │ │ ├── dispenser_front_horizontal.png │ │ │ ├── dispenser_front_vertical.png │ │ │ ├── door_acacia_lower.png │ │ │ ├── door_acacia_upper.png │ │ │ ├── door_birch_lower.png │ │ │ ├── door_birch_upper.png │ │ │ ├── door_dark_oak_lower.png │ │ │ ├── door_dark_oak_upper.png │ │ │ ├── door_iron_lower.png │ │ │ ├── door_iron_upper.png │ │ │ ├── door_spruce_lower.png │ │ │ ├── door_spruce_upper.png │ │ │ ├── door_wood_lower.png │ │ │ ├── door_wood_upper.png │ │ │ ├── double_plant_grass_bottom.tga │ │ │ ├── double_plant_grass_top.tga │ │ │ ├── double_plant_paeonia_bottom.png │ │ │ ├── double_plant_paeonia_top.png │ │ │ ├── double_plant_rose_bottom.png │ │ │ ├── double_plant_rose_top.png │ │ │ ├── dripstone_block.png │ │ │ ├── dropper_front_horizontal.png │ │ │ ├── dropper_front_vertical.png │ │ │ ├── emerald_block.png │ │ │ ├── emerald_ore.png │ │ │ ├── enchanting_table_bottom.png │ │ │ ├── end_bricks.png │ │ │ ├── end_rod.png │ │ │ ├── end_stone.png │ │ │ ├── endframe_eye.png │ │ │ ├── endframe_side.png │ │ │ ├── endframe_top.png │ │ │ ├── exposed_copper.png │ │ │ ├── exposed_cut_copper.png │ │ │ ├── flower_allium.png │ │ │ ├── flower_blue_orchid.png │ │ │ ├── flower_dandelion.png │ │ │ ├── flower_houstonia.png │ │ │ ├── flower_oxeye_daisy.png │ │ │ ├── flower_pot.png │ │ │ ├── flower_rose.png │ │ │ ├── flower_tulip_orange.png │ │ │ ├── flower_tulip_pink.png │ │ │ ├── flower_tulip_red.png │ │ │ ├── flower_tulip_white.png │ │ │ ├── flowering_azalea_side.png │ │ │ ├── flowering_azalea_top.png │ │ │ ├── furnace_front_off.png │ │ │ ├── furnace_front_on.png │ │ │ ├── furnace_side.png │ │ │ ├── furnace_top.png │ │ │ ├── glass.png │ │ │ ├── glass_black.png │ │ │ ├── glass_blue.png │ │ │ ├── glass_brown.png │ │ │ ├── glass_cyan.png │ │ │ ├── glass_gray.png │ │ │ ├── glass_green.png │ │ │ ├── glass_light_blue.png │ │ │ ├── glass_lime.png │ │ │ ├── glass_magenta.png │ │ │ ├── glass_orange.png │ │ │ ├── glass_pane_top.png │ │ │ ├── glass_pane_top_black.png │ │ │ ├── glass_pane_top_blue.png │ │ │ ├── glass_pane_top_brown.png │ │ │ ├── glass_pane_top_cyan.png │ │ │ ├── glass_pane_top_gray.png │ │ │ ├── glass_pane_top_green.png │ │ │ ├── glass_pane_top_light_blue.png │ │ │ ├── glass_pane_top_light_gray.png │ │ │ ├── glass_pane_top_lime.png │ │ │ ├── glass_pane_top_magenta.png │ │ │ ├── glass_pane_top_orange.png │ │ │ ├── glass_pane_top_pink.png │ │ │ ├── glass_pane_top_purple.png │ │ │ ├── glass_pane_top_red.png │ │ │ ├── glass_pane_top_white.png │ │ │ ├── glass_pane_top_yellow.png │ │ │ ├── glass_pink.png │ │ │ ├── glass_purple.png │ │ │ ├── glass_red.png │ │ │ ├── glass_silver.png │ │ │ ├── glass_white.png │ │ │ ├── glass_yellow.png │ │ │ ├── glazed_terracotta_cyan.png │ │ │ ├── glazed_terracotta_magenta.png │ │ │ ├── glow_lichen.png │ │ │ ├── glowstone.png │ │ │ ├── gold_block.png │ │ │ ├── gold_ore.png │ │ │ ├── gr │ │ │ │ ├── canvas_white.png │ │ │ │ ├── gr_glass2.png │ │ │ │ └── painting │ │ │ │ │ ├── black.png │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── brown.png │ │ │ │ │ ├── green.png │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── red.png │ │ │ │ │ ├── white.png │ │ │ │ │ └── yellow.png │ │ │ ├── grass_block_snow.png │ │ │ ├── grass_path_side.png │ │ │ ├── grass_path_top.png │ │ │ ├── grass_side.tga │ │ │ ├── grass_side_carried.png │ │ │ ├── grass_top.png │ │ │ ├── gravel.png │ │ │ ├── hardened_clay.png │ │ │ ├── hardened_clay_stained_black.png │ │ │ ├── hardened_clay_stained_blue.png │ │ │ ├── hardened_clay_stained_brown.png │ │ │ ├── hardened_clay_stained_cyan.png │ │ │ ├── hardened_clay_stained_gray.png │ │ │ ├── hardened_clay_stained_green.png │ │ │ ├── hardened_clay_stained_light_blue.png │ │ │ ├── hardened_clay_stained_magenta.png │ │ │ ├── hardened_clay_stained_orange.png │ │ │ ├── hardened_clay_stained_pink.png │ │ │ ├── hardened_clay_stained_purple.png │ │ │ ├── hardened_clay_stained_red.png │ │ │ ├── hardened_clay_stained_silver.png │ │ │ ├── hardened_clay_stained_white.png │ │ │ ├── hardened_clay_stained_yellow.png │ │ │ ├── hay_block_side.png │ │ │ ├── hay_block_top.png │ │ │ ├── hieroglyph │ │ │ │ ├── 1_a.png │ │ │ │ ├── 1_b.png │ │ │ │ ├── 1_c.png │ │ │ │ ├── 1_d.png │ │ │ │ ├── 2_a.png │ │ │ │ ├── 2_b.png │ │ │ │ ├── 2_c.png │ │ │ │ ├── 2_d.png │ │ │ │ ├── 3_a.png │ │ │ │ ├── 3_b.png │ │ │ │ ├── 3_c.png │ │ │ │ ├── 3_d.png │ │ │ │ ├── 4_a.png │ │ │ │ ├── 4_b.png │ │ │ │ ├── 4_c.png │ │ │ │ ├── 4_d.png │ │ │ │ ├── 5_a.png │ │ │ │ ├── 5_b.png │ │ │ │ ├── 5_c.png │ │ │ │ ├── 5_d.png │ │ │ │ ├── 6_a.png │ │ │ │ ├── 6_b.png │ │ │ │ ├── 6_c.png │ │ │ │ ├── 6_d.png │ │ │ │ ├── 7_a.png │ │ │ │ ├── 7_b.png │ │ │ │ ├── 7_c.png │ │ │ │ └── 7_d.png │ │ │ ├── honey_bottom.png │ │ │ ├── honey_side.png │ │ │ ├── honey_top.png │ │ │ ├── honeycomb.png │ │ │ ├── hopper_inside.png │ │ │ ├── hopper_outside.png │ │ │ ├── hopper_top.png │ │ │ ├── huge_fungus │ │ │ │ ├── crimson_log_side.png │ │ │ │ ├── crimson_log_top.png │ │ │ │ ├── crimson_planks.png │ │ │ │ ├── stripped_warped_stem_side.png │ │ │ │ ├── stripped_warped_stem_top.png │ │ │ │ ├── warped_planks.png │ │ │ │ ├── warped_stem_side.png │ │ │ │ ├── warped_stem_top.png │ │ │ │ └── warped_trapdoor.png │ │ │ ├── ice.png │ │ │ ├── ice_packed.png │ │ │ ├── iron_bars.png │ │ │ ├── iron_block.png │ │ │ ├── iron_ore.png │ │ │ ├── iron_trapdoor.png │ │ │ ├── ladder.png │ │ │ ├── lantern.png │ │ │ ├── lapis_block.png │ │ │ ├── lapis_ore.png │ │ │ ├── lava_flow.png │ │ │ ├── lava_still.png │ │ │ ├── leaves_acacia.tga │ │ │ ├── leaves_birch.tga │ │ │ ├── leaves_dark_oak.tga │ │ │ ├── leaves_jungle.tga │ │ │ ├── leaves_oak.tga │ │ │ ├── leaves_spruce.tga │ │ │ ├── lightning_rod.png │ │ │ ├── log_acacia.png │ │ │ ├── log_acacia_top.png │ │ │ ├── log_big_oak.png │ │ │ ├── log_big_oak_top.png │ │ │ ├── log_birch.png │ │ │ ├── log_birch_top.png │ │ │ ├── log_jungle.png │ │ │ ├── log_jungle_top.png │ │ │ ├── log_oak.png │ │ │ ├── log_oak_top.png │ │ │ ├── log_spruce.png │ │ │ ├── log_spruce_top.png │ │ │ ├── logo │ │ │ │ ├── logo.png │ │ │ │ └── n_button.png │ │ │ ├── magenta_concrete_powder.png │ │ │ ├── magma.png │ │ │ ├── mangrove_log_side.png │ │ │ ├── mangrove_log_top.png │ │ │ ├── mangrove_planks.png │ │ │ ├── mangrove_roots_side.png │ │ │ ├── mangrove_roots_top.png │ │ │ ├── md │ │ │ │ ├── a.png │ │ │ │ ├── b.png │ │ │ │ ├── blue_panel_a.png │ │ │ │ ├── blue_panel_b.png │ │ │ │ ├── blue_panel_c.png │ │ │ │ ├── blue_panel_d.png │ │ │ │ ├── box.png │ │ │ │ ├── box_bottom.png │ │ │ │ ├── box_side.png │ │ │ │ ├── box_side_tape.png │ │ │ │ ├── box_top.png │ │ │ │ ├── c.png │ │ │ │ ├── d.png │ │ │ │ ├── exit_a.png │ │ │ │ ├── exit_b.png │ │ │ │ ├── exit_small.png │ │ │ │ ├── fan_vent.png │ │ │ │ ├── floor_panel_a.png │ │ │ │ ├── floor_panel_b.png │ │ │ │ ├── floor_panel_c.png │ │ │ │ ├── floor_panel_d.png │ │ │ │ ├── g.png │ │ │ │ ├── gray_panel_a.png │ │ │ │ ├── gray_panel_b.png │ │ │ │ ├── gray_panel_c.png │ │ │ │ ├── gray_panel_d.png │ │ │ │ ├── light_blue_panel_a.png │ │ │ │ ├── light_blue_panel_b.png │ │ │ │ ├── light_blue_panel_c.png │ │ │ │ ├── light_blue_panel_d.png │ │ │ │ ├── light_blue_wool.png │ │ │ │ ├── light_navy_concrete.png │ │ │ │ ├── light_navy_panel_a.png │ │ │ │ ├── light_navy_panel_b.png │ │ │ │ ├── light_navy_panel_c.png │ │ │ │ ├── light_navy_panel_d.png │ │ │ │ ├── light_navy_terracotta.png │ │ │ │ ├── light_navy_wool.png │ │ │ │ ├── md_barrel.png │ │ │ │ ├── md_white_border.png │ │ │ │ ├── melt_spawner.png │ │ │ │ ├── melted_bars.png │ │ │ │ ├── melted_rigging.png │ │ │ │ ├── modern_light.png │ │ │ │ ├── navy_concrete.png │ │ │ │ ├── navy_panel_a.png │ │ │ │ ├── navy_panel_b.png │ │ │ │ ├── navy_panel_c.png │ │ │ │ ├── navy_panel_d.png │ │ │ │ ├── navy_terracotta.png │ │ │ │ ├── navy_wool.png │ │ │ │ ├── office_chair.png │ │ │ │ ├── rotating_light_off.png │ │ │ │ ├── rotating_light_on.png │ │ │ │ ├── vent_a.png │ │ │ │ ├── vent_b.png │ │ │ │ └── wood_crate.png │ │ │ ├── moss_block.png │ │ │ ├── mud_bricks.png │ │ │ ├── mushroom_block_inside.png │ │ │ ├── mushroom_block_skin_brown.png │ │ │ ├── mushroom_block_skin_red.png │ │ │ ├── mushroom_block_skin_stem.png │ │ │ ├── mycelium_side.png │ │ │ ├── mycelium_top.png │ │ │ ├── nether_brick.png │ │ │ ├── netherite_block.png │ │ │ ├── netherrack.png │ │ │ ├── observer_back.png │ │ │ ├── observer_front.png │ │ │ ├── observer_side.png │ │ │ ├── observer_top.png │ │ │ ├── oxidized_copper.png │ │ │ ├── oxidized_cut_copper.png │ │ │ ├── pink_petals.png │ │ │ ├── planks_acacia.png │ │ │ ├── planks_big_oak.png │ │ │ ├── planks_birch.png │ │ │ ├── planks_jungle.png │ │ │ ├── planks_oak.png │ │ │ ├── planks_spruce.png │ │ │ ├── pointed_dripstone_down_base.png │ │ │ ├── pointed_dripstone_down_frustum.png │ │ │ ├── pointed_dripstone_down_merge.png │ │ │ ├── pointed_dripstone_down_middle.png │ │ │ ├── pointed_dripstone_down_tip.png │ │ │ ├── pointed_dripstone_up_base.png │ │ │ ├── pointed_dripstone_up_frustum.png │ │ │ ├── pointed_dripstone_up_merge.png │ │ │ ├── pointed_dripstone_up_middle.png │ │ │ ├── pointed_dripstone_up_tip.png │ │ │ ├── polished_blackstone.png │ │ │ ├── polished_blackstone_bricks.png │ │ │ ├── portal.png │ │ │ ├── potted_azalea_bush_plant.png │ │ │ ├── potted_azalea_bush_side.png │ │ │ ├── potted_azalea_bush_top.png │ │ │ ├── potted_flowering_azalea_bush_plant.png │ │ │ ├── potted_flowering_azalea_bush_side.png │ │ │ ├── potted_flowering_azalea_bush_top.png │ │ │ ├── prismarine_bricks.png │ │ │ ├── prismarine_dark.png │ │ │ ├── prismarine_rough.png │ │ │ ├── pumpkin_face_off.png │ │ │ ├── pumpkin_face_on.png │ │ │ ├── pumpkin_side.png │ │ │ ├── pumpkin_top.png │ │ │ ├── purple_concrete_powder.png │ │ │ ├── purpur_block.png │ │ │ ├── purpur_pillar.png │ │ │ ├── purpur_pillar_top.png │ │ │ ├── quartz_block_bottom.png │ │ │ ├── quartz_block_chiseled.png │ │ │ ├── quartz_block_chiseled_top.png │ │ │ ├── quartz_block_lines.png │ │ │ ├── quartz_block_lines_top.png │ │ │ ├── quartz_block_side.png │ │ │ ├── quartz_block_top.png │ │ │ ├── quartz_bricks.png │ │ │ ├── rail_normal.png │ │ │ ├── rail_normal_turned.png │ │ │ ├── raw_iron_block.png │ │ │ ├── red_nether_brick.png │ │ │ ├── red_sand.png │ │ │ ├── red_sandstone_bottom.png │ │ │ ├── red_sandstone_carved.png │ │ │ ├── red_sandstone_normal.png │ │ │ ├── red_sandstone_top.png │ │ │ ├── redstone_block.png │ │ │ ├── redstone_ore.png │ │ │ ├── redstone_torch.png │ │ │ ├── redstone_torch_on.png │ │ │ ├── sand.png │ │ │ ├── sandstone_bottom.png │ │ │ ├── sandstone_carved.png │ │ │ ├── sandstone_normal.png │ │ │ ├── sandstone_smooth.png │ │ │ ├── sandstone_top.png │ │ │ ├── sea_lantern.png │ │ │ ├── sea_pickle.png │ │ │ ├── seagrass.png │ │ │ ├── seagrass_doubletall_bottom_a.tga │ │ │ ├── seagrass_doubletall_bottom_b.tga │ │ │ ├── seagrass_doubletall_top_a.tga │ │ │ ├── seagrass_doubletall_top_b.tga │ │ │ ├── shroomlight.png │ │ │ ├── slime.png │ │ │ ├── small_dripleaf_side.png │ │ │ ├── small_dripleaf_stem_bottom.png │ │ │ ├── small_dripleaf_stem_top.png │ │ │ ├── small_dripleaf_top.png │ │ │ ├── smooth_basalt.png │ │ │ ├── snow.png │ │ │ ├── sot │ │ │ │ ├── a.png │ │ │ │ ├── b.png │ │ │ │ ├── c.png │ │ │ │ ├── d.png │ │ │ │ ├── e.png │ │ │ │ ├── f.png │ │ │ │ ├── flower.png │ │ │ │ ├── g.png │ │ │ │ ├── h.png │ │ │ │ ├── i.png │ │ │ │ ├── j.png │ │ │ │ ├── k.png │ │ │ │ ├── l.png │ │ │ │ ├── m.png │ │ │ │ ├── n.png │ │ │ │ ├── o.png │ │ │ │ ├── p.png │ │ │ │ ├── q.png │ │ │ │ ├── r.png │ │ │ │ ├── s.png │ │ │ │ ├── sot_portal.png │ │ │ │ └── t.png │ │ │ ├── soul_lantern.png │ │ │ ├── soul_sand.png │ │ │ ├── soul_torch.png │ │ │ ├── soul_torch_on.png │ │ │ ├── spore_blossom.png │ │ │ ├── spore_blossom_base.png │ │ │ ├── spruce_trapdoor.png │ │ │ ├── stone.png │ │ │ ├── stone_andesite.png │ │ │ ├── stone_andesite_smooth.png │ │ │ ├── stone_diorite.png │ │ │ ├── stone_diorite_smooth.png │ │ │ ├── stone_granite.png │ │ │ ├── stone_granite_smooth.png │ │ │ ├── stone_slab_side.png │ │ │ ├── stone_slab_top.png │ │ │ ├── stonebrick.png │ │ │ ├── stonebrick_cracked.png │ │ │ ├── stonebrick_mossy.png │ │ │ ├── stripped_acacia_log.png │ │ │ ├── stripped_acacia_log_top.png │ │ │ ├── stripped_bamboo_block.png │ │ │ ├── stripped_bamboo_block_top.png │ │ │ ├── stripped_birch_log.png │ │ │ ├── stripped_birch_log_top.png │ │ │ ├── stripped_dark_oak_log.png │ │ │ ├── stripped_dark_oak_log_top.png │ │ │ ├── stripped_jungle_log.png │ │ │ ├── stripped_jungle_log_top.png │ │ │ ├── stripped_oak_log.png │ │ │ ├── stripped_oak_log_top.png │ │ │ ├── stripped_spruce_log.png │ │ │ ├── stripped_spruce_log_top.png │ │ │ ├── sweet_berry_bush_stage0.png │ │ │ ├── sweet_berry_bush_stage1.png │ │ │ ├── sweet_berry_bush_stage2.png │ │ │ ├── sweet_berry_bush_stage3.png │ │ │ ├── tallgrass.tga │ │ │ ├── tnt_bottom.png │ │ │ ├── tnt_side.png │ │ │ ├── tnt_top.png │ │ │ ├── torch.png │ │ │ ├── torch_on.png │ │ │ ├── trapdoor.png │ │ │ ├── tuff.png │ │ │ ├── vine.png │ │ │ ├── water_flow_grey.png │ │ │ ├── water_still_grey.png │ │ │ ├── waterlily.png │ │ │ ├── weathered_copper.png │ │ │ ├── weathered_cut_copper.png │ │ │ ├── wool_colored_black.png │ │ │ ├── wool_colored_blue.png │ │ │ ├── wool_colored_brown.png │ │ │ ├── wool_colored_cyan.png │ │ │ ├── wool_colored_gray.png │ │ │ ├── wool_colored_green.png │ │ │ ├── wool_colored_light_blue.png │ │ │ ├── wool_colored_lime.png │ │ │ ├── wool_colored_magenta.png │ │ │ ├── wool_colored_orange.png │ │ │ ├── wool_colored_pink.png │ │ │ ├── wool_colored_purple.png │ │ │ ├── wool_colored_red.png │ │ │ ├── wool_colored_silver.png │ │ │ ├── wool_colored_white.png │ │ │ └── wool_colored_yellow.png │ │ ├── colormap │ │ │ ├── birch.png │ │ │ ├── foliage.png │ │ │ └── grass.png │ │ ├── entity │ │ │ ├── n │ │ │ │ ├── decorations │ │ │ │ │ ├── 15 │ │ │ │ │ │ ├── aqua_axolotls.png │ │ │ │ │ │ ├── blue_bats.png │ │ │ │ │ │ ├── cyan_coyotes.png │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── green_geckos.png │ │ │ │ │ │ ├── lime_llamas.png │ │ │ │ │ │ ├── orange_ocelots.png │ │ │ │ │ │ ├── pink_parrots.png │ │ │ │ │ │ ├── purple_pandas.png │ │ │ │ │ │ ├── red_rabbits.png │ │ │ │ │ │ └── yellow_yaks.png │ │ │ │ │ ├── awning │ │ │ │ │ │ ├── aqua_axolotls.png │ │ │ │ │ │ ├── blue_bats.png │ │ │ │ │ │ ├── cyan_coyotes.png │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── green_geckos.png │ │ │ │ │ │ ├── lime_llamas.png │ │ │ │ │ │ ├── orange_ocelots.png │ │ │ │ │ │ ├── pink_parrots.png │ │ │ │ │ │ ├── purple_pandas.png │ │ │ │ │ │ ├── red_rabbits.png │ │ │ │ │ │ └── yellow_yaks.png │ │ │ │ │ ├── balloons │ │ │ │ │ │ ├── aqua_axolotls.png │ │ │ │ │ │ ├── blue_bats.png │ │ │ │ │ │ ├── cyan_coyotes.png │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── green_geckos.png │ │ │ │ │ │ ├── lime_llamas.png │ │ │ │ │ │ ├── orange_ocelots.png │ │ │ │ │ │ ├── pink_parrots.png │ │ │ │ │ │ ├── purple_pandas.png │ │ │ │ │ │ ├── red_rabbits.png │ │ │ │ │ │ └── yellow_yaks.png │ │ │ │ │ ├── bunting │ │ │ │ │ │ ├── aqua_axolotls.png │ │ │ │ │ │ ├── blue_bats.png │ │ │ │ │ │ ├── cyan_coyotes.png │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── green_geckos.png │ │ │ │ │ │ ├── lime_llamas.png │ │ │ │ │ │ ├── orange_ocelots.png │ │ │ │ │ │ ├── pink_parrots.png │ │ │ │ │ │ ├── purple_pandas.png │ │ │ │ │ │ ├── red_rabbits.png │ │ │ │ │ │ └── yellow_yaks.png │ │ │ │ │ ├── chicken_balloon.png │ │ │ │ │ ├── cupcake │ │ │ │ │ │ ├── aqua_axolotls.png │ │ │ │ │ │ ├── blue_bats.png │ │ │ │ │ │ ├── cyan_coyotes.png │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── green_geckos.png │ │ │ │ │ │ ├── lime_llamas.png │ │ │ │ │ │ ├── orange_ocelots.png │ │ │ │ │ │ ├── pink_parrots.png │ │ │ │ │ │ ├── purple_pandas.png │ │ │ │ │ │ ├── red_rabbits.png │ │ │ │ │ │ └── yellow_yaks.png │ │ │ │ │ ├── decoration_board.png │ │ │ │ │ └── mcc_balloon.png │ │ │ │ ├── gr │ │ │ │ │ ├── giant_cake.png │ │ │ │ │ ├── lost_pearl.png │ │ │ │ │ ├── paint │ │ │ │ │ │ ├── proj_black.png │ │ │ │ │ │ ├── proj_blue.png │ │ │ │ │ │ ├── proj_brown.png │ │ │ │ │ │ ├── proj_green.png │ │ │ │ │ │ ├── proj_purple.png │ │ │ │ │ │ ├── proj_red.png │ │ │ │ │ │ ├── proj_white.png │ │ │ │ │ │ └── proj_yellow.png │ │ │ │ │ ├── paint_pot │ │ │ │ │ │ ├── black.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── brown.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── white.png │ │ │ │ │ │ └── yellow.png │ │ │ │ │ └── paintbrush │ │ │ │ │ │ ├── black.png │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── brown.png │ │ │ │ │ │ ├── empty.png │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── white.png │ │ │ │ │ │ └── yellow.png │ │ │ │ ├── hub │ │ │ │ │ ├── advert_creator_cup.png │ │ │ │ │ ├── balloon_animal.png │ │ │ │ │ ├── beachball.png │ │ │ │ │ ├── beanie │ │ │ │ │ │ ├── aqua_axolotls.png │ │ │ │ │ │ ├── blue_bats.png │ │ │ │ │ │ ├── cyan_coyotes.png │ │ │ │ │ │ ├── green_geckos.png │ │ │ │ │ │ ├── lime_llamas.png │ │ │ │ │ │ ├── orange_ocelots.png │ │ │ │ │ │ ├── pink_parrots.png │ │ │ │ │ │ ├── purple_pandas.png │ │ │ │ │ │ ├── red_rabbits.png │ │ │ │ │ │ └── yellow_yaks.png │ │ │ │ │ ├── big_bubble_blower.png │ │ │ │ │ ├── candles │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ ├── 15.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ │ ├── disco_ball.png │ │ │ │ │ ├── foam_finger.png │ │ │ │ │ ├── hat_birthday_present.png │ │ │ │ │ ├── hat_boombox.png │ │ │ │ │ ├── hat_chicken_jockey.png │ │ │ │ │ ├── hat_crown_cake.png │ │ │ │ │ ├── hat_jester.png │ │ │ │ │ ├── hat_party.png │ │ │ │ │ ├── hat_propeller.png │ │ │ │ │ ├── helium_balloon │ │ │ │ │ │ ├── a.png │ │ │ │ │ │ ├── b.png │ │ │ │ │ │ ├── c.png │ │ │ │ │ │ └── d.png │ │ │ │ │ ├── horn.png │ │ │ │ │ ├── party_popper.png │ │ │ │ │ ├── pizza_box.png │ │ │ │ │ ├── start_button.png │ │ │ │ │ ├── trophy_help.png │ │ │ │ │ ├── vendor_food.png │ │ │ │ │ ├── vendor_hat.png │ │ │ │ │ ├── vendor_mascot.png │ │ │ │ │ └── vendor_toys.png │ │ │ │ ├── invisible.png │ │ │ │ ├── npc │ │ │ │ │ ├── creator_ace.png │ │ │ │ │ ├── creator_grid.png │ │ │ │ │ ├── creator_melt.png │ │ │ │ │ ├── creator_mojang.png │ │ │ │ │ ├── creator_sands.png │ │ │ │ │ ├── crowned_frog.png │ │ │ │ │ └── hieroglyph_helper.png │ │ │ │ ├── sot │ │ │ │ │ ├── armor_podium.png │ │ │ │ │ ├── coin_stack.png │ │ │ │ │ ├── key_podium.png │ │ │ │ │ ├── sand_blocks.png │ │ │ │ │ ├── sand_timer.png │ │ │ │ │ └── treasure_chest.png │ │ │ │ └── vanilla_mob │ │ │ │ │ ├── blaze.tga │ │ │ │ │ ├── creeper.png │ │ │ │ │ ├── ice.png │ │ │ │ │ ├── skeleton.png │ │ │ │ │ ├── spider.tga │ │ │ │ │ ├── vindicator.png │ │ │ │ │ └── zombie.png │ │ │ └── sign_warped.png │ │ ├── flipbook_textures.json │ │ ├── item_texture.json │ │ ├── items │ │ │ ├── fake_bow.png │ │ │ ├── gr │ │ │ │ ├── brush │ │ │ │ │ ├── black.png │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── brown.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── green.png │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── red.png │ │ │ │ │ ├── white.png │ │ │ │ │ └── yellow.png │ │ │ │ ├── egg.png │ │ │ │ └── milk_bucket.png │ │ │ ├── hub │ │ │ │ ├── anniversary_hot_dog.png │ │ │ │ ├── balloon_animal.png │ │ │ │ ├── balloon_helium.png │ │ │ │ ├── beach_ball.png │ │ │ │ ├── beanie_aqua.png │ │ │ │ ├── beanie_blue.png │ │ │ │ ├── beanie_cyan.png │ │ │ │ ├── beanie_green.png │ │ │ │ ├── beanie_lime.png │ │ │ │ ├── beanie_orange.png │ │ │ │ ├── beanie_pink.png │ │ │ │ ├── beanie_purple.png │ │ │ │ ├── beanie_red.png │ │ │ │ ├── beanie_yellow.png │ │ │ │ ├── big_bubble_blower.png │ │ │ │ ├── celebration_fireworks.png │ │ │ │ ├── challenge_list.png │ │ │ │ ├── confetti_tag.png │ │ │ │ ├── confetti_tag_prime.png │ │ │ │ ├── cosmetic_chest.png │ │ │ │ ├── cotton_candy.png │ │ │ │ ├── disco_ball.png │ │ │ │ ├── foam_finger.png │ │ │ │ ├── hat_birthday_present.png │ │ │ │ ├── hat_boombox.png │ │ │ │ ├── hat_chicken_jockey.png │ │ │ │ ├── hat_crown_cake.png │ │ │ │ ├── hat_jester.png │ │ │ │ ├── hat_party.png │ │ │ │ ├── hat_propeller.png │ │ │ │ ├── mcc_burger.png │ │ │ │ ├── party_cake.png │ │ │ │ ├── party_chips.png │ │ │ │ ├── party_cookie.png │ │ │ │ ├── party_cupcake.png │ │ │ │ ├── party_popper.png │ │ │ │ ├── party_soda.png │ │ │ │ ├── pizza_box.png │ │ │ │ ├── pizza_slice.png │ │ │ │ ├── player_gift_giving.png │ │ │ │ ├── player_gift_receiving.png │ │ │ │ ├── popcorn.png │ │ │ │ ├── silly_horn.png │ │ │ │ ├── super_wrap.png │ │ │ │ └── teleport.png │ │ │ ├── leave_game.png │ │ │ └── sot │ │ │ │ └── keys │ │ │ │ ├── diamond.png │ │ │ │ ├── gold.png │ │ │ │ ├── iron.png │ │ │ │ └── netherite.png │ │ ├── particles │ │ │ ├── 15.png │ │ │ ├── ball_pop.png │ │ │ ├── balloon_flying.png │ │ │ ├── blown_bubble.png │ │ │ ├── cake_1.png │ │ │ ├── cake_2.png │ │ │ ├── cake_3.png │ │ │ ├── celebration_rocket.png │ │ │ ├── click.png │ │ │ ├── coin_particle.png │ │ │ ├── coin_sack.png │ │ │ ├── coins.png │ │ │ ├── confetti.png │ │ │ ├── confetti_tag.png │ │ │ ├── crown.png │ │ │ ├── disco_beams.png │ │ │ ├── disco_floor.png │ │ │ ├── feather.png │ │ │ ├── flame.png │ │ │ ├── frozen_shatter.png │ │ │ ├── glow_circle.png │ │ │ ├── guide_arrow.png │ │ │ ├── horn.png │ │ │ ├── noxcrew.png │ │ │ ├── paint.png │ │ │ ├── pipe.png │ │ │ ├── pixel.png │ │ │ ├── player_gift_a.png │ │ │ ├── player_gift_b.png │ │ │ ├── poof.png │ │ │ ├── sandtimer_up.png │ │ │ ├── sparkle.png │ │ │ ├── vendor_icon.png │ │ │ └── wrong.png │ │ ├── terrain_texture.json │ │ └── ui │ │ │ ├── StoreTopBar.png │ │ │ ├── TabLeftBack.png │ │ │ ├── TabLeftBackBottomMost.png │ │ │ ├── TabLeftBackBottomMostHover.png │ │ │ ├── TabLeftBackHover.png │ │ │ ├── TabLeftBackTopMost.png │ │ │ ├── TabLeftBackTopMostHover.png │ │ │ ├── TabLeftFront.png │ │ │ ├── TabLeftFrontBottomMost.png │ │ │ ├── TabLeftFrontBottomMostHover.png │ │ │ ├── TabLeftFrontHover.png │ │ │ ├── TabLeftFrontTopMost.png │ │ │ ├── TabLeftFrontTopMostHover.png │ │ │ ├── TabRightBack.png │ │ │ ├── TabRightBackBottomMost.png │ │ │ ├── TabRightBackBottomMostHover.png │ │ │ ├── TabRightBackHover.png │ │ │ ├── TabRightBackTopMost.png │ │ │ ├── TabRightBackTopMostHover.png │ │ │ ├── TabRightFront.png │ │ │ ├── TabRightFrontBottomMost.png │ │ │ ├── TabRightFrontBottomMostHover.png │ │ │ ├── TabRightFrontHover.png │ │ │ ├── TabRightFrontTopMost.png │ │ │ ├── TabRightFrontTopMostHover.png │ │ │ ├── TabTopBack.png │ │ │ ├── TabTopBackHover.png │ │ │ ├── TabTopBackLeftMost.png │ │ │ ├── TabTopBackLeftMostHover.png │ │ │ ├── TabTopBackRightMost.png │ │ │ ├── TabTopBackRightMostDark.png │ │ │ ├── TabTopBackRightMostDarkHover.png │ │ │ ├── TabTopBackRightMostHover.png │ │ │ ├── TabTopFront.png │ │ │ ├── TabTopFrontHover.png │ │ │ ├── TabTopFrontLeftMost.png │ │ │ ├── TabTopFrontLeftMostHover.png │ │ │ ├── TabTopFrontRightMost.png │ │ │ ├── TabTopFrontRightMostHover.png │ │ │ ├── armor_empty.png │ │ │ ├── armor_full.png │ │ │ ├── armor_half.png │ │ │ ├── arrow.png │ │ │ ├── arrow_down.png │ │ │ ├── arrow_down_large.png │ │ │ ├── background_panel.png │ │ │ ├── bad_omen_effect.png │ │ │ ├── banners2.json │ │ │ ├── banners2.png │ │ │ ├── bubble.png │ │ │ ├── bubble_pop.png │ │ │ ├── button_borderless_imagelesshoverbg.png │ │ │ ├── button_borderless_light.png │ │ │ ├── button_borderless_light_noxcrew.json │ │ │ ├── button_borderless_light_noxcrew.png │ │ │ ├── button_borderless_lighthover_noxcrew.json │ │ │ ├── button_borderless_lighthover_noxcrew.png │ │ │ ├── button_borderless_lightpressed.png │ │ │ ├── button_borderless_lightpressednohover.png │ │ │ ├── button_borderless_locked_noxcrew.json │ │ │ ├── button_borderless_locked_noxcrew.png │ │ │ ├── button_borderless_pressed_noxcrew.json │ │ │ ├── button_borderless_pressed_noxcrew.png │ │ │ ├── cell_image.png │ │ │ ├── chat_down_arrow.png │ │ │ ├── chat_keyboard.png │ │ │ ├── close_button_custom.png │ │ │ ├── close_button_default.png │ │ │ ├── close_button_default_compact.png │ │ │ ├── close_button_default_noxcrew.png │ │ │ ├── close_button_hover.png │ │ │ ├── close_button_hover_compact.png │ │ │ ├── close_button_hover_light.png │ │ │ ├── close_button_hover_noxcrew.png │ │ │ ├── close_button_pressed.png │ │ │ ├── close_button_pressed_compact.png │ │ │ ├── close_button_pressed_light.png │ │ │ ├── close_button_pressed_noxcrew.png │ │ │ ├── craft_toggle_off.png │ │ │ ├── craft_toggle_off_hover.png │ │ │ ├── craft_toggle_on.png │ │ │ ├── craft_toggle_on_hover.png │ │ │ ├── dialog_background_hollow_1.png │ │ │ ├── dialog_background_hollow_2.png │ │ │ ├── dialog_background_hollow_3.png │ │ │ ├── dialog_background_hollow_4.png │ │ │ ├── dialog_background_hollow_4_thin.png │ │ │ ├── dialog_background_hollow_5.png │ │ │ ├── dialog_background_hollow_6.png │ │ │ ├── dialog_background_hollow_7.png │ │ │ ├── dialog_background_hollow_8.png │ │ │ ├── dialog_background_opaque.png │ │ │ ├── dialog_background_opaque_noxcrew.json │ │ │ ├── dialog_background_opaque_noxcrew.png │ │ │ ├── dialog_bubble.json │ │ │ ├── dialog_bubble.png │ │ │ ├── dialog_bubble_point.png │ │ │ ├── disabledButtonNoBorder.png │ │ │ ├── dropdown_chevron.png │ │ │ ├── edit_box_indent.png │ │ │ ├── edit_box_indent_hover.png │ │ │ ├── empty_armor_slot_boots.png │ │ │ ├── empty_armor_slot_chestplate.png │ │ │ ├── empty_armor_slot_helmet.png │ │ │ ├── empty_armor_slot_leggings.png │ │ │ ├── empty_armor_slot_shield.png │ │ │ ├── empty_horse_slot_armor.png │ │ │ ├── empty_progress_bar.json │ │ │ ├── empty_progress_bar.png │ │ │ ├── experience_bar_nub_blue.png │ │ │ ├── experiencebarempty.png │ │ │ ├── experiencebarfull.png │ │ │ ├── experiencenub.png │ │ │ ├── filled_progress_bar.json │ │ │ ├── filled_progress_bar.png │ │ │ ├── greyBorder.png │ │ │ ├── header_bar.png │ │ │ ├── heart.png │ │ │ ├── heart_background.png │ │ │ ├── heart_half.png │ │ │ ├── highlight_slot.png │ │ │ ├── hotbar_0.png │ │ │ ├── hotbar_1.png │ │ │ ├── hotbar_2.png │ │ │ ├── hotbar_3.png │ │ │ ├── hotbar_4.png │ │ │ ├── hotbar_5.png │ │ │ ├── hotbar_6.png │ │ │ ├── hotbar_7.png │ │ │ ├── hotbar_8.png │ │ │ ├── hotbar_end_cap.json │ │ │ ├── hotbar_end_cap.png │ │ │ ├── hotbar_start_cap.json │ │ │ ├── hotbar_start_cap.png │ │ │ ├── how_to_play_button_default.png │ │ │ ├── how_to_play_button_default_light.png │ │ │ ├── hud_tip_text_background_custom.json │ │ │ ├── hud_tip_text_background_custom.png │ │ │ ├── icon_expand.png │ │ │ ├── legacy_pocket_close_button_default.png │ │ │ ├── legacy_pocket_close_button_pressed.png │ │ │ ├── n │ │ │ ├── challenge.png │ │ │ ├── challenge │ │ │ │ ├── border_cell.json │ │ │ │ ├── border_cell.png │ │ │ │ ├── content_locked.json │ │ │ │ ├── content_locked.png │ │ │ │ ├── content_unlocked.json │ │ │ │ ├── content_unlocked.png │ │ │ │ ├── dark.json │ │ │ │ ├── dark.png │ │ │ │ ├── secondary_content_cell.json │ │ │ │ ├── secondary_content_cell.png │ │ │ │ ├── title_locked.json │ │ │ │ ├── title_locked.png │ │ │ │ ├── title_unlocked.json │ │ │ │ └── title_unlocked.png │ │ │ ├── challenge_list.png │ │ │ ├── challenge_list │ │ │ │ ├── border_cell.json │ │ │ │ ├── border_cell.png │ │ │ │ ├── cape.png │ │ │ │ ├── capebg.json │ │ │ │ ├── capebg.png │ │ │ │ ├── dark_bottom.json │ │ │ │ ├── dark_bottom.png │ │ │ │ ├── dark_top.json │ │ │ │ ├── dark_top.png │ │ │ │ ├── locked.json │ │ │ │ ├── locked.png │ │ │ │ ├── secondary_content_cell.json │ │ │ │ ├── secondary_content_cell.png │ │ │ │ ├── unlocked.json │ │ │ │ └── unlocked.png │ │ │ ├── coin.png │ │ │ ├── complete │ │ │ │ ├── bar.json │ │ │ │ ├── bar.png │ │ │ │ ├── border_cell.png │ │ │ │ ├── border_cell_3.png │ │ │ │ ├── border_cell_4.png │ │ │ │ ├── border_cell_5.png │ │ │ │ ├── dark.png │ │ │ │ ├── glow.png │ │ │ │ ├── gradient.png │ │ │ │ ├── record_bar.json │ │ │ │ └── record_bar.png │ │ │ ├── cosmetic.png │ │ │ ├── cosmetic │ │ │ │ ├── border_cell.json │ │ │ │ ├── border_cell.png │ │ │ │ ├── item_bottom.json │ │ │ │ ├── item_bottom.png │ │ │ │ ├── item_bottom_hover.json │ │ │ │ ├── item_bottom_hover.png │ │ │ │ ├── item_top.json │ │ │ │ ├── item_top.png │ │ │ │ ├── item_top_hover.json │ │ │ │ ├── item_top_hover.png │ │ │ │ ├── secondary_content_cell.json │ │ │ │ └── secondary_content_cell.png │ │ │ ├── crown.png │ │ │ ├── finish_flag.png │ │ │ ├── game │ │ │ │ ├── ace_race.png │ │ │ │ ├── grid_runners.png │ │ │ │ ├── hub.png │ │ │ │ ├── meltdown.png │ │ │ │ ├── sands_of_time.png │ │ │ │ └── trophy.png │ │ │ ├── i_info │ │ │ │ ├── aqua.png │ │ │ │ ├── aqua_locked.png │ │ │ │ ├── ar.png │ │ │ │ ├── ar_locked.png │ │ │ │ ├── blue.png │ │ │ │ ├── blue_locked.png │ │ │ │ ├── challenge.png │ │ │ │ ├── challenge_locked.png │ │ │ │ ├── cyan.png │ │ │ │ ├── cyan_locked.png │ │ │ │ ├── gr.png │ │ │ │ ├── gr_locked.png │ │ │ │ ├── green.png │ │ │ │ ├── green_locked.png │ │ │ │ ├── lime.png │ │ │ │ ├── lime_locked.png │ │ │ │ ├── md.png │ │ │ │ ├── md_locked.png │ │ │ │ ├── orange.png │ │ │ │ ├── orange_locked.png │ │ │ │ ├── pink.png │ │ │ │ ├── pink_locked.png │ │ │ │ ├── purple.png │ │ │ │ ├── purple_locked.png │ │ │ │ ├── red.png │ │ │ │ ├── red_locked.png │ │ │ │ ├── sot.png │ │ │ │ ├── sot_locked.png │ │ │ │ ├── yellow.png │ │ │ │ └── yellow_locked.png │ │ │ ├── i_list │ │ │ │ ├── aqua.png │ │ │ │ ├── aqua_locked.png │ │ │ │ ├── ar.png │ │ │ │ ├── ar_locked.png │ │ │ │ ├── blue.png │ │ │ │ ├── blue_locked.png │ │ │ │ ├── challenge.png │ │ │ │ ├── challenge_locked.png │ │ │ │ ├── cyan.png │ │ │ │ ├── cyan_locked.png │ │ │ │ ├── gr.png │ │ │ │ ├── gr_locked.png │ │ │ │ ├── green.png │ │ │ │ ├── green_locked.png │ │ │ │ ├── lime.png │ │ │ │ ├── lime_locked.png │ │ │ │ ├── md.png │ │ │ │ ├── md_locked.png │ │ │ │ ├── orange.png │ │ │ │ ├── orange_locked.png │ │ │ │ ├── pink.png │ │ │ │ ├── pink_locked.png │ │ │ │ ├── purple.png │ │ │ │ ├── purple_locked.png │ │ │ │ ├── red.png │ │ │ │ ├── red_locked.png │ │ │ │ ├── sot.png │ │ │ │ ├── sot_locked.png │ │ │ │ ├── yellow.png │ │ │ │ └── yellow_locked.png │ │ │ ├── i_reward │ │ │ │ ├── aqua.png │ │ │ │ ├── aqua_locked.png │ │ │ │ ├── ar.png │ │ │ │ ├── ar_locked.png │ │ │ │ ├── blue.png │ │ │ │ ├── blue_locked.png │ │ │ │ ├── cape.png │ │ │ │ ├── crown.png │ │ │ │ ├── crown_locked.png │ │ │ │ ├── cyan.png │ │ │ │ ├── cyan_locked.png │ │ │ │ ├── gr.png │ │ │ │ ├── gr_locked.png │ │ │ │ ├── green.png │ │ │ │ ├── green_locked.png │ │ │ │ ├── lime.png │ │ │ │ ├── lime_locked.png │ │ │ │ ├── md.png │ │ │ │ ├── md_locked.png │ │ │ │ ├── orange.png │ │ │ │ ├── orange_locked.png │ │ │ │ ├── pink.png │ │ │ │ ├── pink_locked.png │ │ │ │ ├── purple.png │ │ │ │ ├── purple_locked.png │ │ │ │ ├── red.png │ │ │ │ ├── red_locked.png │ │ │ │ ├── sot.png │ │ │ │ ├── sot_locked.png │ │ │ │ ├── yellow.png │ │ │ │ └── yellow_locked.png │ │ │ ├── jens_agnes │ │ │ │ ├── agnes.json │ │ │ │ ├── agnes.png │ │ │ │ ├── agnes_exit.png │ │ │ │ ├── jens.json │ │ │ │ ├── jens.png │ │ │ │ └── jens_exit.png │ │ │ ├── locked_red.png │ │ │ ├── map.png │ │ │ ├── medal.png │ │ │ ├── medal_bronze.png │ │ │ ├── medal_gold.png │ │ │ ├── medal_silver.png │ │ │ ├── noxcrew.png │ │ │ ├── quest_log.png │ │ │ ├── quest_mastery.png │ │ │ ├── sand_timer.png │ │ │ ├── score.png │ │ │ ├── scrapper.png │ │ │ ├── select_all_traps.png │ │ │ ├── shield.png │ │ │ ├── skull.png │ │ │ ├── teleport │ │ │ │ ├── button_default.json │ │ │ │ ├── button_default.png │ │ │ │ ├── button_hover.json │ │ │ │ ├── button_hover.png │ │ │ │ ├── close_button_default.png │ │ │ │ ├── map_background.json │ │ │ │ ├── map_background.png │ │ │ │ ├── map_title_cell.json │ │ │ │ ├── map_title_cell.png │ │ │ │ ├── modal_background_cell.json │ │ │ │ ├── modal_background_cell.png │ │ │ │ ├── secondary_content_cell.json │ │ │ │ └── secondary_content_cell.png │ │ │ ├── time.png │ │ │ ├── timer_started.png │ │ │ ├── trail_small.png │ │ │ ├── trap_enabled.png │ │ │ ├── unlock │ │ │ │ ├── bar.json │ │ │ │ ├── bar.png │ │ │ │ ├── border_cell.png │ │ │ │ ├── border_cell_bottom.png │ │ │ │ ├── button.json │ │ │ │ ├── button.png │ │ │ │ ├── glow.png │ │ │ │ ├── secondary_content_cell.json │ │ │ │ └── secondary_content_cell.png │ │ │ ├── vendor.png │ │ │ ├── vendor │ │ │ │ ├── border_cell.json │ │ │ │ ├── border_cell.png │ │ │ │ ├── item_bottom.json │ │ │ │ ├── item_bottom.png │ │ │ │ ├── item_bottom_hover.json │ │ │ │ ├── item_bottom_hover.png │ │ │ │ ├── item_top.json │ │ │ │ ├── item_top.png │ │ │ │ ├── item_top_hover.json │ │ │ │ ├── item_top_hover.png │ │ │ │ ├── secondary_content_cell.json │ │ │ │ └── secondary_content_cell.png │ │ │ └── warning_blue.png │ │ │ ├── player_preview_border.png │ │ │ ├── recipe_back_panel.png │ │ │ ├── recipe_book_button_borderless_light.png │ │ │ ├── recipe_book_button_borderless_lightpressednohover.png │ │ │ ├── recipe_book_pane_bg.json │ │ │ ├── recipe_book_pane_bg.png │ │ │ ├── selected_hotbar_slot.png │ │ │ ├── title.png │ │ │ ├── toolbar_background.png │ │ │ ├── village_hero_effect.png │ │ │ ├── water_breathing_effect.png │ │ │ ├── white_pixel.png │ │ │ └── x_dropdown_hover.png │ │ └── ui │ │ ├── _global_variables.json │ │ ├── _ui_defs.json │ │ ├── chat_screen.json │ │ ├── hud_screen.json │ │ ├── noxcrew │ │ ├── challenge_info.json │ │ ├── challenge_list.json │ │ ├── common_modal_ui.json │ │ ├── cosmetic_modal.json │ │ ├── fake_subtitle.json │ │ ├── game_bar.json │ │ ├── game_toast.json │ │ ├── jens_agnes.json │ │ ├── quick_travel_modal.json │ │ ├── unlock_screen.json │ │ └── vendor_modal.json │ │ ├── npc_interact_screen.json │ │ ├── server_form.json │ │ ├── ui_common.json │ │ ├── ui_template_buttons.json │ │ └── ui_template_dialogs.json ├── world_behavior_pack_history.json ├── world_behavior_packs.json ├── world_icon.jpeg ├── world_resource_pack_history.json └── world_resource_packs.json └── world_template ├── manifest.json └── world_icon.jpeg /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.gitignore -------------------------------------------------------------------------------- /.mcattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.mcattributes -------------------------------------------------------------------------------- /.mcdefinitions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.mcdefinitions -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/README.md -------------------------------------------------------------------------------- /README_zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/README_zh_CN.md -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/creator_ace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/creator_ace.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/creator_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/creator_grid.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/creator_melt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/creator_melt.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/creator_mojang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/creator_mojang.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/creator_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/creator_sand.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.-17179869182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.-17179869182.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.-17179869183.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.-17179869183.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.-4294967127.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.-4294967127.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.-8589934579.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.-8589934579.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.-8589934580.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.-8589934580.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.-8589934581.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.-8589934581.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.-8589934582.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.-8589934582.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/floating_text.21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/floating_text.21.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/frog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/frog.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/join_queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/join_queue.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/puzzle_helper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/puzzle_helper.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/start_game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/start_game.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/vendor_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/vendor_food.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/vendor_hat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/vendor_hat.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/vendor_mascot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/vendor_mascot.json -------------------------------------------------------------------------------- /behavior_packs/mccr/dialogue/vendor_toys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/dialogue/vendor_toys.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/balloon_helium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/balloon_helium.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/disco_ball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/disco_ball.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/floating_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/floating_text.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/md_blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/md_blaze.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/md_skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/md_skeleton.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/md_spider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/md_spider.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/md_v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/md_v.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/md_zombie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/md_zombie.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/player.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/seat.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/seat.entity.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/start_btn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/start_btn.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/vanilla_vindictor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/vanilla_vindictor.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/vendor_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/vendor_food.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/vendor_hat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/vendor_hat.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/vendor_mascot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/vendor_mascot.json -------------------------------------------------------------------------------- /behavior_packs/mccr/entities/vendor_toys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/entities/vendor_toys.json -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/challenges/puzzles/3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/challenges/puzzles/3.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/challenges/puzzles/index.mcfunction: -------------------------------------------------------------------------------- 1 | function challenges/puzzles/3 -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/frog.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/frog.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/ace_race.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/ace_race.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/boost.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/boost.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/coins.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/coins.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/elytra.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/elytra.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/elytra_gates.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/elytra_gates.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/gr.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/gr.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/index.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/index.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/meltdown.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/meltdown.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/on_tick.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/on_tick.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/portals.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/portals.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/return.mcfunction: -------------------------------------------------------------------------------- 1 | tp 2157.16 110.00 2130.42 -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/mccr/sot.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/functions/mccr/sot.mcfunction -------------------------------------------------------------------------------- /behavior_packs/mccr/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": ["mccr/index"] 3 | } 4 | -------------------------------------------------------------------------------- /behavior_packs/mccr/items/noxcrew.ft/celebration_fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/items/noxcrew.ft/celebration_fireworks.json -------------------------------------------------------------------------------- /behavior_packs/mccr/items/noxcrew.ft/freezing_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/items/noxcrew.ft/freezing_bow.json -------------------------------------------------------------------------------- /behavior_packs/mccr/items/noxcrew.ft/party_cake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/items/noxcrew.ft/party_cake.json -------------------------------------------------------------------------------- /behavior_packs/mccr/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/manifest.json -------------------------------------------------------------------------------- /behavior_packs/mccr/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/behavior_packs/mccr/pack_icon.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /floating_texts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/floating_texts.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/logo.png -------------------------------------------------------------------------------- /mcdata/ar.mcdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/mcdata/ar.mcdata -------------------------------------------------------------------------------- /mcdata/gr.mcdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/mcdata/gr.mcdata -------------------------------------------------------------------------------- /mcdata/meltdown.mcdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/mcdata/meltdown.mcdata -------------------------------------------------------------------------------- /mcdata/sot.mcdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/mcdata/sot.mcdata -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/package.json -------------------------------------------------------------------------------- /resource_packs/mccr/attachables/bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/attachables/bow.json -------------------------------------------------------------------------------- /resource_packs/mccr/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/manifest.json -------------------------------------------------------------------------------- /resource_packs/mccr/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/pack_icon.png -------------------------------------------------------------------------------- /resource_packs/mccr/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/texts/en_US.lang -------------------------------------------------------------------------------- /resource_packs/mccr/texts/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/texts/languages.json -------------------------------------------------------------------------------- /resource_packs/mccr/texts/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/texts/zh_CN.lang -------------------------------------------------------------------------------- /resource_packs/mccr/texts/zh_TW.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/texts/zh_TW.lang -------------------------------------------------------------------------------- /resource_packs/mccr/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/textures/item_texture.json -------------------------------------------------------------------------------- /resource_packs/mccr/textures/mccr/meltdown/bow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/textures/mccr/meltdown/bow_pulling_0.png -------------------------------------------------------------------------------- /resource_packs/mccr/textures/mccr/meltdown/bow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/textures/mccr/meltdown/bow_pulling_1.png -------------------------------------------------------------------------------- /resource_packs/mccr/textures/mccr/meltdown/bow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/textures/mccr/meltdown/bow_pulling_2.png -------------------------------------------------------------------------------- /resource_packs/mccr/textures/mccr/meltdown/bow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/textures/mccr/meltdown/bow_standby.png -------------------------------------------------------------------------------- /resource_packs/mccr/ui/_global_variables.json: -------------------------------------------------------------------------------- 1 | { 2 | "$mccr_is_pre_release": true 3 | } 4 | -------------------------------------------------------------------------------- /resource_packs/mccr/ui/_ui_defs.json: -------------------------------------------------------------------------------- 1 | { 2 | "ui_defs": ["ui/hud_screen.json"] 3 | } 4 | -------------------------------------------------------------------------------- /resource_packs/mccr/ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/resource_packs/mccr/ui/hud_screen.json -------------------------------------------------------------------------------- /scripts/challenges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/challenges.ts -------------------------------------------------------------------------------- /scripts/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/components.ts -------------------------------------------------------------------------------- /scripts/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/data.ts -------------------------------------------------------------------------------- /scripts/data/ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/data/ar.ts -------------------------------------------------------------------------------- /scripts/data/gr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/data/gr.ts -------------------------------------------------------------------------------- /scripts/data/meltdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/data/meltdown.ts -------------------------------------------------------------------------------- /scripts/data/sot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/data/sot.ts -------------------------------------------------------------------------------- /scripts/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/debug/index.ts -------------------------------------------------------------------------------- /scripts/debug/scripts/challenges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/debug/scripts/challenges.ts -------------------------------------------------------------------------------- /scripts/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/environment.ts -------------------------------------------------------------------------------- /scripts/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/flags.ts -------------------------------------------------------------------------------- /scripts/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/game.ts -------------------------------------------------------------------------------- /scripts/gameData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/gameData.ts -------------------------------------------------------------------------------- /scripts/games/ace_race.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/games/ace_race.ts -------------------------------------------------------------------------------- /scripts/games/gameInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/games/gameInstance.ts -------------------------------------------------------------------------------- /scripts/games/grid_runners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/games/grid_runners.ts -------------------------------------------------------------------------------- /scripts/games/meltdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/games/meltdown.ts -------------------------------------------------------------------------------- /scripts/games/sot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/games/sot.ts -------------------------------------------------------------------------------- /scripts/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/global.d.ts -------------------------------------------------------------------------------- /scripts/inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/inventory.ts -------------------------------------------------------------------------------- /scripts/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/lang.ts -------------------------------------------------------------------------------- /scripts/langfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/langfile.ts -------------------------------------------------------------------------------- /scripts/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/logger.ts -------------------------------------------------------------------------------- /scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/main.ts -------------------------------------------------------------------------------- /scripts/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/math.ts -------------------------------------------------------------------------------- /scripts/minecraft/math/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/minecraft/math/clamp.ts -------------------------------------------------------------------------------- /scripts/minecraft/math/coreHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/minecraft/math/coreHelpers.ts -------------------------------------------------------------------------------- /scripts/minecraft/math/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/minecraft/math/index.ts -------------------------------------------------------------------------------- /scripts/minecraft/math/vectorWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/minecraft/math/vectorWrapper.ts -------------------------------------------------------------------------------- /scripts/patches.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/patches.d.ts -------------------------------------------------------------------------------- /scripts/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/plugin.ts -------------------------------------------------------------------------------- /scripts/puzzles/puzzle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/puzzles/puzzle.ts -------------------------------------------------------------------------------- /scripts/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/queue.ts -------------------------------------------------------------------------------- /scripts/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/record.ts -------------------------------------------------------------------------------- /scripts/rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/rule.ts -------------------------------------------------------------------------------- /scripts/sound.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/sound.ts -------------------------------------------------------------------------------- /scripts/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/text.ts -------------------------------------------------------------------------------- /scripts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/types.ts -------------------------------------------------------------------------------- /scripts/ui/gamebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/ui/gamebar.ts -------------------------------------------------------------------------------- /scripts/ui/gametoast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/ui/gametoast.ts -------------------------------------------------------------------------------- /scripts/ui/screens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/ui/screens.ts -------------------------------------------------------------------------------- /scripts/ui/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/ui/title.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /tools/cmdGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/tools/cmdGenerator.py -------------------------------------------------------------------------------- /tools/floatingTextDG.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/tools/floatingTextDG.cjs -------------------------------------------------------------------------------- /tools/genTranslatedDialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/tools/genTranslatedDialogue.py -------------------------------------------------------------------------------- /tools/lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/tools/lang.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/tsconfig.json -------------------------------------------------------------------------------- /world/behavior_packs/MCC x Minecraft/animations/hub_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/behavior_packs/MCC x Minecraft/animations/hub_door.json -------------------------------------------------------------------------------- /world/behavior_packs/MCC x Minecraft/entities/player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/behavior_packs/MCC x Minecraft/entities/player.json -------------------------------------------------------------------------------- /world/behavior_packs/MCC x Minecraft/functions/tick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/behavior_packs/MCC x Minecraft/functions/tick.json -------------------------------------------------------------------------------- /world/behavior_packs/MCC x Minecraft/items/noxcrew.ft/egg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/behavior_packs/MCC x Minecraft/items/noxcrew.ft/egg.json -------------------------------------------------------------------------------- /world/behavior_packs/MCC x Minecraft/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/behavior_packs/MCC x Minecraft/manifest.json -------------------------------------------------------------------------------- /world/db/003846.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003846.ldb -------------------------------------------------------------------------------- /world/db/003848.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003848.ldb -------------------------------------------------------------------------------- /world/db/003851.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003851.ldb -------------------------------------------------------------------------------- /world/db/003852.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /world/db/003870.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003870.log -------------------------------------------------------------------------------- /world/db/003871.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003871.ldb -------------------------------------------------------------------------------- /world/db/003893.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003893.log -------------------------------------------------------------------------------- /world/db/003895.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003895.ldb -------------------------------------------------------------------------------- /world/db/003946.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003946.log -------------------------------------------------------------------------------- /world/db/003948.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/003948.ldb -------------------------------------------------------------------------------- /world/db/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-003942 2 | -------------------------------------------------------------------------------- /world/db/MANIFEST-003850: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/MANIFEST-003850 -------------------------------------------------------------------------------- /world/db/MANIFEST-003868: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/MANIFEST-003868 -------------------------------------------------------------------------------- /world/db/MANIFEST-003872: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/MANIFEST-003872 -------------------------------------------------------------------------------- /world/db/MANIFEST-003884: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/MANIFEST-003884 -------------------------------------------------------------------------------- /world/db/MANIFEST-003942: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/db/MANIFEST-003942 -------------------------------------------------------------------------------- /world/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/level.dat -------------------------------------------------------------------------------- /world/level.dat_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/level.dat_old -------------------------------------------------------------------------------- /world/levelname.txt: -------------------------------------------------------------------------------- 1 | MCC X Minecraft §e§lReborn -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_0/manifest.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_0/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_0/pack_icon.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_0/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_0/sounds.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_0/textures/entity/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_0/textures/entity/arrows.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_0/textures/items/bow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_0/textures/items/bow_standby.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_1/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_1/manifest.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_1/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_1/pack_icon.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_1/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_1/sounds.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_1/textures/entity/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_1/textures/entity/arrows.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_1/textures/items/bow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_1/textures/items/bow_standby.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_2/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_2/manifest.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_2/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_2/pack_icon.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_2/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_2/sounds.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_2/textures/entity/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_2/textures/entity/arrows.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_2/textures/items/bow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_2/textures/items/bow_standby.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_3/manifest.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_3/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_3/pack_icon.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_3/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_3/sounds.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_3/textures/entity/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_3/textures/entity/arrows.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_3/textures/items/bow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_3/textures/items/bow_standby.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_4/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_4/manifest.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_4/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_4/pack_icon.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_4/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_4/sounds.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_4/textures/entity/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_4/textures/entity/arrows.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_4/textures/items/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_4/textures/items/arrow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_4/textures/items/bow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_4/textures/items/bow_standby.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/.mcattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/.mcattributes -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/README.md -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/animations/blaze.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/animations/blaze.animation.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/animations/coins.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/animations/coins.animation.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/animations/coins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/animations/coins.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/animations/hats.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/animations/hats.animation.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/animations/ice.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/animations/ice.animation.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/attachables/balloon_animal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/attachables/balloon_animal.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/attachables/foam_finger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/attachables/foam_finger.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/attachables/hats/hat_party.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/attachables/hats/hat_party.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/attachables/party_popper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/attachables/party_popper.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/attachables/pizza_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/attachables/pizza_box.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/attachables/silly_horn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/attachables/silly_horn.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/biomes_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/biomes_client.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/blocks.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/advert.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/advert.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/animator.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/animator.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/arrows.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/biome_icon.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/biome_icon.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/checkpoint.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/checkpoint.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/gr/lost_pearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/gr/lost_pearl.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/gr/paint_pot.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/gr/paint_pot.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/hub/hub_coin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/hub/hub_coin.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/keyart.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/keyart.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/scoreboard.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/scoreboard.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/socials.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/socials.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/sot/coin_stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/sot/coin_stack.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/entity/ui_popup.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/entity/ui_popup.entity.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/fogs/ace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/fogs/ace.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/fogs/grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/fogs/grid.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/fogs/hub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/fogs/hub.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/fogs/melt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/fogs/melt.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/fogs/sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/fogs/sand.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/font/glyph_E1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/font/glyph_E1.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/items/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/items/arrow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/items/bow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/items/bow_pulling_0.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/items/bow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/items/bow_pulling_1.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/items/bow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/items/bow_pulling_2.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/items/bow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/items/bow_standby.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/manifest.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/materials/entity.material -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/models/blocks/fake_pot.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/models/blocks/fake_pot.geo.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/models/blocks/iron_bars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/models/blocks/iron_bars.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/models/blocks/iron_bars_c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/models/blocks/iron_bars_c.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/models/blocks/iron_bars_h.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/models/blocks/iron_bars_h.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/models/blocks/rope_h.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/models/blocks/rope_h.geo.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/models/blocks/unit_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/models/blocks/unit_cube.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/models/blocks/window.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/models/blocks/window.geo.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/pack_icon.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/cake/1.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/cake/1.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/cake/2.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/cake/2.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/cake/3.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/cake/3.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/cake/4.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/cake/4.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/collect.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/collect.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/dusting.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/dusting.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/gr_pipe.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/gr_pipe.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/horn.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/horn.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/melting.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/melting.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/particles/noxcrew.particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/particles/noxcrew.particle.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/castle_door.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/castle_door.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/checkpoint_pass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/checkpoint_pass.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/elytra_remove.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/elytra_remove.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/elytra_zone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/elytra_zone.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/jump1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/jump1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/jump2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/jump2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/jump3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/jump3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/jump_alert.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/jump_alert.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/launch1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/launch1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/launch2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/launch2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/launch3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/launch3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/music/music_ar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/music/music_ar.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/speed1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/speed1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/speed2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/speed2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/speed3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/speed3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/ar/tutorial_ring.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/ar/tutorial_ring.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.1_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.1_0.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.2_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.2_0.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.2_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.2_1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.3_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.3_0.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.4_0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/dialogue/jagnes.4_0.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/321.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/321.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/bigcoins.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/bigcoins.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/cape_reward.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/cape_reward.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/death.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/go.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/go.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/leave_game.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/leave_game.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/purchase.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/purchase.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/reward_claim.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/reward_claim.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/smallcoins.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/smallcoins.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/general/trash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/general/trash.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/blastoff.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/blastoff.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/cake_candle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/cake_candle.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/cake_cherries.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/cake_cherries.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/cake_complete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/cake_complete.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/cake_disappear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/cake_disappear.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/cake_eat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/cake_eat.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/cake_icing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/cake_icing.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/cake_sponge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/cake_sponge.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/finish.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/finish.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/food_correct.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/food_correct.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/gate_open_short.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/gate_open_short.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/music/music_gr.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/music/music_gr.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/paintbrush_fire1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/paintbrush_fire1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/paintbrush_fire2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/paintbrush_fire2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/paintbrush_fire3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/paintbrush_fire3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/paintpot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/paintpot.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/pipe_suck_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/pipe_suck_start.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/pipe_teleport.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/pipe_teleport.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/room_beast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/room_beast.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/room_cake.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/room_cake.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/room_complete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/room_complete.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/gr/room_copy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/gr/room_copy.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/hub/ball_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/hub/ball_hit.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/hub/ball_pop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/hub/ball_pop.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/hub/balloon_helium.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/hub/balloon_helium.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/hub/disco_ball_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/hub/disco_ball_idle.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/hub/disco_ball_spawn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/hub/disco_ball_spawn.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/hub/music/music_hub.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/hub/music/music_hub.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/hub/squeak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/hub/squeak.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/items/balloon_animal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/items/balloon_animal.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/items/bubble_blower.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/items/bubble_blower.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/items/confetti_tag.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/items/confetti_tag.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/items/party_popper.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/items/party_popper.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/items/player_gift.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/items/player_gift.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/items/silly_horn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/items/silly_horn.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/enemy_shatter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/enemy_shatter.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/enemy_spawn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/enemy_spawn.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_fire1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_fire1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_fire2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_fire2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_fire3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_fire3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/freeze_bow_hit.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/meltdown_entrance.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/meltdown_entrance.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/meltdown_frozen.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/meltdown_frozen.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/music/music_md.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/music/music_md.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/md/room_clear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/md/room_clear.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/noxcrew.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/noxcrew.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/agnes_special1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/agnes_special1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/agnes_special2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/agnes_special2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/frog_special1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/frog_special1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/frog_special2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/frog_special2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/frog_special3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/frog_special3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/frog_special4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/frog_special4.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/frog_transform1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/frog_transform1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/frog_transform2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/frog_transform2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/hannah_special1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/hannah_special1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/hannah_special2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/hannah_special2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/hbomb_special1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/hbomb_special1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/hbomb_special2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/hbomb_special2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/jens_special1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/jens_special1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/jens_special2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/jens_special2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/smajor_special1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/smajor_special1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/smajor_special2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/smajor_special2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/vendor_food.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/vendor_food.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/vendor_hat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/vendor_hat.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/vendor_mascot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/vendor_mascot.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/npcs/vendor_toys.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/npcs/vendor_toys.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/key_pickup_gold.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/key_pickup_gold.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/key_pickup_vault.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/key_pickup_vault.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/lock_in.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/lock_in.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/music/music_sot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/music/music_sot.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/rescue.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/rescue.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sand_place1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sand_place1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sand_place2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sand_place2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sand_place3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sand_place3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sandtimer_10sec.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sandtimer_10sec.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sandtimer_20sec.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sandtimer_20sec.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sandtimer_30sec.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sandtimer_30sec.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sparkle1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sparkle1.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sparkle2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sparkle2.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sparkle3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sparkle3.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sparkle4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sparkle4.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sparkle5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sparkle5.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sparkle6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sparkle6.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/sparkle8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/sparkle8.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sot/teamvault_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sot/teamvault_open.ogg -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/sounds/sound_definitions.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/bg_BG.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/bg_BG.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/cs_CZ.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/cs_CZ.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/da_DK.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/da_DK.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/de_DE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/de_DE.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/el_GR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/el_GR.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/en_GB.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/en_GB.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/en_US.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/es_ES.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/es_ES.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/es_MX.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/es_MX.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/fi_FI.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/fi_FI.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/fr_CA.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/fr_CA.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/fr_FR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/fr_FR.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/hu_HU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/hu_HU.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/id_ID.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/id_ID.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/it_IT.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/it_IT.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/ja_JP.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/ja_JP.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/ko_KR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/ko_KR.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/languages.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/nb_NO.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/nb_NO.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/nl_NL.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/nl_NL.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/pl_PL.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/pl_PL.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/pt_BR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/pt_BR.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/pt_PT.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/pt_PT.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/ru_RU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/ru_RU.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/sk_SK.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/sk_SK.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/sv_SE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/sv_SE.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/tr_TR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/tr_TR.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/uk_UA.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/uk_UA.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/zh_CN.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/texts/zh_TW.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/texts/zh_TW.lang -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/audience/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/audience/1.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/audience/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/audience/2.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/audience/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/audience/3.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/audience/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/audience/4.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/audience/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/audience/5.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/audience/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/audience/6.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/audience/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/audience/7.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/azalea_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/azalea_side.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/azalea_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/azalea_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/barrel_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/barrel_side.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/barrel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/barrel_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/basalt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/basalt_side.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/basalt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/basalt_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/bedrock.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/beehive_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/beehive_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/blackstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/blackstone.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/blue_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/blue_ice.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/bookshelf.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/brick.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cactus_side.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cactus_side.tga -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cactus_top.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cactus_top.tga -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cake/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cake/centre.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cake/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cake/cherry.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cake/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cake/edge.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cake/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cake/sponge.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/calcite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/calcite.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/chain1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/chain1.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/chain2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/chain2.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/clay.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/coal_ore.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/coarse_dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/coarse_dirt.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cobblestone.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/copper_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/copper_ore.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/cut_copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/cut_copper.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/deadbush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/deadbush.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/diamond_ore.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/dirt.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/emerald_ore.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/end_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/end_bricks.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/end_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/end_rod.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/end_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/end_stone.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/flower_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/flower_pot.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/flower_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/flower_rose.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/furnace_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/furnace_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_black.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_blue.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_brown.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_cyan.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_gray.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_green.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_lime.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_pink.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_red.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glass_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glass_white.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glow_lichen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glow_lichen.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/glowstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/glowstone.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/gold_block.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/grass_side.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/grass_side.tga -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/grass_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/grass_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/gravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/gravel.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/honey_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/honey_side.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/honey_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/honey_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/honeycomb.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/hopper_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/hopper_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/ice.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/ice_packed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/ice_packed.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/iron_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/iron_bars.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/iron_block.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/iron_ore.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/ladder.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/lantern.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/lapis_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/lapis_block.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/lapis_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/lapis_ore.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/lava_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/lava_flow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/lava_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/lava_still.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/leaves_oak.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/leaves_oak.tga -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/log_acacia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/log_acacia.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/log_big_oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/log_big_oak.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/log_birch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/log_birch.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/log_jungle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/log_jungle.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/log_oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/log_oak.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/log_oak_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/log_oak_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/log_spruce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/log_spruce.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/logo/logo.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/magma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/magma.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/a.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/b.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/box.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/box_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/box_side.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/box_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/box_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/c.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/d.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/exit_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/exit_a.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/exit_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/exit_b.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/fan_vent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/fan_vent.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/g.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/vent_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/vent_a.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/md/vent_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/md/vent_b.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/moss_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/moss_block.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/mud_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/mud_bricks.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/netherrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/netherrack.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/pink_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/pink_petals.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/planks_oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/planks_oak.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/portal.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/pumpkin_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/pumpkin_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/rail_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/rail_normal.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/red_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/red_sand.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sand.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sea_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sea_lantern.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sea_pickle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sea_pickle.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/seagrass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/seagrass.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/shroomlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/shroomlight.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/slime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/slime.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/snow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/a.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/b.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/c.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/d.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/e.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/f.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/flower.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/g.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/h.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/i.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/j.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/k.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/l.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/m.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/n.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/o.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/p.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/q.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/r.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/s.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/sot/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/sot/t.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/soul_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/soul_sand.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/soul_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/soul_torch.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/stone.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/stonebrick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/stonebrick.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/tallgrass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/tallgrass.tga -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/tnt_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/tnt_bottom.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/tnt_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/tnt_side.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/tnt_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/tnt_top.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/torch.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/torch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/torch_on.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/trapdoor.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/tuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/tuff.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/vine.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/blocks/waterlily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/blocks/waterlily.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/colormap/birch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/colormap/birch.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/colormap/foliage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/colormap/foliage.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/colormap/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/colormap/grass.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/entity/n/hub/horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/entity/n/hub/horn.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/entity/n/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/entity/n/invisible.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/entity/sign_warped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/entity/sign_warped.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/flipbook_textures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/flipbook_textures.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/item_texture.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/items/fake_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/items/fake_bow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/items/gr/brush/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/items/gr/brush/red.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/items/gr/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/items/gr/egg.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/items/hub/popcorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/items/hub/popcorn.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/items/hub/teleport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/items/hub/teleport.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/items/leave_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/items/leave_game.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/15.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/ball_pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/ball_pop.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/cake_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/cake_1.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/cake_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/cake_2.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/cake_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/cake_3.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/click.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/coins.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/confetti.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/crown.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/feather.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/flame.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/horn.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/noxcrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/noxcrew.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/paint.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/pipe.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/pixel.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/poof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/poof.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/sparkle.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/particles/wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/particles/wrong.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/terrain_texture.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/StoreTopBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/StoreTopBar.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/TabLeftBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/TabLeftBack.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/TabLeftFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/TabLeftFront.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/TabRightBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/TabRightBack.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/TabRightFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/TabRightFront.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/TabTopBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/TabTopBack.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/TabTopBackHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/TabTopBackHover.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/TabTopFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/TabTopFront.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/armor_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/armor_empty.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/armor_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/armor_full.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/armor_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/armor_half.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/arrow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/arrow_down.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/bad_omen_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/bad_omen_effect.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/banners2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/banners2.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/banners2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/banners2.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/bubble.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/bubble_pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/bubble_pop.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/cell_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/cell_image.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/chat_down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/chat_down_arrow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/chat_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/chat_keyboard.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/craft_toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/craft_toggle_on.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/dialog_bubble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/dialog_bubble.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/dialog_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/dialog_bubble.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/edit_box_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/edit_box_indent.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/experiencenub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/experiencenub.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/greyBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/greyBorder.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/header_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/header_bar.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/heart.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/heart_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/heart_half.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/highlight_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/highlight_slot.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_0.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_1.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_2.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_3.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_4.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_5.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_6.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_7.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_8.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_end_cap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_end_cap.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/hotbar_end_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/hotbar_end_cap.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/icon_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/icon_expand.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/challenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/challenge.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/coin.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/complete/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/complete/bar.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/complete/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/complete/bar.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/complete/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/complete/dark.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/complete/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/complete/glow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/cosmetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/cosmetic.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/crown.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/finish_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/finish_flag.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/game/ace_race.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/game/ace_race.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/game/hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/game/hub.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/game/meltdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/game/meltdown.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/game/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/game/trophy.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/aqua.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/ar.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/blue.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/cyan.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/gr.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/green.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/lime.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/md.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/orange.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/pink.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/purple.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/red.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/sot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/sot.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_info/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_info/yellow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/aqua.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/ar.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/blue.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/cyan.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/gr.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/green.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/lime.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/md.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/orange.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/pink.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/purple.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/red.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/sot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/sot.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_list/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_list/yellow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/aqua.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/ar.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/blue.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/cape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/cape.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/cyan.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/gr.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/lime.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/md.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/pink.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/red.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/sot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/i_reward/sot.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/locked_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/locked_red.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/map.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/medal.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/medal_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/medal_bronze.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/medal_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/medal_gold.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/medal_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/medal_silver.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/noxcrew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/noxcrew.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/quest_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/quest_log.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/quest_mastery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/quest_mastery.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/sand_timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/sand_timer.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/score.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/scrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/scrapper.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/shield.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/skull.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/time.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/timer_started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/timer_started.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/trail_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/trail_small.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/trap_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/trap_enabled.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/unlock/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/unlock/bar.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/unlock/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/unlock/bar.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/unlock/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/unlock/button.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/unlock/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/unlock/glow.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/vendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/vendor.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/n/warning_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/n/warning_blue.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/title.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/textures/ui/white_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/textures/ui/white_pixel.png -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/_global_variables.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/_ui_defs.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/chat_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/chat_screen.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/hud_screen.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/noxcrew/challenge_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/noxcrew/challenge_info.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/noxcrew/game_bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/noxcrew/game_bar.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/noxcrew/game_toast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/noxcrew/game_toast.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/noxcrew/jens_agnes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/noxcrew/jens_agnes.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/noxcrew/vendor_modal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/noxcrew/vendor_modal.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/npc_interact_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/npc_interact_screen.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/server_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/server_form.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/ui_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/ui_common.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/ui_template_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/ui_template_buttons.json -------------------------------------------------------------------------------- /world/resource_packs/MCCxMine_5/ui/ui_template_dialogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/resource_packs/MCCxMine_5/ui/ui_template_dialogs.json -------------------------------------------------------------------------------- /world/world_behavior_pack_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/world_behavior_pack_history.json -------------------------------------------------------------------------------- /world/world_behavior_packs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/world_behavior_packs.json -------------------------------------------------------------------------------- /world/world_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/world_icon.jpeg -------------------------------------------------------------------------------- /world/world_resource_pack_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/world_resource_pack_history.json -------------------------------------------------------------------------------- /world/world_resource_packs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world/world_resource_packs.json -------------------------------------------------------------------------------- /world_template/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world_template/manifest.json -------------------------------------------------------------------------------- /world_template/world_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Howie114514/MCCxMinecraftReborn/HEAD/world_template/world_icon.jpeg --------------------------------------------------------------------------------