├── config ├── ModernUI │ ├── bootstrap │ └── server.toml ├── ironfurnaces.toml ├── spark │ └── activity.json ├── ichunutil │ └── head │ │ ├── 5.extracted │ │ ├── VexEntity.json │ │ ├── GiantEntity.json │ │ ├── ZombieEntity.json │ │ ├── Twilight Forest │ │ ├── EntityTFWraith.json │ │ └── EntityTFGiantMiner.json │ │ ├── Statues │ │ └── PlayerStatueEntity.json │ │ ├── AbstractSkeletonEntity.json │ │ ├── Greek Fantasy │ │ └── ShadeEntity.json │ │ ├── Exotic Birds │ │ └── EntityBooby.json │ │ └── Atum │ │ ├── PharaohEntity.json │ │ ├── WarlordEntity.json │ │ └── WraithEntity.json ├── pipez-client.toml ├── illageandspillage-client.toml ├── worleycaves-client.toml ├── bountifulbaubles-client.toml ├── inventoryprofilesnext │ └── 新的世界 │ │ └── lockSlots.txt ├── loading.png ├── cucumber-tags.json ├── emcworld-client-1.toml.bak ├── emcworld-client.toml ├── savageandravage-client.toml ├── ProjectE │ └── custom_emc.json ├── litewolfcore-client.toml ├── extendedcrafting-client.toml ├── MouseTweaks.cfg ├── good_nights_sleep-common.toml └── mythicbotany-client.toml ├── scripts ├── start.zs └── loot_tables │ └── emcworld │ └── util.zs ├── .github └── ISSUE_TEMPLATE │ └── config.yml ├── LICENSE └── src ├── test └── java │ └── raid.xlsx └── main ├── resources ├── assets │ ├── packmenu │ │ ├── texts │ │ │ └── supporters.txt │ │ ├── lang │ │ │ └── en_us.json │ │ ├── textures │ │ │ └── gui │ │ │ │ ├── logo.png │ │ │ │ ├── reload.png │ │ │ │ ├── widgets.png │ │ │ │ ├── aklizbutton.png │ │ │ │ └── background.png │ │ └── buttons │ │ │ └── quit.json │ ├── emcworld │ │ ├── models │ │ │ ├── item │ │ │ │ ├── cold_ore.json │ │ │ │ ├── emc_ore.json │ │ │ │ ├── top_core.json │ │ │ │ ├── emc_flower.json │ │ │ │ ├── emc_super.json │ │ │ │ ├── indium_ore.json │ │ │ │ ├── nickel_ore.json │ │ │ │ ├── silver_ore.json │ │ │ │ ├── sunlit_ore.json │ │ │ │ ├── test_block.json │ │ │ │ ├── aluminum_ore.json │ │ │ │ ├── drystone_ore.json │ │ │ │ ├── emc_ore_core.json │ │ │ │ ├── end_emc_ore.json │ │ │ │ ├── gemstone_core.json │ │ │ │ ├── infuser_core.json │ │ │ │ ├── magnesium_ore.json │ │ │ │ ├── prefix_core.json │ │ │ │ ├── rich_emc_ore.json │ │ │ │ ├── star_pedestal.json │ │ │ │ ├── titanium_ore.json │ │ │ │ ├── tungsten_ore.json │ │ │ │ ├── aquamarine_ore.json │ │ │ │ ├── chlorophyte_ore.json │ │ │ │ ├── emc_core_puller.json │ │ │ │ ├── hardcore_stone.json │ │ │ │ ├── nether_emc_ore.json │ │ │ │ ├── orichalcos_ore.json │ │ │ │ ├── profession_core.json │ │ │ │ ├── update_base_red.json │ │ │ │ ├── update_cost_red.json │ │ │ │ ├── update_time_red.json │ │ │ │ ├── emc_core_assembler.json │ │ │ │ ├── emc_core_generator.json │ │ │ │ ├── emc_core_puncher.json │ │ │ │ ├── end_rich_emc_ore.json │ │ │ │ ├── steel_furnace_core.json │ │ │ │ ├── update_addon_blue.json │ │ │ │ ├── update_addon_cyan.json │ │ │ │ ├── update_addon_green.json │ │ │ │ ├── update_addon_red.json │ │ │ │ ├── update_base_blue.json │ │ │ │ ├── update_base_cyan.json │ │ │ │ ├── update_base_green.json │ │ │ │ ├── update_base_orange.json │ │ │ │ ├── update_base_purple.json │ │ │ │ ├── update_base_yellow.json │ │ │ │ ├── update_cost_blue.json │ │ │ │ ├── update_cost_cyan.json │ │ │ │ ├── update_cost_green.json │ │ │ │ ├── update_cost_orange.json │ │ │ │ ├── update_cost_purple.json │ │ │ │ ├── update_cost_yellow.json │ │ │ │ ├── update_time_blue.json │ │ │ │ ├── update_time_cyan.json │ │ │ │ ├── update_time_green.json │ │ │ │ ├── update_time_orange.json │ │ │ │ ├── update_time_purple.json │ │ │ │ ├── update_time_yellow.json │ │ │ │ ├── advanced_update_core.json │ │ │ │ ├── control_update_core.json │ │ │ │ ├── steel_furnace_brick.json │ │ │ │ ├── update_addon_orange.json │ │ │ │ ├── update_addon_purple.json │ │ │ │ ├── update_addon_yellow.json │ │ │ │ ├── vis_conversion_core.json │ │ │ │ ├── weapon_upgrade_core.json │ │ │ │ ├── ultimate_induction_cell.json │ │ │ │ ├── update_addon_bx_purple.json │ │ │ │ ├── update_base_bx_purple.json │ │ │ │ ├── update_cost_bx_purple.json │ │ │ │ ├── update_time_bx_purple.json │ │ │ │ ├── money.json │ │ │ │ ├── base_key.json │ │ │ │ ├── creation.json │ │ │ │ ├── emc_core.json │ │ │ │ ├── emc_leaf.json │ │ │ │ ├── fxt_xy.json │ │ │ │ ├── lottery.json │ │ │ │ ├── mooncake.json │ │ │ │ ├── super_star.json │ │ │ │ ├── tangyuan.json │ │ │ │ ├── unequal.json │ │ │ │ ├── voucher.json │ │ │ │ ├── zongzi.json │ │ │ │ ├── air_bucket.json │ │ │ │ ├── blood_eye.json │ │ │ │ ├── blue_matter.json │ │ │ │ ├── broken_gun.json │ │ │ │ ├── chara_sword.json │ │ │ │ ├── clay_matter.json │ │ │ │ ├── clump_cold.json │ │ │ │ ├── cold_ingot.json │ │ │ │ ├── cyan_matter.json │ │ │ │ ├── dark_stone.json │ │ │ │ ├── demon_dust.json │ │ │ │ ├── dust_cold.json │ │ │ │ ├── emc_check.json │ │ │ │ ├── end_light.json │ │ │ │ ├── evil_book.json │ │ │ │ ├── fading_matter.json │ │ │ │ ├── flying_gem.json │ │ │ │ ├── gaia_dagger.json │ │ │ │ ├── gaia_staff.json │ │ │ │ ├── gaia_sword.json │ │ │ │ ├── god_fire_sword.json │ │ │ │ ├── god_ice_sword.json │ │ │ │ ├── gold_medal.json │ │ │ │ ├── green_matter.json │ │ │ │ ├── guide_book.json │ │ │ │ ├── hard_steel.json │ │ │ │ ├── hero_medal.json │ │ │ │ ├── ice_cream.json │ │ │ │ ├── lime_matter.json │ │ │ │ ├── nether_key.json │ │ │ │ ├── orange_matter.json │ │ │ │ ├── pink_matter.json │ │ │ │ ├── purple_matter.json │ │ │ │ ├── quest_item.json │ │ │ │ ├── raid_light.json │ │ │ │ ├── rune_ingot.json │ │ │ │ ├── scroll_bx.json │ │ │ │ ├── scroll_red.json │ │ │ │ ├── shard_cold.json │ │ │ │ ├── violet_matter.json │ │ │ │ ├── white_matter.json │ │ │ │ ├── year_cake.json │ │ │ │ ├── yellow_matter.json │ │ │ │ ├── abunana_loot.json │ │ │ │ ├── ancient_icon.json │ │ │ │ ├── big_emc_gem.json │ │ │ │ ├── bright_stone.json │ │ │ │ ├── broken_dagger.json │ │ │ │ ├── broken_hammer.json │ │ │ │ ├── clump_emc_gem.json │ │ │ │ ├── clump_gobber.json │ │ │ │ ├── clump_indium.json │ │ │ │ ├── clump_nickel.json │ │ │ │ ├── clump_rainbow.json │ │ │ │ ├── clump_rupee.json │ │ │ │ ├── clump_silver.json │ │ │ │ ├── clump_sunlit.json │ │ │ │ ├── clump_zitrite.json │ │ │ │ ├── copper_medal.json │ │ │ │ ├── crystal_cold.json │ │ │ │ ├── dragon_steel.json │ │ │ │ ├── dust_aluminum.json │ │ │ │ ├── dust_cloggrum.json │ │ │ │ ├── dust_drystone.json │ │ │ │ ├── dust_emc_gem.json │ │ │ │ ├── dust_gobber.json │ │ │ │ ├── dust_indium.json │ │ │ │ ├── dust_nickel.json │ │ │ │ ├── dust_rainbow.json │ │ │ │ ├── dust_regalium.json │ │ │ │ ├── dust_rupee.json │ │ │ │ ├── dust_silver.json │ │ │ │ ├── dust_sunlit.json │ │ │ │ ├── dust_titanium.json │ │ │ │ ├── dust_utherium.json │ │ │ │ ├── dust_zitrite.json │ │ │ │ ├── emc_healing_bag.json │ │ │ │ ├── enriched_iron.json │ │ │ │ ├── epic_emc_gem.json │ │ │ │ ├── epic_essence.json │ │ │ │ ├── fantasy_gem.json │ │ │ │ ├── final_essence.json │ │ │ │ ├── gaia_nugget.json │ │ │ │ ├── god_nature_sword.json │ │ │ │ ├── ham_bat.json │ │ │ │ ├── illager_gem.json │ │ │ │ ├── illager_shard.json │ │ │ │ ├── indium_ingot.json │ │ │ │ ├── infuse_core.json │ │ │ │ ├── lake_gemstone.json │ │ │ │ ├── lucky_gem_red.json │ │ │ │ ├── magenta_matter.json │ │ │ │ ├── nature_ingot.json │ │ │ │ ├── nickel_ingot.json │ │ │ │ ├── niobium_ingot.json │ │ │ │ ├── nopower_staff.json │ │ │ │ ├── nuclear_ball.json │ │ │ │ ├── prefix_scroll.json │ │ │ │ ├── rainbow_ingot.json │ │ │ │ ├── rainbow_sword.json │ │ │ │ ├── reset_scroll.json │ │ │ │ ├── scroll_blue.json │ │ │ │ ├── scroll_gaia.json │ │ │ │ ├── scroll_gold.json │ │ │ │ ├── scroll_green.json │ │ │ │ ├── scroll_purple.json │ │ │ │ ├── scroll_tulye.json │ │ │ │ ├── scroll_white.json │ │ │ │ ├── shard_emc_gem.json │ │ │ │ ├── shard_gobber.json │ │ │ │ ├── shard_indium.json │ │ │ │ ├── shard_nickel.json │ │ │ │ ├── shard_rainbow.json │ │ │ │ ├── shard_rupee.json │ │ │ │ ├── shard_silver.json │ │ │ │ ├── shard_sunlit.json │ │ │ │ ├── shard_zitrite.json │ │ │ │ ├── silver_ingot.json │ │ │ │ ├── silver_medal.json │ │ │ │ ├── skill_item1.json │ │ │ │ ├── skill_item2.json │ │ │ │ ├── small_emc_gem.json │ │ │ │ ├── stone_ingot.json │ │ │ │ ├── stone_shard.json │ │ │ │ ├── sunlit_ingot.json │ │ │ │ ├── super_emc_gem.json │ │ │ │ ├── twilight_key.json │ │ │ │ ├── unreal_metal.json │ │ │ │ ├── wooden_ingot.json │ │ │ │ └── wooden_staff.json │ │ │ └── block │ │ │ │ ├── cold_ore_model.json │ │ │ │ ├── top_core_model.json │ │ │ │ ├── emc_flower_model.json │ │ │ │ ├── emc_ore_model.json │ │ │ │ ├── indium_ore_model.json │ │ │ │ ├── nickel_ore_model.json │ │ │ │ ├── prefix_core_model.json │ │ │ │ ├── silver_ore_model.json │ │ │ │ ├── sunlit_ore_model.json │ │ │ │ ├── test_block_model.json │ │ │ │ ├── aluminum_ore_model.json │ │ │ │ ├── drystone_ore_model.json │ │ │ │ ├── gemstone_core_model.json │ │ │ │ ├── infuser_core_model.json │ │ │ │ ├── magnesium_ore_model.json │ │ │ │ ├── titanium_ore_model.json │ │ │ │ └── tungsten_ore_model.json │ │ ├── textures │ │ │ ├── item │ │ │ │ ├── gaia_staff.png.mcmeta │ │ │ │ ├── iron_staff.png.mcmeta │ │ │ │ ├── diamond_staff.png.mcmeta │ │ │ │ ├── golden_staff.png.mcmeta │ │ │ │ ├── netherite_staff.png.mcmeta │ │ │ │ ├── purple_staff.png.mcmeta │ │ │ │ ├── stone_staff.png.mcmeta │ │ │ │ ├── ultimate_singularity.png.mcmeta │ │ │ │ ├── wooden_staff.png.mcmeta │ │ │ │ ├── rainbow_staff.png.mcmeta │ │ │ │ ├── fxt_xy.png.mcmeta │ │ │ │ ├── skill_item1.png.mcmeta │ │ │ │ ├── skill_item2.png.mcmeta │ │ │ │ ├── unreal_metal.png.mcmeta │ │ │ │ ├── emc_core.png.mcmeta │ │ │ │ ├── gaia_nugget.png.mcmeta │ │ │ │ ├── super_emc_gem.png.mcmeta │ │ │ │ ├── epic_emc_gem.png.mcmeta │ │ │ │ ├── infinity_emc_gem.png.mcmeta │ │ │ │ ├── money.png │ │ │ │ ├── twilight_key.png.mcmeta │ │ │ │ ├── base_key.png │ │ │ │ ├── creation.png │ │ │ │ ├── emc_core.png │ │ │ │ ├── emc_leaf.png │ │ │ │ ├── fxt_xy.png │ │ │ │ ├── gaia_gun.png │ │ │ │ ├── iron_gun.png │ │ │ │ ├── lottery.png │ │ │ │ ├── mooncake.png │ │ │ │ ├── tangyuan.png │ │ │ │ ├── unequal.png │ │ │ │ ├── voucher.png │ │ │ │ ├── zongzi.png │ │ │ │ ├── air_bucket.png │ │ │ │ ├── atm_sword.png │ │ │ │ ├── blood_eye.png │ │ │ │ ├── broken_gun.png │ │ │ │ ├── clump_cold.png │ │ │ │ ├── cold_ingot.png │ │ │ │ ├── creation.png.mcmeta │ │ │ │ ├── dark_stone.png │ │ │ │ ├── demon_dust.png │ │ │ │ ├── dust_cold.png │ │ │ │ ├── dust_rupee.png │ │ │ │ ├── emc_check.png │ │ │ │ ├── end_light.png │ │ │ │ ├── end_light.png.mcmeta │ │ │ │ ├── evil_book.png │ │ │ │ ├── flying_gem.png │ │ │ │ ├── flying_gem.png.mcmeta │ │ │ │ ├── gaia_staff.png │ │ │ │ ├── gaia_sword.png │ │ │ │ ├── gold_medal.png │ │ │ │ ├── golden_gun.png │ │ │ │ ├── guide_book.png │ │ │ │ ├── hard_steel.png │ │ │ │ ├── hero_medal.png │ │ │ │ ├── hero_medal.png.mcmeta │ │ │ │ ├── ice_cream.png │ │ │ │ ├── illager_gem.png.mcmeta │ │ │ │ ├── iron_staff.png │ │ │ │ ├── nether_key.png │ │ │ │ ├── night_light.png.mcmeta │ │ │ │ ├── quest_item.png │ │ │ │ ├── raid_light.png │ │ │ │ ├── rainbow_gun.png.mcmeta │ │ │ │ ├── rune_ingot.png │ │ │ │ ├── scroll_bx.png │ │ │ │ ├── scroll_red.png │ │ │ │ ├── shard_cold.png │ │ │ │ ├── stone_gun.png │ │ │ │ ├── super_star.png │ │ │ │ ├── super_star.png.mcmeta │ │ │ │ ├── wooden_gun.png │ │ │ │ ├── year_cake.png │ │ │ │ ├── abunana_loot.png │ │ │ │ ├── ancient_icon.png │ │ │ │ ├── big_emc_gem.png │ │ │ │ ├── bright_stone.png │ │ │ │ ├── broken_dagger.png │ │ │ │ ├── broken_hammer.png │ │ │ │ ├── chaos_sword.png │ │ │ │ ├── clump_emc_gem.png │ │ │ │ ├── clump_gobber.png │ │ │ │ ├── clump_indium.png │ │ │ │ ├── clump_nickel.png │ │ │ │ ├── clump_rainbow.png │ │ │ │ ├── clump_rupee.png │ │ │ │ ├── clump_silver.png │ │ │ │ ├── clump_sunlit.png │ │ │ │ ├── clump_zitrite.png │ │ │ │ ├── copper_medal.png │ │ │ │ ├── crystal_cold.png │ │ │ │ ├── crystal_rupee.png │ │ │ │ ├── diamond_gun.png │ │ │ │ ├── diamond_staff.png │ │ │ │ ├── dragon_steel.png │ │ │ │ ├── dust_aluminum.png │ │ │ │ ├── dust_arlemite.png │ │ │ │ ├── dust_bloodgem.png │ │ │ │ ├── dust_cloggrum.png │ │ │ │ ├── dust_drystone.png │ │ │ │ ├── dust_emc_gem.png │ │ │ │ ├── dust_gobber.png │ │ │ │ ├── dust_indium.png │ │ │ │ ├── dust_nickel.png │ │ │ │ ├── dust_rainbow.png │ │ │ │ ├── dust_realmite.png │ │ │ │ ├── dust_regalium.png │ │ │ │ ├── dust_silver.png │ │ │ │ ├── dust_sunlit.png │ │ │ │ ├── dust_titanium.png │ │ │ │ ├── dust_tungsten.png │ │ │ │ ├── dust_utherium.png │ │ │ │ ├── dust_zitrite.png │ │ │ │ ├── emc_shield_supply.png.mcmeta │ │ │ │ ├── enriched_iron.png │ │ │ │ ├── epic_emc_gem.png │ │ │ │ ├── epic_essence.png │ │ │ │ ├── event_check.png │ │ │ │ ├── fantasy_gem.png │ │ │ │ ├── final_essence.png │ │ │ │ ├── gaia_dagger.png │ │ │ │ ├── gaia_nugget.png │ │ │ │ ├── gaia_warhammer.png.mcmeta │ │ │ │ ├── god_ice_sword.png │ │ │ │ ├── golden_dagger.png │ │ │ │ ├── golden_staff.png │ │ │ │ ├── illager_gem.png │ │ │ │ ├── illager_shard.png │ │ │ │ ├── illager_shard.png.mcmeta │ │ │ │ ├── indium_ingot.png │ │ │ │ ├── infuse_core.png │ │ │ │ ├── iron_dagger.png │ │ │ │ ├── lake_gemstone.png │ │ │ │ ├── lucky_gem_red.png │ │ │ │ ├── nature_ingot.png │ │ │ │ ├── nature_staff.png │ │ │ │ ├── netherite_gun.png │ │ │ │ ├── nickel_ingot.png │ │ │ │ ├── night_light.png │ │ │ │ ├── niobium_ingot.png │ │ │ │ ├── nopower_staff.png │ │ │ │ ├── nuclear_ball.png │ │ │ │ ├── prefix_scroll.png │ │ │ │ ├── prefix_scroll.png.mcmeta │ │ │ │ ├── purple_staff.png │ │ │ │ ├── rainbow_gun.png │ │ │ │ ├── rainbow_ingot.png │ │ │ │ ├── rainbow_staff.png │ │ │ │ ├── rainbow_sword.png │ │ │ │ ├── red_green_dagger.png.mcmeta │ │ │ │ ├── reset_scroll.png │ │ │ │ ├── scroll_blue.png │ │ │ │ ├── scroll_feast.png │ │ │ │ ├── scroll_gaia.png │ │ │ │ ├── scroll_gold.png │ │ │ │ ├── scroll_green.png │ │ │ │ ├── scroll_purple.png │ │ │ │ ├── scroll_tulye.png │ │ │ │ ├── scroll_white.png │ │ │ │ ├── shard_emc_gem.png │ │ │ │ ├── shard_gobber.png │ │ │ │ ├── shard_indium.png │ │ │ │ ├── shard_nickel.png │ │ │ │ ├── shard_rainbow.png │ │ │ │ ├── shard_rupee.png │ │ │ │ ├── shard_silver.png │ │ │ │ ├── shard_sunlit.png │ │ │ │ ├── shard_zitrite.png │ │ │ │ ├── silver_ingot.png │ │ │ │ ├── silver_medal.png │ │ │ │ ├── skill_item1.png │ │ │ │ ├── skill_item2.png │ │ │ │ ├── small_emc_gem.png │ │ │ │ ├── stone_dagger.png │ │ │ │ ├── stone_ingot.png │ │ │ │ ├── stone_shard.png │ │ │ │ ├── stone_staff.png │ │ │ │ ├── sunlit_ingot.png │ │ │ │ ├── super_emc_gem.png │ │ │ │ ├── twilight_key.png │ │ │ │ ├── unreal_metal.png │ │ │ │ ├── wooden_dagger.png │ │ │ │ ├── wooden_ingot.png │ │ │ │ ├── wooden_staff.png │ │ │ │ ├── abyss_gemstone.png │ │ │ │ ├── aluminum_ingot.png │ │ │ │ ├── biggest_emc_gem.png │ │ │ │ ├── biggest_xuan_ingot.png.mcmeta │ │ │ │ ├── blood_gemstone.png │ │ │ │ ├── clump_aluminum.png │ │ │ │ ├── clump_arlemite.png │ │ │ │ ├── clump_bloodgem.png │ │ │ │ ├── clump_cloggrum.png │ │ │ │ ├── clump_drystone.png │ │ │ │ ├── clump_gravitite.png │ │ │ │ ├── clump_magnesium.png │ │ │ │ ├── clump_moonsteel.png │ │ │ │ ├── clump_pendorite.png │ │ │ │ ├── clump_realmite.png │ │ │ │ ├── clump_regalium.png │ │ │ │ ├── clump_starmetal.png │ │ │ │ ├── clump_titanium.png │ │ │ │ ├── clump_torridite.png │ │ │ │ ├── clump_tungsten.png │ │ │ │ ├── clump_utherium.png │ │ │ │ ├── craft_cd_scroll.png │ │ │ │ ├── crystal_emc_gem.png │ │ │ │ ├── crystal_gobber.png │ │ │ │ ├── crystal_indium.png │ │ │ │ ├── crystal_nickel.png │ │ │ │ ├── crystal_rainbow.png │ │ │ │ ├── crystal_silver.png │ │ │ │ ├── crystal_sunlit.png │ │ │ │ ├── crystal_zitrite.png │ │ │ │ ├── diamond_dagger.png │ │ │ │ ├── dirty_dust_cold.png │ │ │ │ ├── drop_antimatter.png │ │ │ │ ├── drystone_ingot.png │ │ │ │ ├── dust_aquamarine.png │ │ │ │ ├── dust_end_gobber.png │ │ │ │ ├── dust_froststeel.png │ │ │ │ ├── dust_gravitite.png │ │ │ │ ├── dust_magnesium.png │ │ │ │ ├── dust_moonsteel.png │ │ │ │ ├── dust_orichalcos.png │ │ │ │ ├── dust_pendorite.png │ │ │ │ ├── dust_starmetal.png │ │ │ │ ├── dust_torridite.png │ │ │ │ ├── emc_trait_core.png │ │ │ │ ├── enriched_ender.png │ │ │ │ ├── enriched_gobber.png │ │ │ │ ├── enriched_nickel.png │ │ │ │ ├── enriched_silver.png │ │ │ │ ├── exception_apple.png │ │ │ │ ├── exorcism_candle.png │ │ │ │ ├── fire_red_boots.png │ │ │ │ ├── fire_red_helmet.png │ │ │ │ ├── gaia_warhammer.png │ │ │ │ ├── god_chara_sword.png │ │ │ │ ├── god_fire_sword.png │ │ │ │ ├── god_null_sword.png │ │ │ │ ├── god_steel_ingot.png │ │ │ │ ├── guardian_boots.png │ │ │ │ ├── guardian_helmet.png │ │ │ │ ├── infinity_module.png │ │ │ │ ├── infinity_sword.png │ │ │ │ ├── ingot_aluminum.png │ │ │ │ ├── iron_warhammer.png │ │ │ │ ├── lucky_gem_blue.png │ │ │ │ ├── lucky_gem_gold.png │ │ │ │ ├── magnesium_ingot.png │ │ │ │ ├── nature_gemstone.png │ │ │ │ ├── netherite_staff.png │ │ │ │ ├── netherite_stick.png │ │ │ │ ├── niobium_nugget.png │ │ │ │ ├── noname_catfood.png │ │ │ │ ├── profession_tank.png │ │ │ │ ├── rainbow_dagger.png │ │ │ │ ├── restore_scroll.png │ │ │ │ ├── scroll_base_emc.png │ │ │ │ ├── shard_aluminum.png │ │ │ │ ├── shard_arlemite.png │ │ │ │ ├── shard_bloodgem.png │ │ │ │ ├── shard_cloggrum.png │ │ │ │ ├── shard_drystone.png │ │ │ │ ├── shard_gravitite.png │ │ │ │ ├── shard_magnesium.png │ │ │ │ ├── shard_moonsteel.png │ │ │ │ ├── shard_pendorite.png │ │ │ │ ├── shard_realmite.png │ │ │ │ ├── shard_regalium.png │ │ │ │ ├── shard_starmetal.png │ │ │ │ ├── shard_titanium.png │ │ │ │ ├── shard_torridite.png │ │ │ │ ├── shard_tungsten.png │ │ │ │ ├── shard_utherium.png │ │ │ │ ├── shengxuan_black.png │ │ │ │ ├── shengxuan_white.png │ │ │ │ ├── stainless_steel.png │ │ │ │ ├── stone_warhammer.png │ │ │ │ ├── titanium_ingot.png │ │ │ │ ├── universal_ball.png │ │ │ │ └── vibranium_sword.png │ │ │ ├── entity │ │ │ │ ├── villager │ │ │ │ │ └── profession │ │ │ │ │ │ └── emc_villager.png.mcmeta │ │ │ │ ├── cxk.png │ │ │ │ ├── zombie_villager │ │ │ │ │ └── profession │ │ │ │ │ │ └── emc_villager.png.mcmeta │ │ │ │ ├── btmy.png │ │ │ │ ├── juefei.png │ │ │ │ ├── sdxhop.png │ │ │ │ ├── tulye.png │ │ │ │ ├── xk9940.png │ │ │ │ ├── xy177.png │ │ │ │ ├── abunana.png │ │ │ │ ├── alfie_zh.png │ │ │ │ ├── cmzxymzx.png │ │ │ │ ├── jaoxaono.png │ │ │ │ ├── mcyunxi.png │ │ │ │ ├── chiyuanovo.png │ │ │ │ ├── dctor_0415.png │ │ │ │ ├── depair_anwu.png │ │ │ │ ├── dytlj7788.png │ │ │ │ ├── lamb_kisara.png │ │ │ │ ├── maplefung.png │ │ │ │ ├── wanglaotou.png │ │ │ │ ├── yuan_shou.png │ │ │ │ └── biggest_xuan.png │ │ │ ├── gui │ │ │ │ ├── icon.png │ │ │ │ ├── emc_ore.png │ │ │ │ ├── super_emc.png │ │ │ │ ├── top_core.png │ │ │ │ ├── jei │ │ │ │ │ ├── update.png │ │ │ │ │ ├── ftbq_jei.png │ │ │ │ │ ├── piglin_jei.png │ │ │ │ │ ├── star_jei.png │ │ │ │ │ └── infuser_jei.png │ │ │ │ ├── level_core.png │ │ │ │ ├── menu │ │ │ │ │ └── title.png │ │ │ │ ├── prefix_gui.png │ │ │ │ ├── transparent.png │ │ │ │ ├── gemstone_gui.png │ │ │ │ ├── infuser_core.png │ │ │ │ └── emc_core_puller.png │ │ │ ├── block │ │ │ │ ├── star.png │ │ │ │ ├── emc_ore.png │ │ │ │ ├── cold_ore.png │ │ │ │ ├── top_core.png │ │ │ │ ├── aluminum_ore.png │ │ │ │ ├── drystone_ore.png │ │ │ │ ├── emc_flower.png │ │ │ │ ├── emc_ore_core.png │ │ │ │ ├── end_emc_ore.png │ │ │ │ ├── indium_ore.png │ │ │ │ ├── infuser_core.png │ │ │ │ ├── nickel_ore.png │ │ │ │ ├── prefix_core.png │ │ │ │ ├── rich_emc_ore.png │ │ │ │ ├── silver_ore.png │ │ │ │ ├── sunlit_ore.png │ │ │ │ ├── test_block.png │ │ │ │ ├── titanium_ore.png │ │ │ │ ├── tungsten_ore.png │ │ │ │ ├── update_base.png │ │ │ │ ├── aquamarine_ore.png │ │ │ │ ├── gemstone_core.png │ │ │ │ ├── hardcore_stone.png │ │ │ │ ├── magnesium_ore.png │ │ │ │ ├── nether_emc_ore.png │ │ │ │ └── orichalcos_ore.png │ │ │ ├── quests │ │ │ │ └── qc.png │ │ │ └── curios │ │ │ │ ├── emc_shield.png │ │ │ │ └── emc_totem.png │ │ ├── blockstates │ │ │ ├── cold_ore.json │ │ │ ├── emc_ore.json │ │ │ ├── top_core.json │ │ │ ├── emc_super.json │ │ │ ├── end_emc_ore.json │ │ │ ├── indium_ore.json │ │ │ ├── nickel_ore.json │ │ │ ├── prefix_core.json │ │ │ ├── silver_ore.json │ │ │ ├── sunlit_ore.json │ │ │ ├── super_emc.json │ │ │ ├── test_block.json │ │ │ ├── aluminum_ore.json │ │ │ ├── drystone_ore.json │ │ │ ├── emc_ore_core.json │ │ │ ├── gemstone_core.json │ │ │ ├── infuser_core.json │ │ │ ├── magnesium_ore.json │ │ │ ├── rich_emc_ore.json │ │ │ ├── star_pedestal.json │ │ │ ├── titanium_ore.json │ │ │ ├── tungsten_ore.json │ │ │ ├── aquamarine_ore.json │ │ │ ├── chlorophyte_ore.json │ │ │ ├── emc_core_puller.json │ │ │ ├── emc_core_puncher.json │ │ │ ├── end_rich_emc_ore.json │ │ │ ├── hardcore_stone.json │ │ │ ├── nether_emc_ore.json │ │ │ ├── orichalcos_ore.json │ │ │ ├── profession_core.json │ │ │ ├── update_addon_red.json │ │ │ ├── update_base_blue.json │ │ │ ├── update_base_cyan.json │ │ │ ├── update_base_red.json │ │ │ ├── update_cost_blue.json │ │ │ ├── update_cost_cyan.json │ │ │ ├── update_cost_red.json │ │ │ ├── update_time_blue.json │ │ │ ├── update_time_cyan.json │ │ │ ├── update_time_red.json │ │ │ ├── emc_core_assembler.json │ │ │ ├── emc_core_generator.json │ │ │ ├── emc_flower.json │ │ │ ├── steel_furnace_core.json │ │ │ ├── update_addon_blue.json │ │ │ ├── update_addon_cyan.json │ │ │ ├── update_addon_green.json │ │ │ ├── update_base_green.json │ │ │ ├── update_base_orange.json │ │ │ ├── update_base_purple.json │ │ │ ├── update_base_yellow.json │ │ │ ├── update_cost_green.json │ │ │ ├── update_cost_orange.json │ │ │ ├── update_cost_purple.json │ │ │ ├── update_cost_yellow.json │ │ │ ├── update_time_green.json │ │ │ ├── update_time_orange.json │ │ │ ├── update_time_purple.json │ │ │ ├── update_time_yellow.json │ │ │ ├── advanced_update_core.json │ │ │ ├── control_update_core.json │ │ │ ├── steel_furnace_brick.json │ │ │ ├── update_addon_orange.json │ │ │ ├── update_addon_purple.json │ │ │ ├── update_addon_yellow.json │ │ │ ├── update_base_bx_purple.json │ │ │ ├── update_cost_bx_purple.json │ │ │ ├── update_time_bx_purple.json │ │ │ ├── vis_conversion_core.json │ │ │ ├── weapon_upgrade_core.json │ │ │ ├── ultimate_induction_cell.json │ │ │ └── update_addon_bx_purple.json │ │ └── sounds │ │ │ ├── cxk_death.ogg │ │ │ ├── cxk_rabbit.ogg │ │ │ ├── cxk_rich.ogg │ │ │ └── cxk_adventure.ogg │ ├── ftbquests │ │ └── textures │ │ │ └── hem.png │ └── minecraft │ │ └── textures │ │ └── gui │ │ ├── icons.png │ │ ├── widgets.png │ │ └── accessibility.png └── data │ └── emcworld │ └── patchouli_books │ └── guide │ └── en_us.zip └── java └── biggestxuan └── emcworld └── api └── OnlyDev.java /config/ModernUI/bootstrap: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /config/ironfurnaces.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/spark/activity.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /config/ModernUI/server.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/ichunutil/head/5.extracted: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/pipez-client.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/illageandspillage-client.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/worleycaves-client.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/start.zs: -------------------------------------------------------------------------------- 1 | #loadlast 2 | main(); -------------------------------------------------------------------------------- /config/bountifulbaubles-client.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Custom License: 2 | https://biggestxuan.top/emcworld/l -------------------------------------------------------------------------------- /config/inventoryprofilesnext/新的世界/lockSlots.txt: -------------------------------------------------------------------------------- 1 | 21 2 | 22 3 | 30 -------------------------------------------------------------------------------- /config/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/loading.png -------------------------------------------------------------------------------- /src/test/java/raid.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/test/java/raid.xlsx -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/texts/supporters.txt: -------------------------------------------------------------------------------- 1 | Add supporter names in packmenu:texts/supporters.txt -------------------------------------------------------------------------------- /config/cucumber-tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "__comment": "Instructions: https://mods.blakebr0.com/docs/cucumber/tags-config" 3 | } -------------------------------------------------------------------------------- /config/emcworld-client-1.toml.bak: -------------------------------------------------------------------------------- 1 | 2 | [General] 3 | #Disable all client message 4 | "Enable Live Mode" = false 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/cold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/cold_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/top_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/top_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_flower_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_super.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_super_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/indium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/indium_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/nickel_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/nickel_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/silver_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/sunlit_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/sunlit_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/test_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/test_block_model" 3 | } 4 | -------------------------------------------------------------------------------- /config/emcworld-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [General] 3 | add_mod_warning = true 4 | render_gui_helper = true 5 | pcl_warning = true 6 | 7 | -------------------------------------------------------------------------------- /config/savageandravage-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [mobs] 3 | 4 | [mobs.creepers] 5 | "Creepies have a sprout on their head" = true 6 | 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/aluminum_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/aluminum_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/drystone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/drystone_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_ore_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_ore_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/end_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/end_emc_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/gemstone_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/gemstone_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/infuser_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/infuser_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/magnesium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/magnesium_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/prefix_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/prefix_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/rich_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/rich_emc_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/star_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/star_pedestal_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/titanium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/titanium_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/tungsten_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/tungsten_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/iron_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/aquamarine_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/aquamarine_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/chlorophyte_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/chlorophyte_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_core_puller.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_core_puller_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/hardcore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/hardcore_stone_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/nether_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/nether_emc_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/orichalcos_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/orichalcos_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/profession_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/profession_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_red_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_red_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_red_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/diamond_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/golden_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/netherite_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/purple_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stone_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/ultimate_singularity.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/wooden_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /config/ichunutil/head/VexEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "forClass": "net.minecraft.entity.monster.VexEntity", 3 | "modelFieldName": "field_78116_c" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_core_assembler.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_core_assembler_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_core_generator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_core_generator_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_core_puncher.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_core_puncher_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/end_rich_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/end_rich_emc_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/steel_furnace_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/steel_furnace_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_blue_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_cyan_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_green_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_red_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_blue_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_cyan_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_green_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_orange_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_yellow_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_blue_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_cyan_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_green_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_orange_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_yellow_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_blue_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_cyan_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_green_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_orange_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_yellow_model" 3 | } 4 | -------------------------------------------------------------------------------- /config/ichunutil/head/GiantEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "forClass": "net.minecraft.entity.monster.GiantEntity", 3 | "modelFieldName": "field_78116_c" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/advanced_update_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/advanced_update_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/control_update_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/control_update_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/steel_furnace_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/steel_furnace_brick_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_orange_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_yellow_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/vis_conversion_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/vis_conversion_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/weapon_upgrade_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/weapon_upgrade_core_model" 3 | } 4 | -------------------------------------------------------------------------------- /config/ichunutil/head/ZombieEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "forClass": "net.minecraft.entity.monster.ZombieEntity", 3 | "modelFieldName": "field_78116_c" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/ultimate_induction_cell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/ultimate_induction_cell_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_addon_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_bx_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_base_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_bx_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_cost_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_bx_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/update_time_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_bx_purple_model" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rainbow_staff.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /scripts/loot_tables/emcworld/util.zs: -------------------------------------------------------------------------------- 1 | # priority 30 2 | 3 | public function tweakerEMCWorld() as void{ 4 | tweakerBotania();gns();ips();ratl(); 5 | } -------------------------------------------------------------------------------- /config/ProjectE/custom_emc.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": [ 3 | { 4 | "item": "mekanism:ultimate_pressurized_tube", 5 | "emc": 0 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFWraith.json: -------------------------------------------------------------------------------- 1 | { 2 | "forClass": "twilightforest.entity.EntityTFWraith", 3 | "modelFieldName": "field_78116_c" 4 | } -------------------------------------------------------------------------------- /src/main/java/biggestxuan/emcworld/api/OnlyDev.java: -------------------------------------------------------------------------------- 1 | package biggestxuan.emcworld.api; 2 | 3 | @EMCWorldSince("1.1.0") 4 | public @interface OnlyDev { 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/cold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/cold_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/emc_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/top_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/top_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/fxt_xy.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/skill_item1.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/skill_item2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/unreal_metal.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ftbquests/textures/hem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/ftbquests/textures/hem.png -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "packmenu.custom_button": "Custom Button", 3 | "packmenu.akliz": "Become an Akliz Affiliate" 4 | } -------------------------------------------------------------------------------- /config/ichunutil/head/Statues/PlayerStatueEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "forClass": "com.shynieke.statues.entity.PlayerStatueEntity", 3 | "modelFieldName": "field_78116_c" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_super.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/emc_super_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/end_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/end_emc_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/indium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/indium_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/nickel_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/nickel_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/prefix_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/prefix_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/silver_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/sunlit_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/sunlit_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/super_emc.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/super_emc_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/test_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/test_block_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/sounds/cxk_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/sounds/cxk_death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/sounds/cxk_rabbit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/sounds/cxk_rabbit.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/sounds/cxk_rich.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/sounds/cxk_rich.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/villager/profession/emc_villager.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "villager": { 3 | "hat": "full" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/emc_core.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_nugget.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 35, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/super_emc_gem.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/textures/gui/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/textures/gui/logo.png -------------------------------------------------------------------------------- /config/ichunutil/head/AbstractSkeletonEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "forClass": "net.minecraft.entity.monster.AbstractSkeletonEntity", 3 | "modelFieldName": "field_78116_c" 4 | } -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFGiantMiner.json: -------------------------------------------------------------------------------- 1 | { 2 | "forClass": "twilightforest.entity.EntityTFGiantMiner", 3 | "modelFieldName": "field_78116_c" 4 | } -------------------------------------------------------------------------------- /config/litewolfcore-client.toml: -------------------------------------------------------------------------------- 1 | 2 | ["LiteWolfCore Config"] 3 | #Display the warning whenever a player joins a world. Default is true 4 | "Show Warning" = false 5 | 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/aluminum_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/aluminum_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/drystone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/drystone_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_ore_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/emc_ore_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/gemstone_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/gemstone_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/infuser_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/infuser_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/magnesium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/magnesium_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/rich_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/rich_emc_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/star_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/star_pedestal_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/titanium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/titanium_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/tungsten_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/tungsten_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/star.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/cxk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/cxk.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/zombie_villager/profession/emc_villager.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "villager": { 3 | "hat": "full" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/epic_emc_gem.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/infinity_emc_gem.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/money.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/twilight_key.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/quests/qc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/quests/qc.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/minecraft/textures/gui/icons.png -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/textures/gui/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/textures/gui/reload.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/aquamarine_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/aquamarine_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/chlorophyte_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/chlorophyte_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_core_puller.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/emc_core_puller_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_core_puncher.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/emc_core_puncher_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/end_rich_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/end_rich_emc_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/hardcore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/hardcore_stone_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/nether_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/nether_emc_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/orichalcos_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/orichalcos_ore_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/profession_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/profession_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_red_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_blue_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_cyan_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_red_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_blue_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_cyan_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_red_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_blue_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_cyan_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_red_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/money.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/money" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/sounds/cxk_adventure.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/sounds/cxk_adventure.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/emc_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/emc_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/btmy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/btmy.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/juefei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/juefei.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/sdxhop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/sdxhop.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/tulye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/tulye.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/xk9940.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/xk9940.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/xy177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/xy177.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/emc_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/emc_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/super_emc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/super_emc.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/top_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/top_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/base_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/base_key.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/creation.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/emc_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/emc_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/emc_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/emc_leaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/fxt_xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/fxt_xy.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/gaia_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/iron_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/iron_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/lottery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/lottery.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/mooncake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/mooncake.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/tangyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/tangyuan.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/unequal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/unequal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/voucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/voucher.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/zongzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/zongzi.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/minecraft/textures/gui/widgets.png -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/textures/gui/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/textures/gui/widgets.png -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/ShadeEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "WenXin2", 3 | "forClass": "greekfantasy.entity.ShadeEntity", 4 | "modelFieldName": "field_78116_c" 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_core_assembler.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/emc_core_assembler_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_core_generator.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/emc_core_generator_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/emc_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "emcworld:block/emc_flower_model" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/steel_furnace_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/steel_furnace_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_blue_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_cyan_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_green_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_green_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_orange_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_yellow_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_green_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_orange_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_yellow_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_green_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_orange_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_yellow_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/cold_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/cold_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/top_core_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/top_core" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/base_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/base_key" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/creation.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/creation" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/emc_core" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_leaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/emc_leaf" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/fxt_xy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/fxt_xy" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/lottery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/lottery" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/mooncake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/mooncake" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/super_star.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/super_star" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/tangyuan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/tangyuan" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/unequal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/unequal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/voucher.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/voucher" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/zongzi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/zongzi" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/cold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/cold_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/top_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/top_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/abunana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/abunana.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/alfie_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/alfie_zh.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/cmzxymzx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/cmzxymzx.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/jaoxaono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/jaoxaono.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/mcyunxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/mcyunxi.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/jei/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/jei/update.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/level_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/level_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/menu/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/menu/title.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/prefix_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/prefix_gui.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/transparent.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/air_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/air_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/atm_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/atm_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/blood_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/blood_eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/broken_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/broken_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_cold.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/cold_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/cold_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/creation.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dark_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dark_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/demon_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/demon_dust.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_cold.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_rupee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_rupee.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/emc_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/emc_check.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/end_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/end_light.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/end_light.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/evil_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/evil_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/flying_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/flying_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/flying_gem.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 30, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/gaia_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/gaia_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gold_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/gold_medal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/golden_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/golden_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/guide_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/guide_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/hard_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/hard_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/hero_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/hero_medal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/hero_medal.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 15, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/ice_cream.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/illager_gem.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/iron_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/iron_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/nether_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/nether_key.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/night_light.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/quest_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/quest_item.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/raid_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/raid_light.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rainbow_gun.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rune_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/rune_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_bx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_bx.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_cold.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stone_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/stone_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/super_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/super_star.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/super_star.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/wooden_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/wooden_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/year_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/year_cake.png -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/buttons/quit.json: -------------------------------------------------------------------------------- 1 | { 2 | "x": 2, 3 | "y": 84, 4 | "width": 98, 5 | "height": 20, 6 | "langKey": "menu.quit", 7 | "action": "QUIT" 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/textures/gui/aklizbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/textures/gui/aklizbutton.png -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/textures/gui/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/textures/gui/background.png -------------------------------------------------------------------------------- /config/extendedcrafting-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Client settings. 3 | [General] 4 | #Should the Quantum Compressor render the result item above it? 5 | enableCompressorRenderer = true 6 | 7 | -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityBooby.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "fakegamingnerd", 3 | "forClass": "net.pavocado.exoticbirds.entity.EntityBooby", 4 | "modelFieldName": "head" 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/advanced_update_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/advanced_update_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/control_update_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/control_update_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/steel_furnace_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/steel_furnace_brick_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_orange_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_yellow_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_base_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_base_bx_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_cost_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_cost_bx_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_time_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_time_bx_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/vis_conversion_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/vis_conversion_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/weapon_upgrade_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/weapon_upgrade_core_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/emc_flower_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/emc_flower" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/emc_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/emc_ore" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/indium_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/indium_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/nickel_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/nickel_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/prefix_core_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/prefix_core" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/silver_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/silver_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/sunlit_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/sunlit_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/test_block_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/test_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/air_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/air_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/blood_eye.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/blood_eye" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/blue_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/blue" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/broken_gun.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/broken_gun" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/chara_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/god_chara_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clay_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/clay" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_cold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_cold" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/cold_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/cold_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/cyan_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/cyan" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dark_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dark_stone" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/demon_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/demon_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_cold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_cold" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_check.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/emc_check" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/end_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/end_light" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/evil_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/evil_book" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/fading_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/fading" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/flying_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/flying_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/gaia_dagger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/gaia_dagger" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/gaia_staff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/gaia_staff" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/gaia_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/gaia_sword" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/god_fire_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/god_fire_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/god_ice_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/god_ice_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/gold_medal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/gold_medal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/green_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/green" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/guide_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/guide_book" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/hard_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/hard_steel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/hero_medal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/hero_medal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/ice_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/ice_cream" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/lime_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/lime" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/nether_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/nether_key" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/orange_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/orange" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/pink_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/pink" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/purple_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/purple" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/quest_item.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/quest_item" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/raid_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/raid_light" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/rune_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/rune_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_bx.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_bx" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_red" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_cold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_cold" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/violet_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/violet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/white_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/white" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/year_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/year_cake" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/yellow_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/yellow" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/aluminum_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/aluminum_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/drystone_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/drystone_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/emc_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/emc_flower.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/emc_ore_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/emc_ore_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/end_emc_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/end_emc_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/indium_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/indium_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/infuser_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/infuser_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/nickel_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/nickel_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/prefix_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/prefix_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/rich_emc_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/rich_emc_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/silver_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/silver_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/sunlit_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/sunlit_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/test_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/test_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/titanium_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/titanium_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/tungsten_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/tungsten_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/update_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/update_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/curios/emc_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/curios/emc_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/curios/emc_totem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/curios/emc_totem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/chiyuanovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/chiyuanovo.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/dctor_0415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/dctor_0415.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/depair_anwu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/depair_anwu.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/dytlj7788.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/dytlj7788.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/lamb_kisara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/lamb_kisara.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/maplefung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/maplefung.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/wanglaotou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/wanglaotou.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/yuan_shou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/yuan_shou.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/gemstone_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/gemstone_gui.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/infuser_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/infuser_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/jei/ftbq_jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/jei/ftbq_jei.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/jei/piglin_jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/jei/piglin_jei.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/jei/star_jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/jei/star_jei.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/abunana_loot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/abunana_loot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/ancient_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/ancient_icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/big_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/big_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/bright_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/bright_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/broken_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/broken_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/broken_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/broken_hammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/chaos_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/chaos_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_gobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_gobber.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_indium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_indium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_nickel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_nickel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_rainbow.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_rupee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_rupee.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_silver.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_sunlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_sunlit.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_zitrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_zitrite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/copper_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/copper_medal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_cold.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_rupee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_rupee.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/diamond_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/diamond_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/diamond_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/diamond_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dragon_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dragon_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_aluminum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_aluminum.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_arlemite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_arlemite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_bloodgem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_bloodgem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_cloggrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_cloggrum.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_drystone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_drystone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_gobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_gobber.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_indium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_indium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_nickel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_nickel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_rainbow.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_realmite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_realmite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_regalium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_regalium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_silver.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_sunlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_sunlit.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_titanium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_titanium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_tungsten.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_utherium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_utherium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_zitrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_zitrite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/emc_shield_supply.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/enriched_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/enriched_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/epic_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/epic_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/epic_essence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/epic_essence.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/event_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/event_check.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/fantasy_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/fantasy_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/final_essence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/final_essence.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/gaia_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/gaia_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_warhammer.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/god_ice_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/god_ice_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/golden_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/golden_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/golden_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/golden_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/illager_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/illager_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/illager_shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/illager_shard.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/illager_shard.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/indium_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/indium_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/infuse_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/infuse_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/iron_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/iron_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/lake_gemstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/lake_gemstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/lucky_gem_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/lucky_gem_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/nature_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/nature_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/nature_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/nature_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/netherite_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/netherite_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/nickel_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/nickel_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/night_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/night_light.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/niobium_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/niobium_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/nopower_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/nopower_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/nuclear_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/nuclear_ball.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/prefix_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/prefix_scroll.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/prefix_scroll.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/purple_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/purple_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rainbow_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/rainbow_gun.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rainbow_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/rainbow_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rainbow_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/rainbow_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rainbow_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/rainbow_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/red_green_dagger.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/reset_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/reset_scroll.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_feast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_feast.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_gaia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_gaia.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_green.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_purple.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_tulye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_tulye.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_white.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_gobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_gobber.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_indium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_indium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_nickel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_nickel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_rainbow.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_rupee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_rupee.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_silver.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_sunlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_sunlit.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_zitrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_zitrite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/silver_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/silver_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/silver_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/silver_medal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/skill_item1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/skill_item1.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/skill_item2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/skill_item2.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/small_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/small_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stone_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/stone_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stone_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/stone_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stone_shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/stone_shard.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stone_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/stone_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/sunlit_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/sunlit_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/super_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/super_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/twilight_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/twilight_key.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/unreal_metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/unreal_metal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/wooden_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/wooden_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/wooden_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/wooden_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/wooden_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/wooden_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/gui/accessibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/minecraft/textures/gui/accessibility.png -------------------------------------------------------------------------------- /src/main/resources/data/emcworld/patchouli_books/guide/en_us.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/data/emcworld/patchouli_books/guide/en_us.zip -------------------------------------------------------------------------------- /config/MouseTweaks.cfg: -------------------------------------------------------------------------------- 1 | RMBTweak=1 2 | LMBTweakWithItem=1 3 | LMBTweakWithoutItem=1 4 | WheelTweak=1 5 | WheelSearchOrder=1 6 | WheelScrollDirection=0 7 | ScrollItemScaling=0 8 | Debug=0 9 | -------------------------------------------------------------------------------- /config/good_nights_sleep-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Server and Client side changes. 3 | [common] 4 | #Allows Phantoms to spawn in the Nightmare dimension. 5 | allowNightmarePhantoms = true 6 | 7 | -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/PharaohEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "WenXin2", 3 | "forClass": "com.teammetallurgy.atum.entity.undead.PharaohEntity", 4 | "modelFieldName": "field_78116_c" 5 | } -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/WarlordEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "WenXin2", 3 | "forClass": "com.teammetallurgy.atum.entity.bandit.WarlordEntity", 4 | "modelFieldName": "field_78116_c" 5 | } -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/WraithEntity.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "WenXin2", 3 | "forClass": "com.teammetallurgy.atum.entity.undead.WraithEntity", 4 | "modelFieldName": "field_78116_c" 5 | } -------------------------------------------------------------------------------- /config/mythicbotany-client.toml: -------------------------------------------------------------------------------- 1 | #Set to false to disable particles from the mythicbotany rings for your own player. You'll still see them from other players. 2 | ring_particles = true 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/ultimate_induction_cell.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/ultimate_induction_cell_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/blockstates/update_addon_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "emcworld:block/update_addon_bx_purple_model" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/aluminum_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/aluminum_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/drystone_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/drystone_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/gemstone_core_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/gemstone_core" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/infuser_core_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/infuser_core" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/magnesium_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/magnesium_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/titanium_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/titanium_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/block/tungsten_ore_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "emcworld:block/tungsten_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/abunana_loot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/abunana_loot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/ancient_icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/ancient_icon" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/big_emc_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/big_emc_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/bright_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/bright_stone" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/broken_dagger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/broken_dagger" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/broken_hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/broken_hammer" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_emc_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_emc_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_gobber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_gobber" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_indium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_indium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_nickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_nickel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_rainbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_rainbow" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_rupee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_rupee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_silver" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_sunlit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_sunlit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/clump_zitrite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/clump_zitrite" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/copper_medal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/copper_medal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/crystal_cold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/crystal_cold" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dragon_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dragon_steel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_aluminum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_aluminum" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_cloggrum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_cloggrum" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_drystone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_drystone" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_emc_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_emc_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_gobber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_gobber" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_indium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_indium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_nickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_nickel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_rainbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_rainbow" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_regalium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_regalium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_rupee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_rupee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_silver" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_sunlit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_sunlit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_titanium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_utherium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_utherium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/dust_zitrite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/dust_zitrite" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/emc_healing_bag.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "scalinghealth:item/medkit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/enriched_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/enriched_iron" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/epic_emc_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/epic_emc_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/epic_essence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/epic_essence" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/fantasy_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/fantasy_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/final_essence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/final_essence" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/gaia_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/gaia_nugget" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/god_nature_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/god_nature_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/ham_bat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "farmersdelight:item/ham" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/illager_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/illager_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/illager_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/illager_shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/indium_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/indium_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/infuse_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/infuse_core" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/lake_gemstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/lake_gemstone" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/lucky_gem_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/lucky_gem_red" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/magenta_matter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "projectex:item/matter/magenta" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/nature_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/nature_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/nickel_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/nickel_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/niobium_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/niobium_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/nopower_staff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/nopower_staff" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/nuclear_ball.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/nuclear_ball" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/prefix_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/prefix_scroll" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/rainbow_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/rainbow_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/rainbow_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/rainbow_sword" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/reset_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/reset_scroll" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_blue" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_gaia.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_gaia" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_gold" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_green" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_purple" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_tulye.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_tulye" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/scroll_white.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/scroll_white" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_emc_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_emc_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_gobber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_gobber" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_indium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_indium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_nickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_nickel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_rainbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_rainbow" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_rupee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_rupee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_silver" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_sunlit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_sunlit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/shard_zitrite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/shard_zitrite" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/silver_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/silver_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/silver_medal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/silver_medal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/skill_item1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/skill_item1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/skill_item2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/skill_item2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/small_emc_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/small_emc_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/stone_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/stone_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/stone_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/stone_shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/sunlit_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/sunlit_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/super_emc_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/super_emc_gem" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/twilight_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/twilight_key" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/unreal_metal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/unreal_metal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/wooden_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "emcworld:item/wooden_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/models/item/wooden_staff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "emcworld:item/wooden_staff" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/aquamarine_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/aquamarine_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/gemstone_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/gemstone_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/hardcore_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/hardcore_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/magnesium_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/magnesium_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/nether_emc_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/nether_emc_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/block/orichalcos_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/block/orichalcos_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/entity/biggest_xuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/entity/biggest_xuan.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/emc_core_puller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/emc_core_puller.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/gui/jei/infuser_jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/gui/jei/infuser_jei.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/abyss_gemstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/abyss_gemstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/aluminum_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/aluminum_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/biggest_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/biggest_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/biggest_xuan_ingot.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/blood_gemstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/blood_gemstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_aluminum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_aluminum.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_arlemite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_arlemite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_bloodgem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_bloodgem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_cloggrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_cloggrum.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_drystone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_drystone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_gravitite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_gravitite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_magnesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_magnesium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_moonsteel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_moonsteel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_pendorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_pendorite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_realmite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_realmite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_regalium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_regalium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_starmetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_starmetal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_titanium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_titanium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_torridite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_torridite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_tungsten.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/clump_utherium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/clump_utherium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/craft_cd_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/craft_cd_scroll.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_emc_gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_emc_gem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_gobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_gobber.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_indium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_indium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_nickel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_nickel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_rainbow.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_silver.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_sunlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_sunlit.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/crystal_zitrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/crystal_zitrite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/diamond_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/diamond_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dirty_dust_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dirty_dust_cold.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/drop_antimatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/drop_antimatter.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/drystone_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/drystone_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_aquamarine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_aquamarine.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_end_gobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_end_gobber.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_froststeel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_froststeel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_gravitite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_gravitite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_magnesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_magnesium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_moonsteel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_moonsteel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_orichalcos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_orichalcos.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_pendorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_pendorite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_starmetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_starmetal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/dust_torridite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/dust_torridite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/emc_trait_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/emc_trait_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/enriched_ender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/enriched_ender.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/enriched_gobber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/enriched_gobber.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/enriched_nickel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/enriched_nickel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/enriched_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/enriched_silver.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/exception_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/exception_apple.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/exorcism_candle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/exorcism_candle.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/fire_red_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/fire_red_boots.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/fire_red_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/fire_red_helmet.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/gaia_warhammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/gaia_warhammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/god_chara_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/god_chara_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/god_fire_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/god_fire_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/god_null_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/god_null_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/god_steel_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/god_steel_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/guardian_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/guardian_boots.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/guardian_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/guardian_helmet.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/infinity_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/infinity_module.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/infinity_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/infinity_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/ingot_aluminum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/ingot_aluminum.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/iron_warhammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/iron_warhammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/lucky_gem_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/lucky_gem_blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/lucky_gem_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/lucky_gem_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/magnesium_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/magnesium_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/nature_gemstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/nature_gemstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/netherite_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/netherite_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/netherite_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/netherite_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/niobium_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/niobium_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/noname_catfood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/noname_catfood.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/profession_tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/profession_tank.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/rainbow_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/rainbow_dagger.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/restore_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/restore_scroll.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/scroll_base_emc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/scroll_base_emc.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_aluminum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_aluminum.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_arlemite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_arlemite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_bloodgem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_bloodgem.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_cloggrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_cloggrum.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_drystone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_drystone.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_gravitite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_gravitite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_magnesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_magnesium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_moonsteel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_moonsteel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_pendorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_pendorite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_realmite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_realmite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_regalium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_regalium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_starmetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_starmetal.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_titanium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_titanium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_torridite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_torridite.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_tungsten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_tungsten.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shard_utherium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shard_utherium.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shengxuan_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shengxuan_black.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/shengxuan_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/shengxuan_white.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stainless_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/stainless_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/stone_warhammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/stone_warhammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/titanium_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/titanium_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/universal_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/universal_ball.png -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/vibranium_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/textures/item/vibranium_sword.png --------------------------------------------------------------------------------