├── .github └── ISSUE_TEMPLATE │ ├── cn_bug_report.md │ ├── cn_suggestions.md │ ├── config.yml │ ├── en_bug_report.md │ ├── en_suggestions.md │ ├── tw_bug_report.md │ └── tw_suggestions.md ├── .gitignore ├── CREDITS.txt ├── LICENSE ├── README.md ├── changelog.txt ├── config ├── EnderStorage.cfg ├── Mekanism │ ├── client.toml │ ├── gear.toml │ ├── general.toml │ ├── generators-gear.toml │ ├── generators.toml │ ├── machine-storage.toml │ ├── machine-usage.toml │ ├── tiers.toml │ ├── tools-client.toml │ ├── tools.toml │ └── world.toml ├── ModernUI │ ├── bootstrap │ ├── client.toml │ ├── common.toml │ └── server.toml ├── MouseTweaks.cfg ├── ProjectE │ ├── client.toml │ ├── common.toml │ ├── custom_emc.json │ ├── mapping.toml │ ├── processing.toml │ └── server.toml ├── YungsExtras-forge-1_16.toml ├── YungsExtras │ ├── README.txt │ └── forge-1_16 │ │ ├── README.txt │ │ └── wishing_wells.json ├── abnormals_core-client.toml ├── abnormals_core-common.toml ├── aether-client.toml ├── aether-common.toml ├── akashictome-common.toml ├── alltheores-common.toml ├── appleskin-client.toml ├── astralsorcery-client.toml ├── astralsorcery-common.toml ├── attributefix-common.toml ├── atum-common.toml ├── betterdungeons-forge-1_16.toml ├── bettermineshafts-forge-1_16.toml ├── bettermineshafts │ ├── 1_16 │ │ ├── README.txt │ │ ├── biomeTags.txt │ │ └── variants.json │ └── README.txt ├── blockswap │ └── block_swap.json ├── bloodmagic-client.toml ├── bloodmagic-common.toml ├── botania-client.toml ├── botania-common.toml ├── bountifulbaubles-client.toml ├── bountifulbaubles-common.toml ├── byg │ ├── byg-biomes.json │ ├── byg-end-biomes.json │ ├── byg-end-sub-biomes.json │ ├── byg-nether-biomes.json │ ├── byg-sub-biomes.json │ └── byg-world.toml ├── candyworld-common.toml ├── castle_dungeons │ ├── config.cfg │ └── themes │ │ ├── default.cfg │ │ └── desert.cfg ├── cataclysm.toml ├── ccl.cfg ├── champions-client.toml ├── citadel-common.toml ├── classicbar-client.toml ├── cofh_core-client.toml ├── collective-common.toml ├── conjurer_illager-common.toml ├── crockpot-client.toml ├── crockpot-common.toml ├── cucumber-client.toml ├── cucumber-common.toml ├── cucumber-tags.json ├── curios-client.toml ├── divinerpg-common.toml ├── drippyloadingscreen │ ├── config.cfg │ ├── customization │ │ └── main.dllayout │ └── locals │ │ └── en_us.local ├── dummmmmmy-client.toml ├── dummmmmmy-common.toml ├── dungeonsmod-common-1.toml.bak ├── dungeonsmod-common.toml ├── emcworld-client-1.toml.bak ├── emcworld-client.toml ├── emcworld-common-1.toml.bak ├── emcworld-common-2.toml.bak ├── emcworld-common.toml ├── endrem.toml ├── entityculling.json ├── equipmentcompare-common.toml ├── explorerscompass-client.toml ├── explorerscompass-common.toml ├── extendedcrafting-client.toml ├── extendedcrafting-common.toml ├── extendedcrafting │ └── singularities │ │ ├── alfsteel.json │ │ ├── aluminum.json │ │ ├── atm.json │ │ ├── bronze.json │ │ ├── clock.json │ │ ├── coal.json │ │ ├── copper.json │ │ ├── dark_matter.json │ │ ├── diamond.json │ │ ├── electrum.json │ │ ├── emerald.json │ │ ├── glowstone.json │ │ ├── invar.json │ │ ├── iron.json │ │ ├── lapis_lazuli.json │ │ ├── lead.json │ │ ├── nickel.json │ │ ├── platinum.json │ │ ├── red_matter.json │ │ ├── redstone.json │ │ ├── sculk.json │ │ ├── silver.json │ │ ├── steel.json │ │ ├── tin.json │ │ ├── unobtainium.json │ │ ├── uranium.json │ │ └── vibranium.json ├── farmersdelight-client.toml ├── farmersdelight-common.toml ├── ferritecore-mixin.toml ├── fml.toml ├── forge-client.toml ├── forge-common.toml ├── ftbbackups-common.toml ├── ftbquests │ └── quests │ │ ├── chapter_groups.snbt │ │ ├── chapters │ │ ├── chapteremcworldadvanced_aether.snbt │ │ ├── chapteremcworldadvanced_magic.snbt │ │ ├── chapteremcworldadvanced_mek.snbt │ │ ├── chapteremcworldaerial.snbt │ │ ├── chapteremcworldatum.snbt │ │ ├── chapteremcworldbotania_first.snbt │ │ ├── chapteremcworldeighth_alfheim.snbt │ │ ├── chapteremcworldeighth_emcworld.snbt │ │ ├── chapteremcworldeighth_hide.snbt │ │ ├── chapteremcworldeighth_infinity.snbt │ │ ├── chapteremcworldeighth_mekanism.snbt │ │ ├── chapteremcworldfifth_arcana.snbt │ │ ├── chapteremcworldfifth_hals.snbt │ │ ├── chapteremcworldfifth_hell.snbt │ │ ├── chapteremcworldfifth_magic.snbt │ │ ├── chapteremcworldfifth_tech.snbt │ │ ├── chapteremcworldfourth_alfheim.snbt │ │ ├── chapteremcworldfourth_magic.snbt │ │ ├── chapteremcworldfourth_ratlantis.snbt │ │ ├── chapteremcworldfourth_tech.snbt │ │ ├── chapteremcworldfourth_twilightforest.snbt │ │ ├── chapteremcworldgetting_start.snbt │ │ ├── chapteremcworldoff_quest_skill.snbt │ │ ├── chapteremcworldor_argi.snbt │ │ ├── chapteremcworldor_dungeons.snbt │ │ ├── chapteremcworldor_nightmare.snbt │ │ ├── chapteremcworldseven_dead.snbt │ │ ├── chapteremcworldseven_divine.snbt │ │ ├── chapteremcworldseven_end.snbt │ │ ├── chapteremcworldsixth_magic.snbt │ │ ├── chapteremcworldsixth_undergarden.snbt │ │ ├── chapteremcworldtech_first.snbt │ │ ├── chapteremcworldthird_dream.snbt │ │ ├── chapteremcworldthird_magic.snbt │ │ ├── chapteremcworldthird_sea.snbt │ │ ├── chapteremcworldthird_tech.snbt │ │ └── chapteremcworldupgrade.snbt │ │ ├── data.snbt │ │ └── reward_tables │ │ ├── 1.snbt │ │ ├── rewardemcworldsword_epic.snbt │ │ ├── rewardemcworldsword_normal.snbt │ │ ├── sheetemcworldapalachiapark.snbt │ │ ├── sheetemcworldcrawler.snbt │ │ ├── sheetemcworldedenpark.snbt │ │ ├── sheetemcworldhalitepark.snbt │ │ ├── sheetemcworldmortumpark.snbt │ │ ├── sheetemcworldskythernpark.snbt │ │ ├── sheetemcworldsnowpark.snbt │ │ ├── sheetemcworldtemplate.snbt │ │ └── sheetemcworldwildwoodpark.snbt ├── gamestages │ └── known_stages.json ├── gobber-general.toml ├── good_nights_sleep-common.toml ├── hats-client.toml ├── ichunutil.toml ├── ichunutil │ ├── head │ │ ├── 5.extracted │ │ ├── Abnormals │ │ │ ├── Autumnity │ │ │ │ ├── SnailEntity.json │ │ │ │ └── TurkeyEntity.json │ │ │ ├── Buzzier Bees │ │ │ │ ├── BumblebeeEntity.json │ │ │ │ └── MoobloomEntity.json │ │ │ ├── Caverns & Chasms │ │ │ │ └── DeeperEntity.json │ │ │ ├── Environmental │ │ │ │ ├── DeerEntity.json │ │ │ │ ├── DuckEntity.json │ │ │ │ ├── KoiEntity.json │ │ │ │ ├── SlabfishEntity.json │ │ │ │ └── YakEntity.json │ │ │ ├── Neapolitan │ │ │ │ └── ChimpanzeeEntity.json │ │ │ └── Savage & Ravage │ │ │ │ ├── CreepieEntity.json │ │ │ │ ├── ExecutionerEntity.json │ │ │ │ ├── GrieferEntity.json │ │ │ │ ├── IceologerEntity.json │ │ │ │ └── SkeletonVillagerEntity.json │ │ ├── AbstractHorseEntity.json │ │ ├── AbstractIllagerEntity.json │ │ ├── AbstractPiglinEntity.json │ │ ├── AbstractSkeletonEntity.json │ │ ├── AbstractVillagerEntity.json │ │ ├── Aquaculture │ │ │ ├── AquaFishEntity.json │ │ │ └── TurtleLandEntity.json │ │ ├── Artifacts │ │ │ └── MimicEntity.json │ │ ├── Atum │ │ │ ├── AssassinEntity.json │ │ │ ├── AtumVillagerEntity.json │ │ │ ├── BarbarianEntity.json │ │ │ ├── BonestormEntity.json │ │ │ ├── BrigandEntity.json │ │ │ ├── DesertRabbitEntity.json │ │ │ ├── DesertWolfEntity.json │ │ │ ├── ForsakenEntity.json │ │ │ ├── MummyEntity.json │ │ │ ├── NomadEntity.json │ │ │ ├── PharaohEntity.json │ │ │ ├── QuailEntity.json │ │ │ ├── ScarabEntity.json │ │ │ ├── SergeantEntity.json │ │ │ ├── ServalEntity.json │ │ │ ├── StoneguardEntity.json │ │ │ ├── StonewardenEntity.json │ │ │ ├── TarantulaEntity.json │ │ │ ├── WarlordEntity.json │ │ │ └── WraithEntity.json │ │ ├── BatEntity.json │ │ ├── BeeEntity.json │ │ ├── Belly Button │ │ │ ├── DustBunnyEntity.json │ │ │ └── EvilDustBunnyEntity.json │ │ ├── Bettas │ │ │ └── BettaFishEntity.json │ │ ├── BetterEnd │ │ │ ├── CubozoaEntity.json │ │ │ ├── DragonflyEntity.json │ │ │ ├── EndFishEntity.json │ │ │ ├── EndSlimeEntity.json │ │ │ ├── ShadowWalkerEntity.json │ │ │ └── SilkMothEntity.json │ │ ├── BlazeEntity.json │ │ ├── Blue Skies │ │ │ ├── ArachnarchEntity.json │ │ │ ├── ArmoredFrostSpiritEntity.json │ │ │ ├── ArtificialGolemEntity.json │ │ │ ├── AzulfoEntity.json │ │ │ ├── CharscaleMokiEntity.json │ │ │ ├── CosmicFoxEntity.json │ │ │ ├── CrogreEntity.json │ │ │ ├── CrynocerousEntity.json │ │ │ ├── CrystalCamelEntity.json │ │ │ ├── DiophydeProwlerEntity.json │ │ │ ├── EmberbackEntity.json │ │ │ ├── FireflyEntity.json │ │ │ ├── FrostSpiritEntity.json │ │ │ ├── GatekeeperEntity.json │ │ │ ├── GrittleFlatfishEntity.json │ │ │ ├── HorizofinTunidEntity.json │ │ │ ├── InfestedSwarmerEntity.json │ │ │ ├── JellyDrifterEntity.json │ │ │ ├── MunicipalMonkfishEntity.json │ │ │ ├── NestedSpiderEntity.json │ │ │ ├── NyctoflyEntity.json │ │ │ ├── PolargeistEntity.json │ │ │ ├── SeclamEntity.json │ │ │ ├── ShadeMonitorEntity.json │ │ │ ├── ShrumptyEntity.json │ │ │ ├── SlivEntity.json │ │ │ ├── SnowOwlEntity.json │ │ │ ├── SpewterEntity.json │ │ │ ├── StardustRamEntity.json │ │ │ ├── StarlitCrusherEntity.json │ │ │ ├── StoneletEntity.json │ │ │ ├── SummonerEntity.json │ │ │ ├── VenomSpiderEntity.json │ │ │ └── WhistleshellCrabEntity.json │ │ ├── Buddycards │ │ │ └── EnderlingEntity.json │ │ ├── CatEntity.json │ │ ├── Caves & Cliffs Backport │ │ │ ├── AxolotlEntity.json │ │ │ ├── GlowSquidEntity.json │ │ │ └── GoatEntity.json │ │ ├── ChickenEntity.json │ │ ├── CodEntity.json │ │ ├── Colds Piggy Bank │ │ │ └── PiggyBankEntity.json │ │ ├── CowEntity.json │ │ ├── CreeperEntity.json │ │ ├── CutePuppyMod │ │ │ ├── EntityBlue.json │ │ │ ├── EntityBoss.json │ │ │ ├── EntityBossEnder.json │ │ │ ├── EntityEnder.json │ │ │ ├── EntityGreen.json │ │ │ ├── EntityHerobrine.json │ │ │ ├── EntityPurple.json │ │ │ ├── EntityRed.json │ │ │ ├── EntitySix.json │ │ │ ├── EntitySteve.json │ │ │ └── EntityYellow.json │ │ ├── Darker Depths │ │ │ ├── GlowshroomMonsterEntity.json │ │ │ └── MagmaMinionEntity.json │ │ ├── Desolation │ │ │ └── BlackenedEntityCustomEntity.json │ │ ├── Direbats │ │ │ └── DirebatEntity.json │ │ ├── DolphinEntity.json │ │ ├── DrownedEntity.json │ │ ├── Druidcraft │ │ │ ├── BeetleEntity.json │ │ │ ├── DreadfishEntity.json │ │ │ └── LunarMothEntity.json │ │ ├── Dummy Players │ │ │ └── DummyPlayerEntity.json │ │ ├── Dungeons Mobs │ │ │ ├── ArmoredMountaineerEntity.json │ │ │ ├── ArmoredPillagerEntity.json │ │ │ ├── ArmoredVindicatorEntity.json │ │ │ ├── GeomancerBombEntity.json │ │ │ ├── GeomancerEntity.json │ │ │ ├── GeomancerWallEntity.json │ │ │ ├── IceologerEntity.json │ │ │ ├── LeapleafEntity.json │ │ │ ├── MountaineerEntity.json │ │ │ ├── PoisonQuillVineEntity.json │ │ │ ├── QuickGrowingVineEntity.json │ │ │ ├── RedstoneCubeEntity.json │ │ │ ├── RedstoneGolemEntity.json │ │ │ ├── SquallGolemEntity.json │ │ │ ├── VindicatorChefEntity.json │ │ │ ├── WhispererEntity.json │ │ │ ├── WindcallerEntity.json │ │ │ └── WraithEntity.json │ │ ├── Earth Mobs │ │ │ ├── BoneSpiderEntity.json │ │ │ ├── BoulderingZombieEntity.json │ │ │ ├── CluckShroomEntity.json │ │ │ ├── HornedSheepEntity.json │ │ │ ├── JollyLlamaEntity.json │ │ │ ├── LobberZombieEntity.json │ │ │ ├── MoobloomEntity.json │ │ │ ├── MuddyPigEntity.json │ │ │ ├── RainbowSheepEntity.json │ │ │ ├── VilerWitchEntity.json │ │ │ └── WoolyCowEntity.json │ │ ├── Eidolon │ │ │ ├── WraithEntity.json │ │ │ └── ZombieBruteEntity.json │ │ ├── ElderGuardianEntity.json │ │ ├── Enchant With Mob │ │ │ └── EnchanterEntity.json │ │ ├── End Reborn │ │ │ └── EndGuardMob.json │ │ ├── EnderDragonEntity.json │ │ ├── EndermanEntity.json │ │ ├── EndermiteEntity.json │ │ ├── Exotic Birds │ │ │ ├── EntityBluejay.json │ │ │ ├── EntityBooby.json │ │ │ ├── EntityBudgerigar.json │ │ │ ├── EntityCardinal.json │ │ │ ├── EntityCassowary.json │ │ │ ├── EntityCockatoo.json │ │ │ ├── EntityCrane.json │ │ │ ├── EntityDuck.json │ │ │ ├── EntityFlamingo.json │ │ │ ├── EntityGouldianFinch.json │ │ │ ├── EntityGull.json │ │ │ ├── EntityHeron.json │ │ │ ├── EntityHummingbird.json │ │ │ ├── EntityKingfisher.json │ │ │ ├── EntityKiwi.json │ │ │ ├── EntityKookaburra.json │ │ │ ├── EntityLyrebird.json │ │ │ ├── EntityMacaw.json │ │ │ ├── EntityMagpie.json │ │ │ ├── EntityOstrich.json │ │ │ ├── EntityOwl.json │ │ │ ├── EntityPeafowl.json │ │ │ ├── EntityPelican.json │ │ │ ├── EntityPenguin.json │ │ │ ├── EntityPigeon.json │ │ │ ├── EntityRoadrunner.json │ │ │ ├── EntityRobin.json │ │ │ ├── EntitySwan.json │ │ │ ├── EntityToucan.json │ │ │ └── EntityWoodpecker.json │ │ ├── Extra Golems │ │ │ └── GenericGolem.json │ │ ├── Fins & Tails │ │ │ ├── BandedRedbackShrimpEntity.json │ │ │ ├── BluWeeEntity.json │ │ │ ├── FlatbackLeafSnailEntity.json │ │ │ ├── FlatbackSuckerEntity.json │ │ │ ├── GoldenRiverRayEntity.json │ │ │ ├── GopjetEntity.json │ │ │ ├── HighFinnedBlueEntity.json │ │ │ ├── MudhorseEntity.json │ │ │ ├── NightLightSquidEntity.json │ │ │ ├── OrnateBugfishEntity.json │ │ │ ├── PapaWeeEntity.json │ │ │ ├── PeaWeeEntity.json │ │ │ ├── PenglilEntity.json │ │ │ ├── PhantomNudibranchEntity.json │ │ │ ├── RedBullCrabEntity.json │ │ │ ├── RiverPebbleSnailEntity.json │ │ │ ├── RubberBellyGliderEntity.json │ │ │ ├── SiderolWhiskeredSnailEntity.json │ │ │ ├── SpindlyGemCrabEntity.json │ │ │ ├── SwampMuckerEntity.json │ │ │ ├── TealArrowfishArrowEntity.json │ │ │ ├── TealArrowfishEntity.json │ │ │ ├── VibraWeeEntity.json │ │ │ ├── WeeWeeEntity.json │ │ │ ├── WherbleEntity.json │ │ │ └── WhiteBullCrabEntity.json │ │ ├── FoxEntity.json │ │ ├── GhastEntity.json │ │ ├── GiantEntity.json │ │ ├── Goblin Traders │ │ │ ├── GoblinTraderEntity.json │ │ │ └── VeinGoblinTraderEntity.json │ │ ├── Good Night's Sleep │ │ │ ├── BabyCreeperEntity.json │ │ │ ├── HerobrineEntity.json │ │ │ ├── TormenterEntity.json │ │ │ └── UnicornEntity.json │ │ ├── GraveStone │ │ │ └── GhostPlayerEntity.json │ │ ├── Greek Fantasy │ │ │ ├── AraEntity.json │ │ │ ├── ArachneEntity.json │ │ │ ├── CentaurEntity.json │ │ │ ├── CerastesEntity.json │ │ │ ├── CerberusEntity.json │ │ │ ├── CharybdisEntity.json │ │ │ ├── CirceEntity.json │ │ │ ├── CretanMinotaurEntity.json │ │ │ ├── CyclopesEntity.json │ │ │ ├── CyprianEntity.json │ │ │ ├── DrakainaEntity.json │ │ │ ├── DryadEntity.json │ │ │ ├── ElpisEntity.json │ │ │ ├── EmpusaEntity.json │ │ │ ├── FuryEntity.json │ │ │ ├── GiantBoarEntity.json │ │ │ ├── GiganteEntity.json │ │ │ ├── GorgonEntity.json │ │ │ ├── HarpyEntity.json │ │ │ ├── MadCowEntity.json │ │ │ ├── MakhaiEntity.json │ │ │ ├── MinotaurEntity.json │ │ │ ├── NaiadEntity.json │ │ │ ├── NemeanLionEntity.json │ │ │ ├── OrthusEntity.json │ │ │ ├── PythonEntity.json │ │ │ ├── SatyrEntity.json │ │ │ ├── ShadeEntity.json │ │ │ └── SirenEntity.json │ │ ├── Guard Villagers │ │ │ └── GuardEntity.json │ │ ├── GuardianEntity.json │ │ ├── HoglinEntity.json │ │ ├── IllusionerEntity.json │ │ ├── Infernal Expansion │ │ │ ├── BasaltGiantEntity.json │ │ │ ├── BlackstoneDwarfEntity.json │ │ │ ├── BlindsightEntity.json │ │ │ ├── EmbodyEntity.json │ │ │ ├── GlowsilkMothEntity.json │ │ │ ├── GlowsquitoEntity.json │ │ │ ├── ShroomloinEntity.json │ │ │ ├── SkeletalPiglinEntity.json │ │ │ ├── VolineEntity.json │ │ │ └── WarpbeetleEntity.json │ │ ├── Inventory Pets │ │ │ ├── AnvilPetEntity.json │ │ │ ├── BedPetEntity.json │ │ │ ├── BillGatesEntity.json │ │ │ ├── MiniQuantumBlazeEntity.json │ │ │ ├── MiniQuantumEndermanEntity.json │ │ │ ├── SatyaNadellaEntity.json │ │ │ └── SteveBallmerEntity.json │ │ ├── IronGolemEntity.json │ │ ├── Jellyfishing │ │ │ ├── AbstractJellyfishEntity.json │ │ │ ├── CowJellyfishEntity.json │ │ │ ├── CrimsonFungalJellyfishEntity.json │ │ │ ├── GlowstoneJellyfishEntity.json │ │ │ ├── GuardianJellyfishEntity.json │ │ │ ├── SlimeJellyfishEntity.json │ │ │ └── WarpedFungalJellyfishEntity.json │ │ ├── LlamaEntity.json │ │ ├── MagmaCubeEntity.json │ │ ├── Minecolonies │ │ │ ├── EntityAmazonChief.json │ │ │ ├── EntityArcherAmazon.json │ │ │ ├── EntityArcherBarbarian.json │ │ │ ├── EntityArcherMummy.json │ │ │ ├── EntityArcherPirate.json │ │ │ ├── EntityBarbarian.json │ │ │ ├── EntityCaptainPirate.json │ │ │ ├── EntityChiefBarbarian.json │ │ │ ├── EntityCitizen.json │ │ │ ├── EntityMercenary.json │ │ │ ├── EntityMummy.json │ │ │ ├── EntityNorsemenArcher.json │ │ │ ├── EntityNorsemenChief.json │ │ │ ├── EntityPirate.json │ │ │ ├── EntityShieldmaiden.json │ │ │ └── VisitorCitizen.json │ │ ├── Miniatures │ │ │ └── MiniMeEntity.json │ │ ├── Minibloom │ │ │ └── MinibloomEntity.json │ │ ├── MooshroomEntity.json │ │ ├── Mutant Beasts │ │ │ ├── CreeperMinionEntity.json │ │ │ ├── EndersoulCloneEntity.json │ │ │ ├── MutantCreeperEntity.json │ │ │ ├── MutantEndermanEntity.json │ │ │ ├── MutantSkeletonEntity.json │ │ │ ├── MutantSnowGolemEntity.json │ │ │ ├── MutantZombieEntity.json │ │ │ └── SpiderPigEntity.json │ │ ├── Mystical World │ │ │ ├── BeetleEntity.json │ │ │ ├── DeerEntity.json │ │ │ ├── DuckEntity.json │ │ │ ├── EnderminiEntity.json │ │ │ ├── FrogEntity.json │ │ │ ├── HellSproutEntity.json │ │ │ ├── LavaCatEntity.json │ │ │ ├── OwlEntity.json │ │ │ ├── SilkwormEntity.json │ │ │ ├── SilverFoxEntity.json │ │ │ └── SproutEntity.json │ │ ├── OcelotEntity.json │ │ ├── Odd Water Mobs │ │ │ ├── AnglerfishEntity$CustomEntity.json │ │ │ ├── AnglerfishPuffEntity$CustomEntity.json │ │ │ ├── BabySpiderCrabEntity$CustomEntity.json │ │ │ ├── CoelacanthEntity$CustomEntity.json │ │ │ ├── DarkGhostSharkEntity$CustomEntity.json │ │ │ ├── GhostSharkEntity$CustomEntity.json │ │ │ ├── HorseshoeCrabEntity$CustomEntity.json │ │ │ ├── IsopodEntity$CustomEntity.json │ │ │ ├── LongNosedGhostSharkEntity$CustomEntity.json │ │ │ ├── MudskipperEntity$CustomEntity.json │ │ │ ├── PinkGhostSharkEntity$CustomEntity.json │ │ │ └── SpiderCrabEntity$CustomEntity.json │ │ ├── Omni │ │ │ └── SeahorseEntity.json │ │ ├── PandaEntity.json │ │ ├── ParrotEntity.json │ │ ├── PetRock │ │ │ └── EntityPetRock.json │ │ ├── PhantomEntity.json │ │ ├── PigEntity.json │ │ ├── Platypuses │ │ │ └── PlatypusEntity.json │ │ ├── Player Mobs │ │ │ └── PlayerMobEntity.json │ │ ├── PlayerEntity.json │ │ ├── Pokecube AIO │ │ │ ├── LeaderNpc.json │ │ │ ├── NpcMob.json │ │ │ └── TrainerNpc.json │ │ ├── PolarBearEntity.json │ │ ├── PufferfishEntity.json │ │ ├── Quark │ │ │ ├── CrabEntity.json │ │ │ ├── ForgottenEntity.json │ │ │ ├── FoxhoundEntity.json │ │ │ ├── FrogEntity.json │ │ │ ├── ShibaEntity.json │ │ │ ├── StonelingEntity.json │ │ │ ├── ToretoiseEntity.json │ │ │ └── WraithEntity.json │ │ ├── RabbitEntity.json │ │ ├── Ravage & Cabbage │ │ │ ├── CabbagerEntity.json │ │ │ └── RCRavagerEntity.json │ │ ├── RavagerEntity.json │ │ ├── Resourceful Bees │ │ │ └── ResourcefulBee.json │ │ ├── SalmonEntity.json │ │ ├── SheepEntity.json │ │ ├── ShulkerEntity.json │ │ ├── SilverfishEntity.json │ │ ├── SlimeEntity.json │ │ ├── Snow Pig │ │ │ └── SnowPigEntity.json │ │ ├── SnowGolemEntity.json │ │ ├── SpiderEntity.json │ │ ├── Spooky Scary Jockeys │ │ │ └── LargeBatEntity.json │ │ ├── SquidEntity.json │ │ ├── Statues │ │ │ ├── PlayerStatueEntity.json │ │ │ └── StatueBatEntity.json │ │ ├── Straw Golem │ │ │ └── EntityStrawGolem.json │ │ ├── StriderEntity.json │ │ ├── Teletubbies │ │ │ ├── DipsyEntity.json │ │ │ ├── DipsyZombieEntity.json │ │ │ ├── LaaLaaEntity.json │ │ │ ├── LaaLaaZombieEntity.json │ │ │ ├── NooNooEntity.json │ │ │ ├── PoEntity.json │ │ │ ├── PoZombieEntity.json │ │ │ ├── TiddlytubbyEntity.json │ │ │ ├── TinkyWinkyEntity.json │ │ │ └── TinkyWinkyZombieEntity.json │ │ ├── Terra Incognita │ │ │ └── ButterflyEntity.json │ │ ├── The Bumblezone │ │ │ └── HoneySlimeEntity.json │ │ ├── The Conjurer │ │ │ └── ConjurerEntity.json │ │ ├── The Lord of the Rings Mod Renewed │ │ │ ├── BlueDwarfEntity.json │ │ │ ├── BreeHobbitEntity.json │ │ │ ├── BreeManEntity.json │ │ │ ├── CaracalEntity.json │ │ │ ├── CoastSouthronEntity.json │ │ │ ├── DaleManEntity.json │ │ │ ├── DundelingEntity.json │ │ │ ├── DwarfEntity.json │ │ │ ├── GaladhrimElfEntity.json │ │ │ ├── GondorManEntity.json │ │ │ ├── GundabadOrcEntity.json │ │ │ ├── HarnedhrimEntity.json │ │ │ ├── HobbitEntity.json │ │ │ ├── LindonElfEntity.json │ │ │ ├── MordorOrcEntity.json │ │ │ ├── RivendellElfEntity.json │ │ │ ├── RohanManEntity.json │ │ │ ├── UmbarManEntity.json │ │ │ ├── UrukEntity.json │ │ │ └── WoodElfEntity.json │ │ ├── Thermal │ │ │ ├── BasalzEntity.json │ │ │ ├── BlitzEntity.json │ │ │ └── BlizzEntity.json │ │ ├── Toad Terror │ │ │ ├── ToadProtectorEntity.json │ │ │ └── ToadSentinelEntity.json │ │ ├── TropicalFishEntity.json │ │ ├── TurtleEntity.json │ │ ├── Twilight Forest │ │ │ ├── EntityStableIceCore.json │ │ │ ├── EntityTFAdherent.json │ │ │ ├── EntityTFBlockGoblin.json │ │ │ ├── EntityTFBoar.json │ │ │ ├── EntityTFBunny.json │ │ │ ├── EntityTFDeer.json │ │ │ ├── EntityTFFireBeetle.json │ │ │ ├── EntityTFGiantMiner.json │ │ │ ├── EntityTFGoblinKnightUpper.json │ │ │ ├── EntityTFHelmetCrab.json │ │ │ ├── EntityTFKobold.json │ │ │ ├── EntityTFLich.json │ │ │ ├── EntityTFMinoshroom.json │ │ │ ├── EntityTFMinotaur.json │ │ │ ├── EntityTFNaga.json │ │ │ ├── EntityTFPenguin.json │ │ │ ├── EntityTFPinchBeetle.json │ │ │ ├── EntityTFQuestRam.json │ │ │ ├── EntityTFRaven.json │ │ │ ├── EntityTFRedcap.json │ │ │ ├── EntityTFSlimeBeetle.json │ │ │ ├── EntityTFSnowQueen.json │ │ │ ├── EntityTFSquirrel.json │ │ │ ├── EntityTFTinyBird.json │ │ │ ├── EntityTFTowerGhast.json │ │ │ ├── EntityTFTowerGolem.json │ │ │ ├── EntityTFTowerTermite.json │ │ │ ├── EntityTFTroll.json │ │ │ ├── EntityTFUrGhast.json │ │ │ ├── EntityTFWraith.json │ │ │ ├── EntityTFYeti.json │ │ │ ├── EntityTFYetiAlpha.json │ │ │ └── EntityUnstableIceCore.json │ │ ├── Vemerioraptor │ │ │ ├── BrontosaurusEntity.json │ │ │ ├── PlesiosaurusEntity.json │ │ │ └── VemerioraptorEntity.json │ │ ├── VexEntity.json │ │ ├── Whisperwoods │ │ │ ├── EntityHidebehind.json │ │ │ ├── EntityHirschgeist.json │ │ │ ├── EntityMoth.json │ │ │ └── EntityZotzpyre.json │ │ ├── WitchEntity.json │ │ ├── WitherEntity.json │ │ ├── WolfEntity.json │ │ ├── ZoglinEntity.json │ │ ├── ZombieEntity.json │ │ ├── ZombieVillagerEntity.json │ │ └── ZombifiedPiglinEntity.json │ └── themes │ │ ├── aztec.json │ │ ├── blue&black.json │ │ ├── blue&orange.json │ │ ├── default.json │ │ ├── grassgreen.json │ │ ├── green&black.json │ │ ├── lazygray.json │ │ ├── monogeneric.json │ │ ├── nightblack.json │ │ ├── red&black.json │ │ ├── skyblue.json │ │ └── whitelight.json ├── illageandspillage-client.toml ├── illageandspillage-common.toml ├── illagers_plus.toml ├── immersiveengineering-client.toml ├── immersiveengineering-common.toml ├── instantunify-common.toml ├── inventoryprofilesnext │ ├── integrationHints │ │ ├── exampleIntegrationHints.json │ │ └── player-defined.json │ ├── inventoryprofiles.json │ └── 新的世界 │ │ ├── lockSlots.txt │ │ └── villager-trading-config.json ├── ironfurnaces-client.toml ├── ironfurnaces.toml ├── item_render_rebirth-common.toml ├── jecharacters.toml ├── jei-client.toml ├── jeresources-common.toml ├── jeresources.toml ├── konkrete │ └── locals │ │ ├── de_de.local │ │ ├── en_us.local │ │ ├── pl_pl.local │ │ └── pt_br.local ├── litewolfcore-client.toml ├── loading.png ├── lootr-client.toml ├── lootr-common.toml ├── magnesium_extras.toml ├── mcjtylib-client.toml ├── mgrb_extras.toml ├── mgrb_extras_entitylist.toml ├── mythicbotany-client.toml ├── mythicbotany.json5 ├── naturesaura-common.toml ├── naturescompass-client.toml ├── naturescompass-common.toml ├── neat-client.toml ├── netherite_plus.json ├── netherportalspread-common.toml ├── netherportalspread │ └── spreadsettings.txt ├── notenoughcrashes.json ├── oculus.properties ├── openloader-common.toml ├── opotato-mixins.properties ├── oretweaker │ ├── Info.txt │ ├── OreTweaker.toml │ ├── data │ │ ├── ancient_debris.json │ │ ├── andesite.json │ │ ├── blackstone.json │ │ ├── coal_ore.json │ │ ├── diamond_ore.json │ │ ├── diorite.json │ │ ├── dirt.json │ │ ├── emerald_ore.json │ │ ├── gold_ore.json │ │ ├── granite.json │ │ ├── gravel.json │ │ ├── infested_stone.json │ │ ├── iron_ore.json │ │ ├── lapis_ore.json │ │ ├── magma_block.json │ │ ├── nether_gold_ore.json │ │ ├── nether_quartz_ore.json │ │ ├── redstone_ore.json │ │ └── soul_sand.json │ └── templates │ │ ├── collectives │ │ ├── default.json │ │ ├── default_nether.json │ │ └── default_overworld.json │ │ ├── defaults │ │ ├── ancient_debris.json │ │ ├── andesite.json │ │ ├── blackstone.json │ │ ├── coal_ore.json │ │ ├── diamond_ore.json │ │ ├── diorite.json │ │ ├── dirt.json │ │ ├── emerald_ore.json │ │ ├── gold_ore.json │ │ ├── granite.json │ │ ├── gravel.json │ │ ├── infested_stone.json │ │ ├── iron_ore.json │ │ ├── lapis_ore.json │ │ ├── magma_block.json │ │ ├── nether_gold_ore.json │ │ ├── nether_quartz_ore.json │ │ ├── redstone_ore.json │ │ └── soul_sand.json │ │ ├── other │ │ └── fuck_silverfish.json │ │ └── remove │ │ ├── remove_everything.json │ │ ├── remove_everything_nether.json │ │ ├── remove_everything_overworld.json │ │ ├── remove_igneous_rocks.json │ │ ├── remove_ores.json │ │ ├── remove_ores_nether.json │ │ ├── remove_ores_overworld.json │ │ ├── remove_stones.json │ │ ├── remove_stones_nether.json │ │ └── remove_stones_overworld.json ├── packmenu.cfg ├── patchouli-client.toml ├── performant-common.toml ├── pipez-client.toml ├── polymorph-integrations.toml ├── prefab.toml ├── quark-common-1.toml.bak ├── quark-common-2.toml.bak ├── quark-common.toml ├── rats-client.toml ├── rats-common.toml ├── refinedstorage-client.toml ├── repurposed_structures-forge │ ├── bastions.toml │ ├── biome_dimension_allow_disallow_configs.json5 │ ├── cities.toml │ ├── dungeons.toml │ ├── fortresses.toml │ ├── igloos.toml │ ├── mansions.toml │ ├── mineshafts.toml │ ├── modded_loot.toml │ ├── natural_mob_spawning_configs.json5 │ ├── outposts.toml │ ├── pyramids.toml │ ├── ruined_portals.toml │ ├── ruins.toml │ ├── shipwrecks.toml │ ├── strongholds.toml │ ├── temples.toml │ ├── villages.toml │ ├── wells.toml │ └── witch_huts.toml ├── rubidium-mixins.properties ├── rubidium-options.json ├── savageandravage-client.toml ├── savageandravage-common.toml ├── scaling-health │ ├── client.toml │ ├── common.toml │ └── game_settings.toml ├── sci4me │ └── Torcherino.cfg ├── sidebar_buttons.json ├── sodiumextra-options.json ├── sodiumextra.properties ├── spark │ └── activity.json ├── stoneholm.json5 ├── structure_gel-client.toml ├── structure_gel-common.toml ├── the_bumblezone │ ├── bee_aggression.toml │ ├── client.toml │ ├── dimension.toml │ ├── general.toml │ ├── mod_compatibility.toml │ └── worldgen.toml ├── thermal-client.toml ├── toastcontrol-common.toml ├── torohealth.json ├── twilightforest-client.toml ├── twilightforest-common.toml ├── ultra_amplified_dimension.toml ├── unusual_end.json ├── waila │ ├── waila.json │ └── waila_plugins.json ├── wailaharvestability-client-1.toml.bak ├── wailaharvestability-client.toml ├── waystones-client.toml ├── waystones-common.toml ├── waystones-server.toml ├── when-dungeons-arise-common.toml ├── worleycaves-client.toml ├── worleycaves-common-1.toml.bak ├── worleycaves-common-2.toml.bak ├── worleycaves-common-3.toml.bak ├── worleycaves-common-4.toml.bak ├── worleycaves-common-5.toml.bak ├── worleycaves-common.toml ├── yungsbridges-forge-1_16-1.toml.bak └── yungsbridges-forge-1_16.toml ├── python ├── block_loot_table.py ├── lang.json ├── mek_data_gen.py └── tier_item_gen.py ├── scripts ├── api │ ├── astral │ │ ├── base.zs │ │ └── tags.zs │ ├── bloodmagic │ │ └── base.zs │ ├── botania │ │ ├── recipes.zs │ │ └── tag.zs │ ├── crockpot │ │ └── foodvalue.zs │ ├── emcworld │ │ ├── base.zs │ │ ├── loot_table.zs │ │ ├── oreProce │ │ │ ├── emcOres.zs │ │ │ └── emcOresProce.zs │ │ └── tag.zs │ ├── extendedcrafting │ │ └── base.zs │ ├── jei │ │ ├── desc.zs │ │ └── hide.zs │ ├── main.zs │ ├── mekanism │ │ ├── base.zs │ │ ├── cyanideProce │ │ │ ├── basic.zs │ │ │ ├── cyanideRecipe.zs │ │ │ └── nitrogenRecipe.zs │ │ ├── oreProce │ │ │ ├── extraOre.zs │ │ │ └── oreProcessing.zs │ │ └── tooltip.zs │ ├── natureaura │ │ └── base.zs │ ├── projecte │ │ └── emcItem.zs │ ├── thermal │ │ ├── fix.zs │ │ ├── fixRecipes.zs │ │ └── removeTags.zs │ └── vanilla │ │ └── recipes.zs ├── events │ └── event.zs ├── loot_tables │ ├── aether.zs │ ├── atum.zs │ ├── bloodmagic.zs │ ├── emcworld │ │ ├── emcworld.zs │ │ ├── gnsTable.zs │ │ ├── ipsTable.zs │ │ ├── mods.zs │ │ └── util.zs │ ├── minecraft.zs │ └── twilight.zs ├── recipes │ ├── abyss │ │ └── recipes.zs │ ├── aether │ │ └── recipes.zs │ ├── after_night │ │ └── recipes.zs │ ├── astral │ │ └── recipes.zs │ ├── atlantis │ │ └── recipes.zs │ ├── atum │ │ └── recipes.zs │ ├── bloodmagic │ │ └── recipes.zs │ ├── botania │ │ ├── modifyRecipe.zs │ │ └── recipes.zs │ ├── byg │ │ ├── pendorite.zs │ │ └── recipes.zs │ ├── emcworld │ │ ├── food.zs │ │ ├── oreProcessing.zs │ │ ├── recipes │ │ │ ├── advancedColor.zs │ │ │ ├── color.zs │ │ │ ├── colorfulBlock │ │ │ │ ├── AddonColor.zs │ │ │ │ ├── BaseColor.zs │ │ │ │ ├── ColorfulRecipes.zs │ │ │ │ ├── ReduceColor.zs │ │ │ │ └── TimeColor.zs │ │ │ ├── crafting.zs │ │ │ ├── difficulty │ │ │ │ ├── D1Recipes.zs │ │ │ │ ├── D2Recipes.zs │ │ │ │ ├── D3Recipes.zs │ │ │ │ └── DifficultyRecipes.zs │ │ │ ├── equipments │ │ │ │ └── StaffRecipe.zs │ │ │ ├── final.zs │ │ │ ├── final │ │ │ │ ├── f1.zs │ │ │ │ ├── f2.zs │ │ │ │ ├── f3.zs │ │ │ │ ├── f4.zs │ │ │ │ └── f5.zs │ │ │ ├── getter │ │ │ │ ├── ArmorGetter.zs │ │ │ │ ├── BaseGetter.zs │ │ │ │ ├── BlockGetter.zs │ │ │ │ ├── GobberGetter.zs │ │ │ │ ├── NetherGetter.zs │ │ │ │ ├── PipeGetter.zs │ │ │ │ └── SingGetter.zs │ │ │ ├── ice.zs │ │ │ ├── pro.zs │ │ │ ├── recipes.zs │ │ │ ├── removeRecipes.zs │ │ │ ├── singularity.zs │ │ │ ├── smithRecipe.zs │ │ │ ├── stage │ │ │ │ ├── EMCStage.zs │ │ │ │ └── StageGetter.zs │ │ │ ├── trade.zs │ │ │ └── util.zs │ │ └── tag.zs │ ├── extendedcrafting │ │ └── recipes.zs │ ├── gobber │ │ ├── addIngotRecipe.zs │ │ ├── oreProce.zs │ │ └── removeRecipe.zs │ ├── hem │ │ └── recipes.zs │ ├── mekanism │ │ ├── EnrichRecipe.zs │ │ ├── InfusionRecipe.zs │ │ ├── alloyRecipe.zs │ │ ├── cyanideRecipe.zs │ │ ├── oreProcessing.zs │ │ └── recipes.zs │ ├── natureaura │ │ └── recipes.zs │ ├── projecte │ │ └── recipes.zs │ ├── quark │ │ └── recipes.zs │ ├── rats │ │ └── recipes.zs │ ├── rs │ │ └── recipes.zs │ ├── thermal │ │ └── removeRecipes.zs │ └── undergarden │ │ └── recipes.zs ├── start.zs └── utils │ ├── dimension_stages.zs │ ├── expand.zs │ ├── getter.zs │ ├── helper │ └── getRecipeName.zs │ ├── item_stages.zs │ ├── math.zs │ ├── setting.zs │ └── stage.zs ├── src ├── main │ ├── java │ │ └── biggestxuan │ │ │ └── emcworld │ │ │ ├── EMCWorld.java │ │ │ ├── api │ │ │ ├── EMCWorldAPI.java │ │ │ ├── EMCWorldSince.java │ │ │ ├── IWIP.java │ │ │ ├── OnlyDev.java │ │ │ ├── block │ │ │ │ ├── BaseContainerTileEntity.java │ │ │ │ ├── BaseTileBlock.java │ │ │ │ ├── BaseUpgradeBlock.java │ │ │ │ ├── BaseUpgradeTileEntity.java │ │ │ │ └── EMCWorldBaseContainer.java │ │ │ ├── capability │ │ │ │ ├── IEntityUtilCapability.java │ │ │ │ ├── IPlayerSkillCapability.java │ │ │ │ └── IUtilCapability.java │ │ │ ├── crafttweaker │ │ │ │ ├── CrTAltarRecipe.java │ │ │ │ ├── CrTEMCStage.java │ │ │ │ ├── CrTInfuserRecipe.java │ │ │ │ ├── CrTMythicInfusionRecipe.java │ │ │ │ ├── CrTOfferRecipe.java │ │ │ │ ├── CrTSpawnerRecipe.java │ │ │ │ ├── CrTSteelFurnaceRecipe.java │ │ │ │ ├── CrTTreeRitualRecipe.java │ │ │ │ └── CrockPot │ │ │ │ │ ├── CrTCookPotRecipe.java │ │ │ │ │ ├── CrTExplosionRecipe.java │ │ │ │ │ ├── CrTFoodValue.java │ │ │ │ │ ├── CrTFoodValueDefinition.java │ │ │ │ │ ├── CrTPiglinTrade.java │ │ │ │ │ ├── CrTRequirement.java │ │ │ │ │ └── CrTWeightItem.java │ │ │ ├── entity │ │ │ │ ├── PlayerBaseEntity.java │ │ │ │ └── PlayerRaidBaseEntity.java │ │ │ ├── event │ │ │ │ ├── LivingEatFoodEvent.java │ │ │ │ ├── PlayerAddMaxLevelEvent.java │ │ │ │ ├── PlayerEMCShiedCostEvent.java │ │ │ │ ├── PlayerGetXPEvent.java │ │ │ │ ├── PlayerModifyEMCEvent.java │ │ │ │ ├── PlayerPrefixFreshEvent.java │ │ │ │ ├── PlayerShieldDefenseEvent.java │ │ │ │ └── PlayerUpgradeItemEvent.java │ │ │ ├── item │ │ │ │ ├── EMCWorldBaseItem.java │ │ │ │ ├── ICostEMCItem.java │ │ │ │ ├── IDifficultyItem.java │ │ │ │ ├── IDisableAnvilItem.java │ │ │ │ ├── IEMCGod.java │ │ │ │ ├── IEMCInfuserItem.java │ │ │ │ ├── IEMCRepairableItem.java │ │ │ │ ├── IFakeEMCItem.java │ │ │ │ ├── IKillCountItem.java │ │ │ │ ├── IModpackItem.java │ │ │ │ ├── INameItem.java │ │ │ │ ├── INeedLevelItem.java │ │ │ │ ├── IOwnerItem.java │ │ │ │ ├── IPlayerDifficultyItem.java │ │ │ │ ├── IPrefixItem.java │ │ │ │ ├── ISecondEMCItem.java │ │ │ │ ├── ISponsorItem.java │ │ │ │ ├── IUpgradeableItem.java │ │ │ │ ├── IUpgradeableMaterial.java │ │ │ │ ├── IUpgradeableTool.java │ │ │ │ ├── base │ │ │ │ │ ├── BaseCuriosItem.java │ │ │ │ │ ├── BaseDifficultyItem.java │ │ │ │ │ ├── BaseFestivalItem.java │ │ │ │ │ ├── BaseFoodItem.java │ │ │ │ │ ├── BaseGetStageItem.java │ │ │ │ │ ├── BaseModPackItem.java │ │ │ │ │ └── BaseUpgradeBlockItem.java │ │ │ │ └── equipment │ │ │ │ │ ├── IAttackSpeedItem.java │ │ │ │ │ ├── IEMCGodWeaponLevel.java │ │ │ │ │ ├── IGemInlaidItem.java │ │ │ │ │ ├── IPurityItem.java │ │ │ │ │ ├── IStarItem.java │ │ │ │ │ ├── ISuckerItem.java │ │ │ │ │ ├── armor │ │ │ │ │ ├── BaseArmorItem.java │ │ │ │ │ ├── BaseEMCGodArmorItem.java │ │ │ │ │ ├── EMCWorldArmorMaterial.java │ │ │ │ │ ├── IEMCShieldArmor.java │ │ │ │ │ ├── IHealBoostArmor.java │ │ │ │ │ ├── IReachArmor.java │ │ │ │ │ ├── ISpeedArmor.java │ │ │ │ │ └── IUpgradeableArmor.java │ │ │ │ │ ├── bow │ │ │ │ │ └── IUpgradeBow.java │ │ │ │ │ ├── dagger │ │ │ │ │ ├── BaseEMCGodDagger.java │ │ │ │ │ └── IDaggerTier.java │ │ │ │ │ ├── gun │ │ │ │ │ ├── BaseEMCGodGun.java │ │ │ │ │ └── IGunTier.java │ │ │ │ │ ├── staff │ │ │ │ │ ├── BaseEMCGodStaff.java │ │ │ │ │ └── IStaffTier.java │ │ │ │ │ ├── warhammer │ │ │ │ │ ├── BaseEMCGodWarHammer.java │ │ │ │ │ └── IWarHammerTier.java │ │ │ │ │ └── weapon │ │ │ │ │ ├── BaseEMCGodSword.java │ │ │ │ │ ├── BaseWeaponItem.java │ │ │ │ │ ├── IAdditionsDamageWeapon.java │ │ │ │ │ ├── ICriticalWeapon.java │ │ │ │ │ ├── IRangeAttackWeapon.java │ │ │ │ │ └── IUpgradeableWeapon.java │ │ │ ├── recipe │ │ │ │ ├── IUpdateRecipe.java │ │ │ │ ├── helper │ │ │ │ │ └── NoInventoryRecipe.java │ │ │ │ └── ioRecipe │ │ │ │ │ ├── BaseIORecipe.java │ │ │ │ │ ├── BaseIOSerializer.java │ │ │ │ │ └── BaseIOType.java │ │ │ └── trait │ │ │ │ ├── AbstractTrait.java │ │ │ │ ├── IHasTraitItem.java │ │ │ │ ├── ITrait.java │ │ │ │ └── TraitType.java │ │ │ ├── client │ │ │ ├── EMCCoreItemColor.java │ │ │ ├── RegisterModel.java │ │ │ ├── event │ │ │ │ ├── ClientMessageEvent.java │ │ │ │ ├── ClientTickEvent.java │ │ │ │ ├── ColorHandlerEvent.java │ │ │ │ ├── ItemToolTipEvent.java │ │ │ │ ├── RenderEvent.java │ │ │ │ └── WarningEvent.java │ │ │ ├── hud │ │ │ │ ├── EMCWorldHUD.java │ │ │ │ └── RendEMCEvent.java │ │ │ ├── key │ │ │ │ ├── Admin.java │ │ │ │ ├── ArcanaDisplay.java │ │ │ │ ├── LastShield.java │ │ │ │ ├── LiveMode.java │ │ │ │ ├── PickModeKey.java │ │ │ │ ├── RangeAttack.java │ │ │ │ ├── SpeedControl.java │ │ │ │ └── Trait.java │ │ │ ├── lottery │ │ │ │ ├── BuyLotteryScreen.java │ │ │ │ ├── ChooseLotteryScreen.java │ │ │ │ ├── CompoundLotteryScreen.java │ │ │ │ ├── SimpleLotteryScreen.java │ │ │ │ └── TBLotteryScreen.java │ │ │ ├── models │ │ │ │ ├── EMCLevelModel.java │ │ │ │ ├── GodGunModel.java │ │ │ │ └── ModelRegistry.java │ │ │ ├── render │ │ │ │ ├── ArcanaBar.java │ │ │ │ ├── ContainerDenyRender.java │ │ │ │ ├── EMCShieldBar.java │ │ │ │ └── StarPedestalRender.java │ │ │ └── screen │ │ │ │ ├── AddModScreen.java │ │ │ │ ├── AdminScreen.java │ │ │ │ ├── AdvancedUpdateGUI.java │ │ │ │ ├── BaseEMCConfirmScreen.java │ │ │ │ ├── CompassScreen │ │ │ │ ├── FindBiomeScreen.java │ │ │ │ ├── FindScreen.java │ │ │ │ ├── TeleportBiomeScreen.java │ │ │ │ └── TeleportScreen.java │ │ │ │ ├── EMCCoreScreen.java │ │ │ │ ├── EMCOreCoreGUI.java │ │ │ │ ├── EMCWorldContainerHelperGUI.java │ │ │ │ ├── EMCWorldHelperGUI.java │ │ │ │ ├── GemstoneGUI.java │ │ │ │ ├── IHelperScreen.java │ │ │ │ ├── InfuserGUI.java │ │ │ │ ├── OpenScreen.java │ │ │ │ ├── PCLWarningScreen.java │ │ │ │ ├── PersonalLinkScreen.java │ │ │ │ ├── PrefixGUI.java │ │ │ │ ├── ProfessionGUI.java │ │ │ │ ├── SpeedClockScreen.java │ │ │ │ ├── SteelFurnaceGUI.java │ │ │ │ ├── SuperEMCGUI.java │ │ │ │ ├── TopCoreGUI.java │ │ │ │ ├── UpdateCoreGUI.java │ │ │ │ └── WeaponUpgradeGUI.java │ │ │ └── common │ │ │ ├── blocks │ │ │ ├── AdvancedUpdateBlock.java │ │ │ ├── EMCCoreBlock.java │ │ │ ├── EMCOreCoreBlock.java │ │ │ ├── EWBlock.java │ │ │ ├── EWUpdateBlock.java │ │ │ ├── FakeAltar.java │ │ │ ├── GemstoneBlock.java │ │ │ ├── InfuserBlock.java │ │ │ ├── InfuserMultiBlock.java │ │ │ ├── MultiBlock.java │ │ │ ├── Ores │ │ │ │ ├── EWDirtOre.java │ │ │ │ └── EWStoneOre.java │ │ │ ├── PrefixBlock.java │ │ │ ├── ProfessionalBlock.java │ │ │ ├── StarPedestalBlock.java │ │ │ ├── StarPedestalMultiBlock.java │ │ │ ├── SteelFurnaceCore.java │ │ │ ├── SuperEMCBlock.java │ │ │ ├── TestBlock.java │ │ │ ├── TopCoreBlock.java │ │ │ ├── UpdateBlock.java │ │ │ ├── VisConversionBlock.java │ │ │ ├── WeaponUpgradeBlock.java │ │ │ ├── container │ │ │ │ ├── AdvancedUpdateContainer.java │ │ │ │ ├── EMCCoreContainer.java │ │ │ │ ├── EMCOreCoreContainer.java │ │ │ │ ├── GemstoneContainer.java │ │ │ │ ├── InfuserContainer.java │ │ │ │ ├── PersonalLinkContainer.java │ │ │ │ ├── PrefixContainer.java │ │ │ │ ├── SteelFurnaceCoreContainer.java │ │ │ │ ├── SuperEMCContainer.java │ │ │ │ ├── TopCoreContainer.java │ │ │ │ ├── WeaponUpgradeContainer.java │ │ │ │ └── slot │ │ │ │ │ ├── GemSlot.java │ │ │ │ │ ├── GemWeaponSlot.java │ │ │ │ │ ├── GemstoneSlot.java │ │ │ │ │ ├── LuckySlot.java │ │ │ │ │ ├── MaterialSlot.java │ │ │ │ │ ├── PrefixSlot.java │ │ │ │ │ ├── ResultSlot.java │ │ │ │ │ └── WeaponSlot.java │ │ │ └── tile │ │ │ │ ├── AdvancedUpdateNumber.java │ │ │ │ ├── AdvancedUpdateTileEntity.java │ │ │ │ ├── EMCCoreTileEntity.java │ │ │ │ ├── EMCOreCoreTileEntity.java │ │ │ │ ├── GemstoneTileEntity.java │ │ │ │ ├── InfuserBlockTileEntity.java │ │ │ │ ├── PrefixTileEntity.java │ │ │ │ ├── StarPedestalTileEntity.java │ │ │ │ ├── SteelFurnaceTileEntity.java │ │ │ │ ├── SuperEMCTileEntity.java │ │ │ │ ├── TopCoreTileEntity.java │ │ │ │ ├── VisConversionTileEntity.java │ │ │ │ └── WeaponUpgradeBlockTileEntity.java │ │ │ ├── capability │ │ │ ├── CommonEventHandler.java │ │ │ ├── CommonSetupEventHandler.java │ │ │ ├── EMCWorldCapability.java │ │ │ ├── EntityUtil │ │ │ │ ├── EntityUtilCapability.java │ │ │ │ └── EntityUtilCapabilityProvider.java │ │ │ ├── PlayerLevel │ │ │ │ ├── PlayerLevelCapability.java │ │ │ │ └── PlayerLevelCapabilityProvider.java │ │ │ └── Util │ │ │ │ ├── UtilCapability.java │ │ │ │ └── UtilCapabilityProvider.java │ │ │ ├── command │ │ │ ├── Register.java │ │ │ └── run │ │ │ │ ├── ChangeSponsor.java │ │ │ │ ├── DumpPlayerInfo.java │ │ │ │ ├── Hand.java │ │ │ │ └── LotteryFresh.java │ │ │ ├── compact │ │ │ ├── AstralSorcery │ │ │ │ ├── EMCConstellationEffects.java │ │ │ │ ├── EMCMantleEffects.java │ │ │ │ └── Perk │ │ │ │ │ └── ArmorPerk.java │ │ │ ├── BloodMagic │ │ │ │ └── BloodMagicHelper.java │ │ │ ├── Botania │ │ │ │ ├── BotaniaFlowers │ │ │ │ │ └── TileEMCFlower.java │ │ │ │ └── FlowerBlock.java │ │ │ ├── CraftTweaker │ │ │ │ ├── CrTCalendar.java │ │ │ │ ├── CrTConfig.java │ │ │ │ ├── CrTDifficultyItem.java │ │ │ │ ├── CrTEMCWorldItem.java │ │ │ │ ├── CrTItemStage.java │ │ │ │ ├── CrTItemUtils.java │ │ │ │ ├── CrTLang.java │ │ │ │ ├── CrTLevelItem.java │ │ │ │ ├── CrTPlayerExpand.java │ │ │ │ └── CrTSingularity.java │ │ │ ├── Curios │ │ │ │ └── PlayerCuriosUtils.java │ │ │ ├── FTBQuests │ │ │ │ └── QuestReward.java │ │ │ ├── GameStage │ │ │ │ └── GameStageManager.java │ │ │ ├── Hwyla │ │ │ │ ├── DataProvider.java │ │ │ │ └── EMCWorldHwylaPlugin.java │ │ │ ├── JEI │ │ │ │ ├── AdvanceUpdate │ │ │ │ │ ├── AdvancedUpdateCategory.java │ │ │ │ │ └── JEIAdvancedUpdateRecipe.java │ │ │ │ ├── Afterlight │ │ │ │ │ ├── Ancient │ │ │ │ │ │ ├── AncientCategory.java │ │ │ │ │ │ └── AncientRecipe.java │ │ │ │ │ ├── Glyph │ │ │ │ │ │ ├── GlyphCategory.java │ │ │ │ │ │ └── GlyphRecipe.java │ │ │ │ │ └── Ritual │ │ │ │ │ │ ├── RitualCategory.java │ │ │ │ │ │ └── RitualRecipe.java │ │ │ │ ├── CollectorFixCategory.java │ │ │ │ ├── EMCOre │ │ │ │ │ ├── EMCOreCategory.java │ │ │ │ │ └── EMCOreJEIRecipe.java │ │ │ │ ├── EMCWorldJEIPlugin.java │ │ │ │ ├── FTBQ │ │ │ │ │ └── FTBQCategory.java │ │ │ │ ├── Infuser │ │ │ │ │ └── InfuserCategory.java │ │ │ │ ├── JEILang.java │ │ │ │ ├── PiglinRecipe │ │ │ │ │ ├── JEIPiglinRecipe.java │ │ │ │ │ └── PiglinCategory.java │ │ │ │ ├── Star │ │ │ │ │ └── StarCategory.java │ │ │ │ ├── SteelFurnace │ │ │ │ │ └── SteelFurnaceCategory.java │ │ │ │ ├── SuperEMC │ │ │ │ │ └── SuperEMCCategory.java │ │ │ │ └── Update │ │ │ │ │ ├── JEIUpdateRecipe.java │ │ │ │ │ └── UpdateCategory.java │ │ │ ├── Mekanism │ │ │ │ ├── EWSlurry.java │ │ │ │ ├── EWSlurryBuilder.java │ │ │ │ ├── MekUtils.java │ │ │ │ └── Module │ │ │ │ │ ├── EMCProtect │ │ │ │ │ ├── EnergyProtectModuleItem.java │ │ │ │ │ └── EnergyProtectModuleUnit.java │ │ │ │ │ └── Infinity │ │ │ │ │ ├── InfinityModuleItem.java │ │ │ │ │ └── InfinityModuleUnit.java │ │ │ ├── MysticalAgriculture │ │ │ │ ├── EMCWorldEssenceItem.java │ │ │ │ └── EMCWorldMysticalAgriculturePlugin.java │ │ │ ├── Projecte │ │ │ │ ├── EMCGemsMapping.java │ │ │ │ ├── EMCHelper.java │ │ │ │ ├── KnowledgeHelper.java │ │ │ │ ├── ModifyCollector.java │ │ │ │ └── itf │ │ │ │ │ └── ICollectorLifeSpan.java │ │ │ └── ScalingHealth │ │ │ │ └── DifficultyHelper.java │ │ │ ├── config │ │ │ ├── ClientConfigManager.java │ │ │ └── ConfigManager.java │ │ │ ├── creativeTab │ │ │ ├── EWCEquipmentTab.java │ │ │ ├── EWCreativeTab.java │ │ │ ├── EWOreItemsTab.java │ │ │ ├── EWOresTab.java │ │ │ └── EWQuestsTab.java │ │ │ ├── data │ │ │ ├── DifficultyData.java │ │ │ ├── LotteryData.java │ │ │ └── ShareEMCData.java │ │ │ ├── enchantments │ │ │ ├── BaseEnchantment.java │ │ │ ├── EMCGiantKillerEnchantment.java │ │ │ ├── EMCLootingEnchantment.java │ │ │ ├── EMCReduceEnchantment.java │ │ │ └── EMCRepairEnchantment.java │ │ │ ├── entity │ │ │ ├── AmmoEntity.java │ │ │ ├── EMCWorldFakePlayer.java │ │ │ ├── IceCreamEntity.java │ │ │ └── Player │ │ │ │ ├── Abunana.java │ │ │ │ ├── Alfie_zh.java │ │ │ │ ├── Biggest_Xuan.java │ │ │ │ ├── Btmy.java │ │ │ │ ├── ChiYuanOvO.java │ │ │ │ ├── Cxk.java │ │ │ │ ├── Dctor_0415.java │ │ │ │ ├── Depair_Anwu.java │ │ │ │ ├── Jaoxaono.java │ │ │ │ ├── JueFei.java │ │ │ │ ├── LAMB_Kisara.java │ │ │ │ ├── MCyunxi.java │ │ │ │ ├── Maplefung.java │ │ │ │ ├── Tulye.java │ │ │ │ ├── WangLaoTou.java │ │ │ │ ├── Xiangshushumiao.java │ │ │ │ ├── Xk9940.java │ │ │ │ ├── Xy177.java │ │ │ │ ├── Yuan_Shou.java │ │ │ │ ├── cmzxymzx.java │ │ │ │ ├── dytlj7788.java │ │ │ │ └── sdxhop.java │ │ │ ├── events │ │ │ ├── LivingEvent │ │ │ │ ├── EnderTeleportEvent.java │ │ │ │ ├── LivingDamageEvent.java │ │ │ │ ├── LivingDeathDropsEvent.java │ │ │ │ ├── LivingDeathEvent.java │ │ │ │ ├── LivingDropEvent.java │ │ │ │ ├── LivingDropExperienceEvent.java │ │ │ │ ├── LivingHealEvent.java │ │ │ │ ├── LivingHurtEvent.java │ │ │ │ ├── LivingJoinWorldEvent.java │ │ │ │ └── LivingPotionRemoveEvent.java │ │ │ ├── PlayerEvent │ │ │ │ ├── PlayerAttackEvent.java │ │ │ │ ├── PlayerChatEvent.java │ │ │ │ ├── PlayerClickEvent.java │ │ │ │ ├── PlayerCommonEvent.java │ │ │ │ ├── PlayerDeathEvent.java │ │ │ │ ├── PlayerEMCEvent.java │ │ │ │ ├── PlayerEmcShieldEvent.java │ │ │ │ ├── PlayerGetKnowledgeEvent.java │ │ │ │ ├── PlayerHurtEvent.java │ │ │ │ ├── PlayerLoggedEvent.java │ │ │ │ ├── PlayerPickUpItemEvent.java │ │ │ │ ├── PlayerQuestCompletedEvent.java │ │ │ │ ├── PlayerRightClickBlockEvent.java │ │ │ │ ├── PlayerStageEvent.java │ │ │ │ ├── PlayerTickEvent.java │ │ │ │ ├── PlayerTrackingEvent.java │ │ │ │ └── PlayerWillHurtEvent.java │ │ │ ├── backupEvent.java │ │ │ ├── commandEvent.java │ │ │ ├── reloadEvent.java │ │ │ └── serverEvent.java │ │ │ ├── exception │ │ │ ├── EMCWorldCommonException.java │ │ │ ├── EMCWorldIllegalPacketException.java │ │ │ └── EMCWorldNotFinalException.java │ │ │ ├── impl │ │ │ └── EMCWorldAPI.java │ │ │ ├── items │ │ │ ├── CDReduceScroll │ │ │ │ ├── CDReduceScrollItem.java │ │ │ │ ├── CommonCDReduceScrollItem.java │ │ │ │ └── CraftCDReduceScrollItem.java │ │ │ ├── Curios │ │ │ │ ├── EMCShieldSupply.java │ │ │ │ ├── NuclearBall.java │ │ │ │ └── StoredTotem.java │ │ │ ├── EMCChargeItem.java │ │ │ ├── EMCCoreBlockItem.java │ │ │ ├── EMCGemItem.java │ │ │ ├── EMCHealingItem.java │ │ │ ├── EMCWorldQuestsItem.java │ │ │ ├── EMCWorldTraitCoreItem.java │ │ │ ├── EWItem.java │ │ │ ├── EWOresItem.java │ │ │ ├── EWRecordItem.java │ │ │ ├── Equipment │ │ │ │ ├── Armor │ │ │ │ │ ├── fireRedArmor.java │ │ │ │ │ └── guardianArmor.java │ │ │ │ ├── BaseWeaponGemItem.java │ │ │ │ ├── PrefixScroll.java │ │ │ │ ├── Scroll │ │ │ │ │ ├── BiggestXuanScroll.java │ │ │ │ │ ├── EMCGodScroll.java │ │ │ │ │ ├── FeastScroll.java │ │ │ │ │ ├── FixedScroll.java │ │ │ │ │ ├── GaiaScroll.java │ │ │ │ │ ├── NewerScroll.java │ │ │ │ │ ├── ScrollItem.java │ │ │ │ │ └── TulyeScroll.java │ │ │ │ ├── TulyeShieldItem.java │ │ │ │ └── Weapon │ │ │ │ │ ├── Dagger │ │ │ │ │ ├── DaggerItem.java │ │ │ │ │ ├── DaggerTier.java │ │ │ │ │ ├── NightLight.java │ │ │ │ │ ├── RainbowDagger.java │ │ │ │ │ └── RedGreenDagger.java │ │ │ │ │ ├── GodWeapon │ │ │ │ │ ├── CharaSword.java │ │ │ │ │ ├── FireSword.java │ │ │ │ │ ├── IceSword.java │ │ │ │ │ ├── NatureSword.java │ │ │ │ │ └── NullSword.java │ │ │ │ │ ├── Gun │ │ │ │ │ ├── GunItem.java │ │ │ │ │ ├── GunTier.java │ │ │ │ │ ├── RainbowGunItem.java │ │ │ │ │ └── ShengXuan.java │ │ │ │ │ ├── IRainbowEquipment.java │ │ │ │ │ ├── LuckyItem │ │ │ │ │ ├── ILuckyItem.java │ │ │ │ │ └── LuckyItem.java │ │ │ │ │ ├── Other │ │ │ │ │ └── HamBat.java │ │ │ │ │ ├── Staff │ │ │ │ │ ├── NatureStaff.java │ │ │ │ │ ├── PurpleStaff.java │ │ │ │ │ ├── RainbowStaff.java │ │ │ │ │ ├── StaffItem.java │ │ │ │ │ └── StaffTier.java │ │ │ │ │ ├── Sword │ │ │ │ │ ├── AtmSword.java │ │ │ │ │ ├── ChaosSword.java │ │ │ │ │ ├── GaiaSword.java │ │ │ │ │ ├── InfinitySword.java │ │ │ │ │ ├── RainbowSword.java │ │ │ │ │ ├── UnobtainiumSword.java │ │ │ │ │ └── VibraniumSword.java │ │ │ │ │ ├── Tier │ │ │ │ │ ├── EWGodWeaponTier.java │ │ │ │ │ └── EWSwordTier.java │ │ │ │ │ └── WarHammer │ │ │ │ │ ├── Creation.java │ │ │ │ │ ├── RainbowWarhammer.java │ │ │ │ │ ├── SuperStar.java │ │ │ │ │ ├── WarHammerItem.java │ │ │ │ │ └── WarHammerTier.java │ │ │ ├── FestivalItem │ │ │ │ ├── MoonCake.java │ │ │ │ ├── TangYuan.java │ │ │ │ ├── YearCake.java │ │ │ │ └── ZongZi.java │ │ │ ├── FinalItem.java │ │ │ ├── Food │ │ │ │ └── MoneyFood.java │ │ │ ├── LotteryItem.java │ │ │ ├── MatterItem.java │ │ │ ├── ModPack │ │ │ │ ├── EndLight.java │ │ │ │ ├── RainFallStar.java │ │ │ │ └── Voucher.java │ │ │ ├── ProfessionalItem │ │ │ │ ├── AddMaxLevelItem.java │ │ │ │ ├── ClearProfessionItem.java │ │ │ │ └── ProfessionalItem.java │ │ │ ├── RaidItem │ │ │ │ ├── BaseRaidItem.java │ │ │ │ ├── IllagerShard.java │ │ │ │ └── RaidLightItem.java │ │ │ ├── RestoreStageScroll.java │ │ │ ├── SpeedClockItem.java │ │ │ ├── SponsorsItem │ │ │ │ ├── AbunanaLoot.java │ │ │ │ ├── ExceptionApple.java │ │ │ │ ├── IceCream.java │ │ │ │ ├── NoEqualItem.java │ │ │ │ ├── NoNameCatFood.java │ │ │ │ └── XiangshushumiaoPillow.java │ │ │ └── UpdateBlockItem.java │ │ │ ├── mixin │ │ │ ├── AbsorptionMixin.java │ │ │ ├── AbstractChestBlockMixin.java │ │ │ ├── AdaptableAffixMixin.java │ │ │ ├── AerialHellSwordItemMixin.java │ │ │ ├── AlchemicalBagClientMixin.java │ │ │ ├── AlchemicalBagMixin.java │ │ │ ├── AlfSwordMixin.java │ │ │ ├── AllTheModiumAppleMixin.java │ │ │ ├── AllTheModiumCarrotMixin.java │ │ │ ├── ArcanaMixin.java │ │ │ ├── ArcanaRenderMixin.java │ │ │ ├── ArmorItemMixin.java │ │ │ ├── ArrowItemMixin.java │ │ │ ├── AtlantisDisableMixin.java │ │ │ ├── AttunePlayerRecipeMixin.java │ │ │ ├── BYGItemTiersMixin.java │ │ │ ├── BlockMixin.java │ │ │ ├── BlockRuneHolderMixin.java │ │ │ ├── BowItemMixin.java │ │ │ ├── CategoryAltarMixin.java │ │ │ ├── ChampionBuilderMixin.java │ │ │ ├── ChampionEventsHandlerMixin.java │ │ │ ├── ClassicBarMixin.java │ │ │ ├── CollectorBlockEntityMixin.java │ │ │ ├── CollectorBlockMixin.java │ │ │ ├── CommonPlayerTickHandlerMixin.java │ │ │ ├── ConjurerMixin.java │ │ │ ├── ContainerScreenMixin.java │ │ │ ├── DamageEnchantmentMixin.java │ │ │ ├── DimensionTaskMixin.java │ │ │ ├── DivineToolMaterialsMixin.java │ │ │ ├── EMCHelperMixin.java │ │ │ ├── EMCStageCommonMixin.java │ │ │ ├── EMCStageTooltipMixin.java │ │ │ ├── EnchantmentHelperMixin.java │ │ │ ├── EntityMixin.java │ │ │ ├── EntitySoundOfCarolsMixin.java │ │ │ ├── EntitySoundOfMusicMixin.java │ │ │ ├── ExpilsionPylonTileMixin.java │ │ │ ├── ExplorersCompassScreenMixin.java │ │ │ ├── GNSBedMixin.java │ │ │ ├── GNSItemTierMixin.java │ │ │ ├── GaiaClientMixin.java │ │ │ ├── GaiaMixin.java │ │ │ ├── GobberTierMixin.java │ │ │ ├── HarvesterPylonTileMixin.java │ │ │ ├── InfusionPylonTileMixin.java │ │ │ ├── InterdictionTileMixin.java │ │ │ ├── ItemClientMixin.java │ │ │ ├── ItemDaggerOfSacrificeMixin.java │ │ │ ├── ItemEntityMixin.java │ │ │ ├── ItemGlovesDexterityMixin.java │ │ │ ├── ItemKeepIvyMixin.java │ │ │ ├── ItemMagicMirrorMixin.java │ │ │ ├── ItemMekaSuitArmorMixin.java │ │ │ ├── ItemMekaToolMixin.java │ │ │ ├── ItemMekanismPaxelMixin.java │ │ │ ├── ItemMixin.java │ │ │ ├── ItemMusicShooterMixin.java │ │ │ ├── ItemSacrificialDaggerMixin.java │ │ │ ├── ItemSerenadeOfHealthMixin.java │ │ │ ├── ItemSharingModuleMixin.java │ │ │ ├── ItemStackUtilMixin.java │ │ │ ├── ItemStageMixin.java │ │ │ ├── ItemStagesMixin.java │ │ │ ├── ItemTierMixin.java │ │ │ ├── JourneyMapTeleportMixin.java │ │ │ ├── LivingEntityMixin.java │ │ │ ├── LootrMixin.java │ │ │ ├── MagispellerMixin.java │ │ │ ├── MatterMixin.java │ │ │ ├── MazePickaxeMixin.java │ │ │ ├── MinecraftMixin.java │ │ │ ├── MinecraftWindowMixin.java │ │ │ ├── ModCorePluginMixin.java │ │ │ ├── ModCropsMixin.java │ │ │ ├── ModItemTierMixin.java │ │ │ ├── ModifierHandlerMixin.java │ │ │ ├── ModuleHelperMixin.java │ │ │ ├── NPlayerUtilsMixin.java │ │ │ ├── NaturesCompassScreenMixin.java │ │ │ ├── OrbOfAtlantisMixin.java │ │ │ ├── PersonalLinkBlockEntityMixin.java │ │ │ ├── PersonalLinkBlockMixin.java │ │ │ ├── PickaxeItemMixin.java │ │ │ ├── PipeTileEntityMixin.java │ │ │ ├── PlaguedAffixMixin.java │ │ │ ├── PlayerEntityMixin.java │ │ │ ├── PlayerInventoryMixin.java │ │ │ ├── PlayerUtilsMixin.java │ │ │ ├── PlayerWaystoneManagerMixin.java │ │ │ ├── PowerFlowerBlockEntityMixin.java │ │ │ ├── QuarkHandlerMixin.java │ │ │ ├── QuarkInventoryHandlerMixin.java │ │ │ ├── RaidMixin.java │ │ │ ├── RankManagerMixin.java │ │ │ ├── RankMixin.java │ │ │ ├── RatMixin.java │ │ │ ├── RatsModMixin.java │ │ │ ├── RatsPlagueMixin.java │ │ │ ├── RenderTickHandlerMixin.java │ │ │ ├── RepairContainerMixin.java │ │ │ ├── ScalingHealthManagerMixin.java │ │ │ ├── ScreenJournalPerkTreeMixin.java │ │ │ ├── ShieldingAffixMixin.java │ │ │ ├── SmithingTableContainerMixin.java │ │ │ ├── SpecialLootChestItemRendererMixin.java │ │ │ ├── SpecialLootChestTileRendererMixin.java │ │ │ ├── StructureSearchEntryMixin.java │ │ │ ├── SwordItemMixin.java │ │ │ ├── TWLightTierMixin.java │ │ │ ├── TargetDummyEntityMixin.java │ │ │ ├── TieredItemMixin.java │ │ │ ├── TimeWatchMixin.java │ │ │ ├── ToolItemMixin.java │ │ │ ├── UGTierMixin.java │ │ │ ├── UncraftingTableBlockMixin.java │ │ │ ├── WayStoneButtonMixin.java │ │ │ ├── WayStoneSelectionScreenBaseMixin.java │ │ │ ├── WebHelperDisableMixin.java │ │ │ ├── WirelessTransmitterNetworkNodeMixin.java │ │ │ ├── WitchEntityMixin.java │ │ │ ├── WorldHelperMixin.java │ │ │ └── WorldMixin.java │ │ │ ├── network │ │ │ ├── ClientPacketHandler.java │ │ │ ├── PacketHandler.java │ │ │ ├── toClient │ │ │ │ ├── BuyLotteryClientPacket.java │ │ │ │ ├── ChangeRotPacket.java │ │ │ │ ├── SkillPacket │ │ │ │ │ ├── DataPack.java │ │ │ │ │ └── SkillNetworking.java │ │ │ │ └── UtilPacket │ │ │ │ │ ├── UtilDataPack.java │ │ │ │ │ └── UtilNetworking.java │ │ │ └── toServer │ │ │ │ ├── AdminPacket.java │ │ │ │ ├── ArcanaDisplayPacket.java │ │ │ │ ├── BuyLotteryPacket.java │ │ │ │ ├── CostEMCPacket.java │ │ │ │ ├── LastShieldPacket.java │ │ │ │ ├── LeftClickPacket.java │ │ │ │ ├── LiveModePacket.java │ │ │ │ ├── OfflinePacket.java │ │ │ │ ├── PickModeChangePacket.java │ │ │ │ ├── RangeAttackKeyPacket.java │ │ │ │ ├── SpeedControlPacket.java │ │ │ │ ├── StaffAttackPacket.java │ │ │ │ ├── TraitActivePacket.java │ │ │ │ └── WeaponCoreButtonPacket.java │ │ │ ├── potion │ │ │ ├── BaseEMCWorldEffect.java │ │ │ ├── EMCBrokenEffect.java │ │ │ ├── EMCFlamingEffect.java │ │ │ ├── EMCProtectionEffect.java │ │ │ └── MagicProtectEffect.java │ │ │ ├── raid │ │ │ ├── RaidEffect.java │ │ │ ├── RaidEffectExecutor.java │ │ │ ├── RaidEffectsRegistry.java │ │ │ └── effects │ │ │ │ ├── Aevitas.java │ │ │ │ ├── Armara.java │ │ │ │ ├── Bootes.java │ │ │ │ ├── Discidia.java │ │ │ │ ├── Emc.java │ │ │ │ ├── Evorsio.java │ │ │ │ ├── Fornax.java │ │ │ │ ├── Gelu.java │ │ │ │ ├── Horologium.java │ │ │ │ ├── Lucerna.java │ │ │ │ ├── Mineralis.java │ │ │ │ ├── Octans.java │ │ │ │ ├── Pelotrio.java │ │ │ │ ├── Ulteria.java │ │ │ │ ├── Vicio.java │ │ │ │ └── Vorux.java │ │ │ ├── recipes │ │ │ ├── AdvancedUpdateRecipe.java │ │ │ ├── EMCOreRecipe.java │ │ │ ├── EMCStageLimit.java │ │ │ ├── InfuserRecipe.java │ │ │ ├── ItemStageLimit.java │ │ │ ├── MatterFixRecipe.java │ │ │ ├── StarPedestalRecipe.java │ │ │ ├── SteelFurnaceRecipe.java │ │ │ ├── SuperEMCRecipe.java │ │ │ └── UpdateRecipe.java │ │ │ ├── registry │ │ │ ├── EWBlocks.java │ │ │ ├── EWContainerTypes.java │ │ │ ├── EWCreativeTabs.java │ │ │ ├── EWCurios.java │ │ │ ├── EWDamageSource.java │ │ │ ├── EWEffects.java │ │ │ ├── EWEnchantments.java │ │ │ ├── EWEntities.java │ │ │ ├── EWFluids.java │ │ │ ├── EWGases.java │ │ │ ├── EWInfuseTypes.java │ │ │ ├── EWItems.java │ │ │ ├── EWModules.java │ │ │ ├── EWPigments.java │ │ │ ├── EWRecipeTypes.java │ │ │ ├── EWSlurries.java │ │ │ ├── EWSounds.java │ │ │ ├── EWStarlight.java │ │ │ ├── EWTileEntityTypes.java │ │ │ └── EWVillagers.java │ │ │ ├── skill │ │ │ ├── PlayerGetXP.java │ │ │ └── PlayerSkillModify.java │ │ │ ├── traits │ │ │ ├── TraitColor.java │ │ │ ├── TraitManager.java │ │ │ ├── TraitUtils.java │ │ │ └── traits │ │ │ │ ├── GoldTrait.java │ │ │ │ ├── IronTrait.java │ │ │ │ └── StoneTrait.java │ │ │ ├── utils │ │ │ ├── ASUtils.java │ │ │ ├── BirthdayUtils.java │ │ │ ├── CalendarUtils.java │ │ │ ├── CommandUtils.java │ │ │ ├── DamageUtils.java │ │ │ ├── DifficultySetting.java │ │ │ ├── EMCLog │ │ │ │ ├── EMCSource.java │ │ │ │ └── EMCWriter.java │ │ │ ├── EMCWorldPlayer.java │ │ │ ├── FTBQJeiUtils.java │ │ │ ├── HardCoreUtils.java │ │ │ ├── LocaleUtils.java │ │ │ ├── Lottery │ │ │ │ ├── Lottery.java │ │ │ │ ├── LotteryMode.java │ │ │ │ └── LotteryUtils.java │ │ │ ├── MathUtils.java │ │ │ ├── Message.java │ │ │ ├── ModUtils.java │ │ │ ├── Network │ │ │ │ ├── Network.java │ │ │ │ └── OfficialServerNetWork.java │ │ │ ├── PlayTimeUtils.java │ │ │ ├── RaidUtils.java │ │ │ ├── SkillUtils.java │ │ │ ├── Sponsors │ │ │ │ └── Sponsors.java │ │ │ ├── ToolTipLang.java │ │ │ ├── UnknownPouchUtils.java │ │ │ ├── VillagerTradeBuilder.java │ │ │ └── WeaponUtils.java │ │ │ ├── villager │ │ │ └── EMCVillagerProfession.java │ │ │ └── world │ │ │ └── gen │ │ │ ├── EMCWorldOreFeature.java │ │ │ └── oreGen.java │ └── resources │ │ ├── META-INF │ │ ├── accesstransformer.cfg │ │ └── mods.toml │ │ ├── assets │ │ ├── emcworld │ │ │ ├── blockstates │ │ │ │ ├── advanced_update_core.json │ │ │ │ ├── aluminum_ore.json │ │ │ │ ├── aquamarine_ore.json │ │ │ │ ├── chlorophyte_ore.json │ │ │ │ ├── cold_ore.json │ │ │ │ ├── control_update_core.json │ │ │ │ ├── drystone_ore.json │ │ │ │ ├── emc_core_assembler.json │ │ │ │ ├── emc_core_generator.json │ │ │ │ ├── emc_core_puller.json │ │ │ │ ├── emc_core_puncher.json │ │ │ │ ├── emc_flower.json │ │ │ │ ├── emc_ore.json │ │ │ │ ├── emc_ore_core.json │ │ │ │ ├── emc_super.json │ │ │ │ ├── end_emc_ore.json │ │ │ │ ├── end_rich_emc_ore.json │ │ │ │ ├── gemstone_core.json │ │ │ │ ├── hardcore_stone.json │ │ │ │ ├── indium_ore.json │ │ │ │ ├── infuser_core.json │ │ │ │ ├── magnesium_ore.json │ │ │ │ ├── nether_emc_ore.json │ │ │ │ ├── nickel_ore.json │ │ │ │ ├── orichalcos_ore.json │ │ │ │ ├── prefix_core.json │ │ │ │ ├── profession_core.json │ │ │ │ ├── rich_emc_ore.json │ │ │ │ ├── silver_ore.json │ │ │ │ ├── star_pedestal.json │ │ │ │ ├── steel_furnace_brick.json │ │ │ │ ├── steel_furnace_core.json │ │ │ │ ├── sunlit_ore.json │ │ │ │ ├── super_emc.json │ │ │ │ ├── test_block.json │ │ │ │ ├── titanium_ore.json │ │ │ │ ├── top_core.json │ │ │ │ ├── tungsten_ore.json │ │ │ │ ├── ultimate_induction_cell.json │ │ │ │ ├── update_addon_blue.json │ │ │ │ ├── update_addon_bx_purple.json │ │ │ │ ├── update_addon_cyan.json │ │ │ │ ├── update_addon_green.json │ │ │ │ ├── update_addon_orange.json │ │ │ │ ├── update_addon_purple.json │ │ │ │ ├── update_addon_red.json │ │ │ │ ├── update_addon_yellow.json │ │ │ │ ├── update_base_blue.json │ │ │ │ ├── update_base_bx_purple.json │ │ │ │ ├── update_base_cyan.json │ │ │ │ ├── update_base_green.json │ │ │ │ ├── update_base_orange.json │ │ │ │ ├── update_base_purple.json │ │ │ │ ├── update_base_red.json │ │ │ │ ├── update_base_yellow.json │ │ │ │ ├── update_cost_blue.json │ │ │ │ ├── update_cost_bx_purple.json │ │ │ │ ├── update_cost_cyan.json │ │ │ │ ├── update_cost_green.json │ │ │ │ ├── update_cost_orange.json │ │ │ │ ├── update_cost_purple.json │ │ │ │ ├── update_cost_red.json │ │ │ │ ├── update_cost_yellow.json │ │ │ │ ├── update_time_blue.json │ │ │ │ ├── update_time_bx_purple.json │ │ │ │ ├── update_time_cyan.json │ │ │ │ ├── update_time_green.json │ │ │ │ ├── update_time_orange.json │ │ │ │ ├── update_time_purple.json │ │ │ │ ├── update_time_red.json │ │ │ │ ├── update_time_yellow.json │ │ │ │ ├── vis_conversion_core.json │ │ │ │ └── weapon_upgrade_core.json │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ ├── zh_cn.json │ │ │ │ └── zh_tw.json │ │ │ ├── models │ │ │ │ ├── block │ │ │ │ │ ├── advanced_update_core_model.json │ │ │ │ │ ├── aluminum_ore_model.json │ │ │ │ │ ├── aquamarine_ore_model.json │ │ │ │ │ ├── chlorophyte_ore_model.json │ │ │ │ │ ├── cold_ore_model.json │ │ │ │ │ ├── control_update_core_model.json │ │ │ │ │ ├── drystone_ore_model.json │ │ │ │ │ ├── emc_core_assembler_model.json │ │ │ │ │ ├── emc_core_generator_model.json │ │ │ │ │ ├── emc_core_puller_model.json │ │ │ │ │ ├── emc_core_puncher_model.json │ │ │ │ │ ├── emc_flower_model.json │ │ │ │ │ ├── emc_ore_core_model.json │ │ │ │ │ ├── emc_ore_model.json │ │ │ │ │ ├── emc_super_model.json │ │ │ │ │ ├── end_emc_ore_model.json │ │ │ │ │ ├── end_rich_emc_ore_model.json │ │ │ │ │ ├── gemstone_core_model.json │ │ │ │ │ ├── hardcore_stone_model.json │ │ │ │ │ ├── indium_ore_model.json │ │ │ │ │ ├── infuser_core_model.json │ │ │ │ │ ├── magnesium_ore_model.json │ │ │ │ │ ├── nether_emc_ore_model.json │ │ │ │ │ ├── nickel_ore_model.json │ │ │ │ │ ├── orichalcos_ore_model.json │ │ │ │ │ ├── prefix_core_model.json │ │ │ │ │ ├── profession_core_model.json │ │ │ │ │ ├── rich_emc_ore_model.json │ │ │ │ │ ├── silver_ore_model.json │ │ │ │ │ ├── star_pedestal_model.json │ │ │ │ │ ├── steel_furnace_brick_model.json │ │ │ │ │ ├── steel_furnace_core_model.json │ │ │ │ │ ├── sunlit_ore_model.json │ │ │ │ │ ├── test_block_model.json │ │ │ │ │ ├── titanium_ore_model.json │ │ │ │ │ ├── top_core_model.json │ │ │ │ │ ├── tungsten_ore_model.json │ │ │ │ │ ├── ultimate_induction_cell_model.json │ │ │ │ │ ├── update_addon_blue_model.json │ │ │ │ │ ├── update_addon_bx_purple_model.json │ │ │ │ │ ├── update_addon_cyan_model.json │ │ │ │ │ ├── update_addon_green_model.json │ │ │ │ │ ├── update_addon_orange_model.json │ │ │ │ │ ├── update_addon_purple_model.json │ │ │ │ │ ├── update_addon_red_model.json │ │ │ │ │ ├── update_addon_yellow_model.json │ │ │ │ │ ├── update_base_blue_model.json │ │ │ │ │ ├── update_base_bx_purple_model.json │ │ │ │ │ ├── update_base_cyan_model.json │ │ │ │ │ ├── update_base_green_model.json │ │ │ │ │ ├── update_base_orange_model.json │ │ │ │ │ ├── update_base_purple_model.json │ │ │ │ │ ├── update_base_red_model.json │ │ │ │ │ ├── update_base_yellow_model.json │ │ │ │ │ ├── update_cost_blue_model.json │ │ │ │ │ ├── update_cost_bx_purple_model.json │ │ │ │ │ ├── update_cost_cyan_model.json │ │ │ │ │ ├── update_cost_green_model.json │ │ │ │ │ ├── update_cost_orange_model.json │ │ │ │ │ ├── update_cost_purple_model.json │ │ │ │ │ ├── update_cost_red_model.json │ │ │ │ │ ├── update_cost_yellow_model.json │ │ │ │ │ ├── update_time_blue_model.json │ │ │ │ │ ├── update_time_bx_purple_model.json │ │ │ │ │ ├── update_time_cyan_model.json │ │ │ │ │ ├── update_time_green_model.json │ │ │ │ │ ├── update_time_orange_model.json │ │ │ │ │ ├── update_time_purple_model.json │ │ │ │ │ ├── update_time_red_model.json │ │ │ │ │ ├── update_time_yellow_model.json │ │ │ │ │ ├── vis_conversion_core_model.json │ │ │ │ │ └── weapon_upgrade_core_model.json │ │ │ │ └── item │ │ │ │ │ ├── abunana_loot.json │ │ │ │ │ ├── abyss_gemstone.json │ │ │ │ │ ├── activated_charcoal.json │ │ │ │ │ ├── advanced_emc_gem.json │ │ │ │ │ ├── advanced_emc_stored_totem.json │ │ │ │ │ ├── advanced_update_core.json │ │ │ │ │ ├── air_bucket.json │ │ │ │ │ ├── aluminum_ingot.json │ │ │ │ │ ├── aluminum_ore.json │ │ │ │ │ ├── ancient_icon.json │ │ │ │ │ ├── another_world_core.json │ │ │ │ │ ├── aquamarine_ore.json │ │ │ │ │ ├── atm_sword.json │ │ │ │ │ ├── base_emc_stored_totem.json │ │ │ │ │ ├── base_key.json │ │ │ │ │ ├── big_emc_gem.json │ │ │ │ │ ├── biggest_emc_gem.json │ │ │ │ │ ├── biggest_xuan_ingot.json │ │ │ │ │ ├── blood_eye.json │ │ │ │ │ ├── blood_gemstone.json │ │ │ │ │ ├── blue_matter.json │ │ │ │ │ ├── bright_stone.json │ │ │ │ │ ├── broken_dagger.json │ │ │ │ │ ├── broken_diamond_sword.json │ │ │ │ │ ├── broken_gun.json │ │ │ │ │ ├── broken_hammer.json │ │ │ │ │ ├── chaos_sword.json │ │ │ │ │ ├── chara_sword.json │ │ │ │ │ ├── chlorophyte_ingot.json │ │ │ │ │ ├── chlorophyte_ore.json │ │ │ │ │ ├── clay_matter.json │ │ │ │ │ ├── clump_aluminum.json │ │ │ │ │ ├── clump_aquamarine.json │ │ │ │ │ ├── clump_arlemite.json │ │ │ │ │ ├── clump_bloodgem.json │ │ │ │ │ ├── clump_chlorophyte.json │ │ │ │ │ ├── clump_cloggrum.json │ │ │ │ │ ├── clump_cold.json │ │ │ │ │ ├── clump_crystillium.json │ │ │ │ │ ├── clump_drystone.json │ │ │ │ │ ├── clump_emc_gem.json │ │ │ │ │ ├── clump_end_gobber.json │ │ │ │ │ ├── clump_froststeel.json │ │ │ │ │ ├── clump_gobber.json │ │ │ │ │ ├── clump_gravitite.json │ │ │ │ │ ├── clump_indium.json │ │ │ │ │ ├── clump_knightmetal.json │ │ │ │ │ ├── clump_lunarite_scrap.json │ │ │ │ │ ├── clump_magnesium.json │ │ │ │ │ ├── clump_moonsteel.json │ │ │ │ │ ├── clump_nether_gobber.json │ │ │ │ │ ├── clump_nether_rainbow.json │ │ │ │ │ ├── clump_nickel.json │ │ │ │ │ ├── clump_oratchalcum.json │ │ │ │ │ ├── clump_orichalcos.json │ │ │ │ │ ├── clump_pendorite.json │ │ │ │ │ ├── clump_rainbow.json │ │ │ │ │ ├── clump_realmite.json │ │ │ │ │ ├── clump_regalium.json │ │ │ │ │ ├── clump_rose_copper.json │ │ │ │ │ ├── clump_rupee.json │ │ │ │ │ ├── clump_silver.json │ │ │ │ │ ├── clump_starmetal.json │ │ │ │ │ ├── clump_sunlit.json │ │ │ │ │ ├── clump_titanium.json │ │ │ │ │ ├── clump_torridite.json │ │ │ │ │ ├── clump_tungsten.json │ │ │ │ │ ├── clump_utherium.json │ │ │ │ │ ├── clump_zitrite.json │ │ │ │ │ ├── cold_ingot.json │ │ │ │ │ ├── cold_ore.json │ │ │ │ │ ├── common_cd_scroll.json │ │ │ │ │ ├── control_update_core.json │ │ │ │ │ ├── copper_medal.json │ │ │ │ │ ├── craft_cd_scroll.json │ │ │ │ │ ├── creation.json │ │ │ │ │ ├── crystal_aluminum.json │ │ │ │ │ ├── crystal_aquamarine.json │ │ │ │ │ ├── crystal_arlemite.json │ │ │ │ │ ├── crystal_bloodgem.json │ │ │ │ │ ├── crystal_chlorophyte.json │ │ │ │ │ ├── crystal_cloggrum.json │ │ │ │ │ ├── crystal_cold.json │ │ │ │ │ ├── crystal_crystillium.json │ │ │ │ │ ├── crystal_drystone.json │ │ │ │ │ ├── crystal_emc_gem.json │ │ │ │ │ ├── crystal_end_gobber.json │ │ │ │ │ ├── crystal_froststeel.json │ │ │ │ │ ├── crystal_gobber.json │ │ │ │ │ ├── crystal_gravitite.json │ │ │ │ │ ├── crystal_indium.json │ │ │ │ │ ├── crystal_knightmetal.json │ │ │ │ │ ├── crystal_lunarite_scrap.json │ │ │ │ │ ├── crystal_magnesium.json │ │ │ │ │ ├── crystal_matrix_ingot.json │ │ │ │ │ ├── crystal_moonsteel.json │ │ │ │ │ ├── crystal_nether_gobber.json │ │ │ │ │ ├── crystal_nickel.json │ │ │ │ │ ├── crystal_oratchalcum.json │ │ │ │ │ ├── crystal_orichalcos.json │ │ │ │ │ ├── crystal_pendorite.json │ │ │ │ │ ├── crystal_rainbow.json │ │ │ │ │ ├── crystal_realmite.json │ │ │ │ │ ├── crystal_regalium.json │ │ │ │ │ ├── crystal_rose_copper.json │ │ │ │ │ ├── crystal_rupee.json │ │ │ │ │ ├── crystal_silver.json │ │ │ │ │ ├── crystal_starmetal.json │ │ │ │ │ ├── crystal_sunlit.json │ │ │ │ │ ├── crystal_titanium.json │ │ │ │ │ ├── crystal_torridite.json │ │ │ │ │ ├── crystal_tungsten.json │ │ │ │ │ ├── crystal_utherium.json │ │ │ │ │ ├── crystal_zitrite.json │ │ │ │ │ ├── cyan_matter.json │ │ │ │ │ ├── dark_stone.json │ │ │ │ │ ├── demon_dust.json │ │ │ │ │ ├── diamond_dagger.json │ │ │ │ │ ├── diamond_gun.json │ │ │ │ │ ├── diamond_staff.json │ │ │ │ │ ├── diamond_warhammer.json │ │ │ │ │ ├── dirty_dust_aluminum.json │ │ │ │ │ ├── dirty_dust_aquamarine.json │ │ │ │ │ ├── dirty_dust_arlemite.json │ │ │ │ │ ├── dirty_dust_bloodgem.json │ │ │ │ │ ├── dirty_dust_chlorophyte.json │ │ │ │ │ ├── dirty_dust_cloggrum.json │ │ │ │ │ ├── dirty_dust_cold.json │ │ │ │ │ ├── dirty_dust_crystillium.json │ │ │ │ │ ├── dirty_dust_drystone.json │ │ │ │ │ ├── dirty_dust_emc_gem.json │ │ │ │ │ ├── dirty_dust_end_gobber.json │ │ │ │ │ ├── dirty_dust_froststeel.json │ │ │ │ │ ├── dirty_dust_gobber.json │ │ │ │ │ ├── dirty_dust_gravitite.json │ │ │ │ │ ├── dirty_dust_indium.json │ │ │ │ │ ├── dirty_dust_knightmetal.json │ │ │ │ │ ├── dirty_dust_lunarite_scrap.json │ │ │ │ │ ├── dirty_dust_magnesium.json │ │ │ │ │ ├── dirty_dust_moonsteel.json │ │ │ │ │ ├── dirty_dust_nether_gobber.json │ │ │ │ │ ├── dirty_dust_nickel.json │ │ │ │ │ ├── dirty_dust_oratchalcum.json │ │ │ │ │ ├── dirty_dust_orichalcos.json │ │ │ │ │ ├── dirty_dust_pendorite.json │ │ │ │ │ ├── dirty_dust_rainbow.json │ │ │ │ │ ├── dirty_dust_realmite.json │ │ │ │ │ ├── dirty_dust_regalium.json │ │ │ │ │ ├── dirty_dust_rose_copper.json │ │ │ │ │ ├── dirty_dust_rupee.json │ │ │ │ │ ├── dirty_dust_silver.json │ │ │ │ │ ├── dirty_dust_starmetal.json │ │ │ │ │ ├── dirty_dust_sunlit.json │ │ │ │ │ ├── dirty_dust_titanium.json │ │ │ │ │ ├── dirty_dust_torridite.json │ │ │ │ │ ├── dirty_dust_tungsten.json │ │ │ │ │ ├── dirty_dust_utherium.json │ │ │ │ │ ├── dirty_dust_zitrite.json │ │ │ │ │ ├── dragon_steel.json │ │ │ │ │ ├── drop_antimatter.json │ │ │ │ │ ├── drystone_ingot.json │ │ │ │ │ ├── drystone_ore.json │ │ │ │ │ ├── dust_aluminum.json │ │ │ │ │ ├── dust_aquamarine.json │ │ │ │ │ ├── dust_arlemite.json │ │ │ │ │ ├── dust_bloodgem.json │ │ │ │ │ ├── dust_chlorophyte.json │ │ │ │ │ ├── dust_cloggrum.json │ │ │ │ │ ├── dust_cold.json │ │ │ │ │ ├── dust_crystillium.json │ │ │ │ │ ├── dust_drystone.json │ │ │ │ │ ├── dust_emc_gem.json │ │ │ │ │ ├── dust_end_gobber.json │ │ │ │ │ ├── dust_froststeel.json │ │ │ │ │ ├── dust_gobber.json │ │ │ │ │ ├── dust_gravitite.json │ │ │ │ │ ├── dust_indium.json │ │ │ │ │ ├── dust_knightmetal.json │ │ │ │ │ ├── dust_lunarite_scrap.json │ │ │ │ │ ├── dust_magnesium.json │ │ │ │ │ ├── dust_moonsteel.json │ │ │ │ │ ├── dust_nether_gobber.json │ │ │ │ │ ├── dust_nickel.json │ │ │ │ │ ├── dust_oratchalcum.json │ │ │ │ │ ├── dust_orichalcos.json │ │ │ │ │ ├── dust_pendorite.json │ │ │ │ │ ├── dust_rainbow.json │ │ │ │ │ ├── dust_realmite.json │ │ │ │ │ ├── dust_regalium.json │ │ │ │ │ ├── dust_rose_copper.json │ │ │ │ │ ├── dust_rupee.json │ │ │ │ │ ├── dust_silver.json │ │ │ │ │ ├── dust_starmetal.json │ │ │ │ │ ├── dust_sunlit.json │ │ │ │ │ ├── dust_titanium.json │ │ │ │ │ ├── dust_torridite.json │ │ │ │ │ ├── dust_tungsten.json │ │ │ │ │ ├── dust_utherium.json │ │ │ │ │ ├── dust_zitrite.json │ │ │ │ │ ├── elite_emc_stored_totem.json │ │ │ │ │ ├── emc_charge_gem.json │ │ │ │ │ ├── emc_charge_gem_2.json │ │ │ │ │ ├── emc_charge_gem_3.json │ │ │ │ │ ├── emc_charge_gem_4.json │ │ │ │ │ ├── emc_charge_gem_5.json │ │ │ │ │ ├── emc_check.json │ │ │ │ │ ├── emc_core.json │ │ │ │ │ ├── emc_core_assembler.json │ │ │ │ │ ├── emc_core_generator.json │ │ │ │ │ ├── emc_core_puller.json │ │ │ │ │ ├── emc_core_puncher.json │ │ │ │ │ ├── emc_flower.json │ │ │ │ │ ├── emc_healing_bag.json │ │ │ │ │ ├── emc_leaf.json │ │ │ │ │ ├── emc_ore.json │ │ │ │ │ ├── emc_ore_core.json │ │ │ │ │ ├── emc_shield_supply.json │ │ │ │ │ ├── emc_super.json │ │ │ │ │ ├── emc_trait_core.json │ │ │ │ │ ├── end_emc_ore.json │ │ │ │ │ ├── end_light.json │ │ │ │ │ ├── end_rich_emc_ore.json │ │ │ │ │ ├── energy_protect_module.json │ │ │ │ │ ├── enriched_ender.json │ │ │ │ │ ├── enriched_gobber.json │ │ │ │ │ ├── enriched_iron.json │ │ │ │ │ ├── enriched_nickel.json │ │ │ │ │ ├── enriched_silver.json │ │ │ │ │ ├── epic_emc_gem.json │ │ │ │ │ ├── epic_essence.json │ │ │ │ │ ├── evil_book.json │ │ │ │ │ ├── exception_apple.json │ │ │ │ │ ├── exorcism_candle.json │ │ │ │ │ ├── fading_matter.json │ │ │ │ │ ├── fantasy_gem.json │ │ │ │ │ ├── final_essence.json │ │ │ │ │ ├── fire_red_boots.json │ │ │ │ │ ├── fire_red_chestplate.json │ │ │ │ │ ├── fire_red_helmet.json │ │ │ │ │ ├── fire_red_leggings.json │ │ │ │ │ ├── flying_gem.json │ │ │ │ │ ├── fxt_xy.json │ │ │ │ │ ├── gaia_dagger.json │ │ │ │ │ ├── gaia_gun.json │ │ │ │ │ ├── gaia_nugget.json │ │ │ │ │ ├── gaia_staff.json │ │ │ │ │ ├── gaia_sword.json │ │ │ │ │ ├── gaia_warhammer.json │ │ │ │ │ ├── gemstone_core.json │ │ │ │ │ ├── god_fire_sword.json │ │ │ │ │ ├── god_ice_sword.json │ │ │ │ │ ├── god_nature_sword.json │ │ │ │ │ ├── god_null_sword.json │ │ │ │ │ ├── god_steel_ingot.json │ │ │ │ │ ├── gold_medal.json │ │ │ │ │ ├── golden_dagger.json │ │ │ │ │ ├── golden_gun.json │ │ │ │ │ ├── golden_staff.json │ │ │ │ │ ├── golden_warhammer.json │ │ │ │ │ ├── green_matter.json │ │ │ │ │ ├── guardian_boots.json │ │ │ │ │ ├── guardian_chestplate.json │ │ │ │ │ ├── guardian_helmet.json │ │ │ │ │ ├── guardian_leggings.json │ │ │ │ │ ├── guide_book.json │ │ │ │ │ ├── ham_bat.json │ │ │ │ │ ├── hard_steel.json │ │ │ │ │ ├── hardcore_stone.json │ │ │ │ │ ├── hero_medal.json │ │ │ │ │ ├── ice_cream.json │ │ │ │ │ ├── ikun_adventure_record.json │ │ │ │ │ ├── ikun_rabbit_record.json │ │ │ │ │ ├── ikun_rich_record.json │ │ │ │ │ ├── illager_gem.json │ │ │ │ │ ├── illager_shard.json │ │ │ │ │ ├── indium_ingot.json │ │ │ │ │ ├── indium_ore.json │ │ │ │ │ ├── infinity_catalyst.json │ │ │ │ │ ├── infinity_emc_gem.json │ │ │ │ │ ├── infinity_module.json │ │ │ │ │ ├── infinity_sword.json │ │ │ │ │ ├── infuse_core.json │ │ │ │ │ ├── infuser_core.json │ │ │ │ │ ├── iron_dagger.json │ │ │ │ │ ├── iron_gun.json │ │ │ │ │ ├── iron_staff.json │ │ │ │ │ ├── iron_warhammer.json │ │ │ │ │ ├── lake_gemstone.json │ │ │ │ │ ├── lime_matter.json │ │ │ │ │ ├── lottery.json │ │ │ │ │ ├── lucky_gem_blue.json │ │ │ │ │ ├── lucky_gem_emerald.json │ │ │ │ │ ├── lucky_gem_gold.json │ │ │ │ │ ├── lucky_gem_purple.json │ │ │ │ │ ├── lucky_gem_red.json │ │ │ │ │ ├── magenta_matter.json │ │ │ │ │ ├── magnesium_ingot.json │ │ │ │ │ ├── magnesium_ore.json │ │ │ │ │ ├── money.json │ │ │ │ │ ├── mooncake.json │ │ │ │ │ ├── nature_gemstone.json │ │ │ │ │ ├── nature_ingot.json │ │ │ │ │ ├── nature_staff.json │ │ │ │ │ ├── nether_emc_ore.json │ │ │ │ │ ├── nether_key.json │ │ │ │ │ ├── netherite_dagger.json │ │ │ │ │ ├── netherite_gun.json │ │ │ │ │ ├── netherite_staff.json │ │ │ │ │ ├── netherite_stick.json │ │ │ │ │ ├── netherite_warhammer.json │ │ │ │ │ ├── nickel_ingot.json │ │ │ │ │ ├── nickel_ore.json │ │ │ │ │ ├── night_light.json │ │ │ │ │ ├── niobium_ingot.json │ │ │ │ │ ├── niobium_nugget.json │ │ │ │ │ ├── noname_catfood.json │ │ │ │ │ ├── nopower_staff.json │ │ │ │ │ ├── nuclear_advanced_ball.json │ │ │ │ │ ├── nuclear_ball.json │ │ │ │ │ ├── nuclear_epic_ball.json │ │ │ │ │ ├── orange_matter.json │ │ │ │ │ ├── orichalcos_ingot.json │ │ │ │ │ ├── orichalcos_ore.json │ │ │ │ │ ├── pink_matter.json │ │ │ │ │ ├── prefix_core.json │ │ │ │ │ ├── prefix_scroll.json │ │ │ │ │ ├── profession_core.json │ │ │ │ │ ├── profession_sword.json │ │ │ │ │ ├── profession_tank.json │ │ │ │ │ ├── purple_matter.json │ │ │ │ │ ├── purple_staff.json │ │ │ │ │ ├── quest_item.json │ │ │ │ │ ├── raid_light.json │ │ │ │ │ ├── rainbow_dagger.json │ │ │ │ │ ├── rainbow_gun.json │ │ │ │ │ ├── rainbow_ingot.json │ │ │ │ │ ├── rainbow_staff.json │ │ │ │ │ ├── rainbow_sword.json │ │ │ │ │ ├── rainbow_warhammer.json │ │ │ │ │ ├── red_green_dagger.json │ │ │ │ │ ├── red_matter_crystal.json │ │ │ │ │ ├── reset_scroll.json │ │ │ │ │ ├── restore_scroll.json │ │ │ │ │ ├── rich_emc_ore.json │ │ │ │ │ ├── rune_ingot.json │ │ │ │ │ ├── scroll_advanced_emc.json │ │ │ │ │ ├── scroll_base_emc.json │ │ │ │ │ ├── scroll_blue.json │ │ │ │ │ ├── scroll_bx.json │ │ │ │ │ ├── scroll_celestial_azure.json │ │ │ │ │ ├── scroll_enlightening_glimmer.json │ │ │ │ │ ├── scroll_feast.json │ │ │ │ │ ├── scroll_gaia.json │ │ │ │ │ ├── scroll_gold.json │ │ │ │ │ ├── scroll_gourmand_feast.json │ │ │ │ │ ├── scroll_green.json │ │ │ │ │ ├── scroll_mystic_shadow.json │ │ │ │ │ ├── scroll_purple.json │ │ │ │ │ ├── scroll_red.json │ │ │ │ │ ├── scroll_super_emc.json │ │ │ │ │ ├── scroll_tulye.json │ │ │ │ │ ├── scroll_voracious_wolf.json │ │ │ │ │ ├── scroll_white.json │ │ │ │ │ ├── shard_aluminum.json │ │ │ │ │ ├── shard_aquamarine.json │ │ │ │ │ ├── shard_arlemite.json │ │ │ │ │ ├── shard_bloodgem.json │ │ │ │ │ ├── shard_chlorophyte.json │ │ │ │ │ ├── shard_cloggrum.json │ │ │ │ │ ├── shard_cold.json │ │ │ │ │ ├── shard_crystillium.json │ │ │ │ │ ├── shard_drystone.json │ │ │ │ │ ├── shard_emc_gem.json │ │ │ │ │ ├── shard_end_gobber.json │ │ │ │ │ ├── shard_froststeel.json │ │ │ │ │ ├── shard_gobber.json │ │ │ │ │ ├── shard_gravitite.json │ │ │ │ │ ├── shard_indium.json │ │ │ │ │ ├── shard_knightmetal.json │ │ │ │ │ ├── shard_lunarite_scrap.json │ │ │ │ │ ├── shard_magnesium.json │ │ │ │ │ ├── shard_moonsteel.json │ │ │ │ │ ├── shard_nether_gobber.json │ │ │ │ │ ├── shard_nickel.json │ │ │ │ │ ├── shard_oratchalcum.json │ │ │ │ │ ├── shard_orichalcos.json │ │ │ │ │ ├── shard_pendorite.json │ │ │ │ │ ├── shard_rainbow.json │ │ │ │ │ ├── shard_realmite.json │ │ │ │ │ ├── shard_regalium.json │ │ │ │ │ ├── shard_rose_copper.json │ │ │ │ │ ├── shard_rupee.json │ │ │ │ │ ├── shard_silver.json │ │ │ │ │ ├── shard_starmetal.json │ │ │ │ │ ├── shard_sunlit.json │ │ │ │ │ ├── shard_titanium.json │ │ │ │ │ ├── shard_torridite.json │ │ │ │ │ ├── shard_tungsten.json │ │ │ │ │ ├── shard_utherium.json │ │ │ │ │ ├── shard_zitrite.json │ │ │ │ │ ├── shengxuan.json │ │ │ │ │ ├── shengxuan_black.json │ │ │ │ │ ├── shengxuan_white.json │ │ │ │ │ ├── silver_ingot.json │ │ │ │ │ ├── silver_medal.json │ │ │ │ │ ├── silver_ore.json │ │ │ │ │ ├── skill_item1.json │ │ │ │ │ ├── skill_item2.json │ │ │ │ │ ├── small_emc_gem.json │ │ │ │ │ ├── sodium_cyanide_bucket.json │ │ │ │ │ ├── stainless_steel.json │ │ │ │ │ ├── star_pedestal.json │ │ │ │ │ ├── steel_furnace_brick.json │ │ │ │ │ ├── steel_furnace_core.json │ │ │ │ │ ├── stone_dagger.json │ │ │ │ │ ├── stone_gun.json │ │ │ │ │ ├── stone_ingot.json │ │ │ │ │ ├── stone_shard.json │ │ │ │ │ ├── stone_staff.json │ │ │ │ │ ├── stone_warhammer.json │ │ │ │ │ ├── sunlit_ingot.json │ │ │ │ │ ├── sunlit_ore.json │ │ │ │ │ ├── super_emc_gem.json │ │ │ │ │ ├── super_star.json │ │ │ │ │ ├── tangyuan.json │ │ │ │ │ ├── test_block.json │ │ │ │ │ ├── titanium_ingot.json │ │ │ │ │ ├── titanium_ore.json │ │ │ │ │ ├── top_core.json │ │ │ │ │ ├── tungsten_ore.json │ │ │ │ │ ├── twilight_key.json │ │ │ │ │ ├── ultimate_emc_stored_totem.json │ │ │ │ │ ├── ultimate_induction_cell.json │ │ │ │ │ ├── ultimate_singularity.json │ │ │ │ │ ├── unequal.json │ │ │ │ │ ├── universal_ball.json │ │ │ │ │ ├── unobtainium_sword.json │ │ │ │ │ ├── unreal_metal.json │ │ │ │ │ ├── update_addon_blue.json │ │ │ │ │ ├── update_addon_bx_purple.json │ │ │ │ │ ├── update_addon_cyan.json │ │ │ │ │ ├── update_addon_green.json │ │ │ │ │ ├── update_addon_orange.json │ │ │ │ │ ├── update_addon_purple.json │ │ │ │ │ ├── update_addon_red.json │ │ │ │ │ ├── update_addon_yellow.json │ │ │ │ │ ├── update_base_blue.json │ │ │ │ │ ├── update_base_bx_purple.json │ │ │ │ │ ├── update_base_cyan.json │ │ │ │ │ ├── update_base_green.json │ │ │ │ │ ├── update_base_orange.json │ │ │ │ │ ├── update_base_purple.json │ │ │ │ │ ├── update_base_red.json │ │ │ │ │ ├── update_base_yellow.json │ │ │ │ │ ├── update_cost_blue.json │ │ │ │ │ ├── update_cost_bx_purple.json │ │ │ │ │ ├── update_cost_cyan.json │ │ │ │ │ ├── update_cost_green.json │ │ │ │ │ ├── update_cost_orange.json │ │ │ │ │ ├── update_cost_purple.json │ │ │ │ │ ├── update_cost_red.json │ │ │ │ │ ├── update_cost_yellow.json │ │ │ │ │ ├── update_time_blue.json │ │ │ │ │ ├── update_time_bx_purple.json │ │ │ │ │ ├── update_time_cyan.json │ │ │ │ │ ├── update_time_green.json │ │ │ │ │ ├── update_time_orange.json │ │ │ │ │ ├── update_time_purple.json │ │ │ │ │ ├── update_time_red.json │ │ │ │ │ ├── update_time_yellow.json │ │ │ │ │ ├── vibranium_sword.json │ │ │ │ │ ├── violet_matter.json │ │ │ │ │ ├── vis_conversion_core.json │ │ │ │ │ ├── voucher.json │ │ │ │ │ ├── weapon_upgrade_core.json │ │ │ │ │ ├── white_matter.json │ │ │ │ │ ├── wooden_dagger.json │ │ │ │ │ ├── wooden_gun.json │ │ │ │ │ ├── wooden_ingot.json │ │ │ │ │ ├── wooden_staff.json │ │ │ │ │ ├── wooden_warhammer.json │ │ │ │ │ ├── xiangshushumiao_pillow.json │ │ │ │ │ ├── year_cake.json │ │ │ │ │ ├── yellow_matter.json │ │ │ │ │ └── zongzi.json │ │ │ ├── sounds.json │ │ │ ├── sounds │ │ │ │ ├── cxk_adventure.ogg │ │ │ │ ├── cxk_death.ogg │ │ │ │ ├── cxk_rabbit.ogg │ │ │ │ └── cxk_rich.ogg │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── advanced_update_core.png │ │ │ │ ├── aluminum_ore.png │ │ │ │ ├── antimatter_flower.png │ │ │ │ ├── aquamarine_ore.png │ │ │ │ ├── chlorophyte_ore.png │ │ │ │ ├── cold_ore.png │ │ │ │ ├── control_update_core.png │ │ │ │ ├── drystone_ore.png │ │ │ │ ├── emc_core_assembler.png │ │ │ │ ├── emc_core_generator.png │ │ │ │ ├── emc_core_puller.png │ │ │ │ ├── emc_core_puncher.png │ │ │ │ ├── emc_flower.png │ │ │ │ ├── emc_ore.png │ │ │ │ ├── emc_ore_core.png │ │ │ │ ├── end_emc_ore.png │ │ │ │ ├── end_rich_emc_ore.png │ │ │ │ ├── gemstone_core.png │ │ │ │ ├── hardcore_stone.png │ │ │ │ ├── indium_ore.png │ │ │ │ ├── infuser_core.png │ │ │ │ ├── magnesium_ore.png │ │ │ │ ├── nether_emc_ore.png │ │ │ │ ├── nickel_ore.png │ │ │ │ ├── orichalcos_ore.png │ │ │ │ ├── prefix_core.png │ │ │ │ ├── profession_core.png │ │ │ │ ├── rich_emc_ore.png │ │ │ │ ├── silver_ore.png │ │ │ │ ├── star.png │ │ │ │ ├── steel_furnace_brick.png │ │ │ │ ├── steel_furnace_core.png │ │ │ │ ├── sunlit_ore.png │ │ │ │ ├── test_block.png │ │ │ │ ├── titanium_ore.png │ │ │ │ ├── top_core.png │ │ │ │ ├── tungsten_ore.png │ │ │ │ ├── ultimate_induction_cell.png │ │ │ │ ├── update_addon_blue.png │ │ │ │ ├── update_addon_bx_purple.png │ │ │ │ ├── update_addon_cyan.png │ │ │ │ ├── update_addon_green.png │ │ │ │ ├── update_addon_orange.png │ │ │ │ ├── update_addon_purple.png │ │ │ │ ├── update_addon_red.png │ │ │ │ ├── update_addon_yellow.png │ │ │ │ ├── update_base.png │ │ │ │ ├── update_base_blue.png │ │ │ │ ├── update_base_cyan.png │ │ │ │ ├── update_base_green.png │ │ │ │ ├── update_base_orange.png │ │ │ │ ├── update_base_purple.png │ │ │ │ ├── update_base_red.png │ │ │ │ ├── update_base_yellow.png │ │ │ │ ├── update_cost_blue.png │ │ │ │ ├── update_cost_bx_purple.png │ │ │ │ ├── update_cost_cyan.png │ │ │ │ ├── update_cost_green.png │ │ │ │ ├── update_cost_orange.png │ │ │ │ ├── update_cost_purple.png │ │ │ │ ├── update_cost_red.png │ │ │ │ ├── update_cost_yellow.png │ │ │ │ ├── update_time_blue.png │ │ │ │ ├── update_time_bx_purple.png │ │ │ │ ├── update_time_cyan.png │ │ │ │ ├── update_time_green.png │ │ │ │ ├── update_time_orange.png │ │ │ │ ├── update_time_purple.png │ │ │ │ ├── update_time_red.png │ │ │ │ ├── update_time_yellow.png │ │ │ │ ├── vis_conversion_core.png │ │ │ │ └── weapon_upgrade_core.png │ │ │ │ ├── curios │ │ │ │ ├── curios_nuclear_ball.png │ │ │ │ ├── emc_shield.png │ │ │ │ └── emc_totem.png │ │ │ │ ├── entity │ │ │ │ ├── abunana.png │ │ │ │ ├── alfie_zh.png │ │ │ │ ├── biggest_xuan.png │ │ │ │ ├── btmy.png │ │ │ │ ├── chiyuanovo.png │ │ │ │ ├── cmzxymzx.png │ │ │ │ ├── cxk.png │ │ │ │ ├── dctor_0415.png │ │ │ │ ├── depair_anwu.png │ │ │ │ ├── dytlj7788.png │ │ │ │ ├── jaoxaono.png │ │ │ │ ├── juefei.png │ │ │ │ ├── lamb_kisara.png │ │ │ │ ├── maplefung.png │ │ │ │ ├── mcyunxi.png │ │ │ │ ├── sdxhop.png │ │ │ │ ├── tulye.png │ │ │ │ ├── villager │ │ │ │ │ └── profession │ │ │ │ │ │ ├── emc_villager.png │ │ │ │ │ │ └── emc_villager.png.mcmeta │ │ │ │ ├── wanglaotou.png │ │ │ │ ├── xiangshushumiao.png │ │ │ │ ├── xk9940.png │ │ │ │ ├── xy177.png │ │ │ │ ├── yuan_shou.png │ │ │ │ └── zombie_villager │ │ │ │ │ └── profession │ │ │ │ │ ├── emc_villager.png │ │ │ │ │ └── emc_villager.png.mcmeta │ │ │ │ ├── gui │ │ │ │ ├── advanced_update_container.png │ │ │ │ ├── emc_core_assembler.png │ │ │ │ ├── emc_core_generator.png │ │ │ │ ├── emc_core_puller.png │ │ │ │ ├── emc_ore.png │ │ │ │ ├── gemstone_gui.png │ │ │ │ ├── icon.png │ │ │ │ ├── infuser_core.png │ │ │ │ ├── jei │ │ │ │ │ ├── advanced_update.png │ │ │ │ │ ├── afterlight │ │ │ │ │ │ ├── ancient.png │ │ │ │ │ │ ├── glyph.png │ │ │ │ │ │ └── ritual.png │ │ │ │ │ ├── collector_fix.png │ │ │ │ │ ├── emc_ore_core_jei.png │ │ │ │ │ ├── ftbq_jei.png │ │ │ │ │ ├── infuser_jei.png │ │ │ │ │ ├── piglin_jei.png │ │ │ │ │ ├── star_jei.png │ │ │ │ │ ├── steel_furnace.png │ │ │ │ │ ├── super_emc_jei.png │ │ │ │ │ └── update.png │ │ │ │ ├── level_core.png │ │ │ │ ├── menu │ │ │ │ │ └── title.png │ │ │ │ ├── prefix_gui.png │ │ │ │ ├── steel_furnace_gui.png │ │ │ │ ├── super_emc.png │ │ │ │ ├── top_core.png │ │ │ │ ├── transparent.png │ │ │ │ └── weapon_upgrade_core.png │ │ │ │ ├── item │ │ │ │ ├── abunana_loot.png │ │ │ │ ├── abyss_gemstone.png │ │ │ │ ├── activated_charcoal.png │ │ │ │ ├── advanced_emc_gem.png │ │ │ │ ├── advanced_emc_stored_totem.png │ │ │ │ ├── air_bucket.png │ │ │ │ ├── aluminum_ingot.png │ │ │ │ ├── ancient_icon.png │ │ │ │ ├── another_world_core.png │ │ │ │ ├── antimatter_essence.png │ │ │ │ ├── antimatter_seeds.png │ │ │ │ ├── atm_sword.png │ │ │ │ ├── base_emc_stored_totem.png │ │ │ │ ├── base_key.png │ │ │ │ ├── big_emc_gem.png │ │ │ │ ├── biggest_emc_gem.png │ │ │ │ ├── biggest_xuan_ingot.png │ │ │ │ ├── biggest_xuan_ingot.png.mcmeta │ │ │ │ ├── blood_eye.png │ │ │ │ ├── blood_gemstone.png │ │ │ │ ├── bright_stone.png │ │ │ │ ├── broken_dagger.png │ │ │ │ ├── broken_diamond_sword.png │ │ │ │ ├── broken_gun.png │ │ │ │ ├── broken_hammer.png │ │ │ │ ├── chaos_sword.png │ │ │ │ ├── chlorophyte_ingot.png │ │ │ │ ├── clump_aluminum.png │ │ │ │ ├── clump_aquamarine.png │ │ │ │ ├── clump_arlemite.png │ │ │ │ ├── clump_bloodgem.png │ │ │ │ ├── clump_chlorophyte.png │ │ │ │ ├── clump_cloggrum.png │ │ │ │ ├── clump_cold.png │ │ │ │ ├── clump_crystillium.png │ │ │ │ ├── clump_drystone.png │ │ │ │ ├── clump_emc_gem.png │ │ │ │ ├── clump_end_gobber.png │ │ │ │ ├── clump_froststeel.png │ │ │ │ ├── clump_gobber.png │ │ │ │ ├── clump_gravitite.png │ │ │ │ ├── clump_indium.png │ │ │ │ ├── clump_knightmetal.png │ │ │ │ ├── clump_lunarite_scrap.png │ │ │ │ ├── clump_magnesium.png │ │ │ │ ├── clump_moonsteel.png │ │ │ │ ├── clump_nether_gobber.png │ │ │ │ ├── clump_nickel.png │ │ │ │ ├── clump_oratchalcum.png │ │ │ │ ├── clump_orichalcos.png │ │ │ │ ├── clump_pendorite.png │ │ │ │ ├── clump_rainbow.png │ │ │ │ ├── clump_realmite.png │ │ │ │ ├── clump_regalium.png │ │ │ │ ├── clump_rose_copper.png │ │ │ │ ├── clump_rupee.png │ │ │ │ ├── clump_silver.png │ │ │ │ ├── clump_starmetal.png │ │ │ │ ├── clump_sunlit.png │ │ │ │ ├── clump_titanium.png │ │ │ │ ├── clump_torridite.png │ │ │ │ ├── clump_tungsten.png │ │ │ │ ├── clump_utherium.png │ │ │ │ ├── clump_zitrite.png │ │ │ │ ├── cold_ingot.png │ │ │ │ ├── common_cd_scroll.png │ │ │ │ ├── copper_medal.png │ │ │ │ ├── craft_cd_scroll.png │ │ │ │ ├── creation.png │ │ │ │ ├── creation.png.mcmeta │ │ │ │ ├── crystal_aluminum.png │ │ │ │ ├── crystal_aquamarine.png │ │ │ │ ├── crystal_arlemite.png │ │ │ │ ├── crystal_bloodgem.png │ │ │ │ ├── crystal_chlorophyte.png │ │ │ │ ├── crystal_cloggrum.png │ │ │ │ ├── crystal_cold.png │ │ │ │ ├── crystal_crystillium.png │ │ │ │ ├── crystal_drystone.png │ │ │ │ ├── crystal_emc_gem.png │ │ │ │ ├── crystal_end_gobber.png │ │ │ │ ├── crystal_froststeel.png │ │ │ │ ├── crystal_gobber.png │ │ │ │ ├── crystal_gravitite.png │ │ │ │ ├── crystal_indium.png │ │ │ │ ├── crystal_knightmetal.png │ │ │ │ ├── crystal_lunarite_scrap.png │ │ │ │ ├── crystal_magnesium.png │ │ │ │ ├── crystal_matrix_ingot.png │ │ │ │ ├── crystal_moonsteel.png │ │ │ │ ├── crystal_nether_gobber.png │ │ │ │ ├── crystal_nickel.png │ │ │ │ ├── crystal_oratchalcum.png │ │ │ │ ├── crystal_orichalcos.png │ │ │ │ ├── crystal_pendorite.png │ │ │ │ ├── crystal_rainbow.png │ │ │ │ ├── crystal_realmite.png │ │ │ │ ├── crystal_regalium.png │ │ │ │ ├── crystal_rose_copper.png │ │ │ │ ├── crystal_rupee.png │ │ │ │ ├── crystal_silver.png │ │ │ │ ├── crystal_starmetal.png │ │ │ │ ├── crystal_sunlit.png │ │ │ │ ├── crystal_titanium.png │ │ │ │ ├── crystal_torridite.png │ │ │ │ ├── crystal_tungsten.png │ │ │ │ ├── crystal_utherium.png │ │ │ │ ├── crystal_zitrite.png │ │ │ │ ├── dark_stone.png │ │ │ │ ├── demon_dust.png │ │ │ │ ├── diamond_dagger.png │ │ │ │ ├── diamond_gun.png │ │ │ │ ├── diamond_staff.png │ │ │ │ ├── diamond_staff.png.mcmeta │ │ │ │ ├── diamond_warhammer.png │ │ │ │ ├── dirty_dust_aluminum.png │ │ │ │ ├── dirty_dust_aquamarine.png │ │ │ │ ├── dirty_dust_arlemite.png │ │ │ │ ├── dirty_dust_bloodgem.png │ │ │ │ ├── dirty_dust_chlorophyte.png │ │ │ │ ├── dirty_dust_cloggrum.png │ │ │ │ ├── dirty_dust_cold.png │ │ │ │ ├── dirty_dust_crystillium.png │ │ │ │ ├── dirty_dust_drystone.png │ │ │ │ ├── dirty_dust_emc_gem.png │ │ │ │ ├── dirty_dust_end_gobber.png │ │ │ │ ├── dirty_dust_froststeel.png │ │ │ │ ├── dirty_dust_gobber.png │ │ │ │ ├── dirty_dust_gravitite.png │ │ │ │ ├── dirty_dust_indium.png │ │ │ │ ├── dirty_dust_knightmetal.png │ │ │ │ ├── dirty_dust_lunarite_scrap.png │ │ │ │ ├── dirty_dust_magnesium.png │ │ │ │ ├── dirty_dust_moonsteel.png │ │ │ │ ├── dirty_dust_nether_gobber.png │ │ │ │ ├── dirty_dust_nickel.png │ │ │ │ ├── dirty_dust_oratchalcum.png │ │ │ │ ├── dirty_dust_orichalcos.png │ │ │ │ ├── dirty_dust_pendorite.png │ │ │ │ ├── dirty_dust_rainbow.png │ │ │ │ ├── dirty_dust_realmite.png │ │ │ │ ├── dirty_dust_regalium.png │ │ │ │ ├── dirty_dust_rose_copper.png │ │ │ │ ├── dirty_dust_rupee.png │ │ │ │ ├── dirty_dust_silver.png │ │ │ │ ├── dirty_dust_starmetal.png │ │ │ │ ├── dirty_dust_sunlit.png │ │ │ │ ├── dirty_dust_titanium.png │ │ │ │ ├── dirty_dust_torridite.png │ │ │ │ ├── dirty_dust_tungsten.png │ │ │ │ ├── dirty_dust_utherium.png │ │ │ │ ├── dirty_dust_zitrite.png │ │ │ │ ├── dragon_steel.png │ │ │ │ ├── drop_antimatter.png │ │ │ │ ├── drystone_ingot.png │ │ │ │ ├── dust_aluminum.png │ │ │ │ ├── dust_aquamarine.png │ │ │ │ ├── dust_arlemite.png │ │ │ │ ├── dust_bloodgem.png │ │ │ │ ├── dust_chlorophyte.png │ │ │ │ ├── dust_cloggrum.png │ │ │ │ ├── dust_cold.png │ │ │ │ ├── dust_crystillium.png │ │ │ │ ├── dust_drystone.png │ │ │ │ ├── dust_emc_gem.png │ │ │ │ ├── dust_end_gobber.png │ │ │ │ ├── dust_froststeel.png │ │ │ │ ├── dust_gobber.png │ │ │ │ ├── dust_gravitite.png │ │ │ │ ├── dust_indium.png │ │ │ │ ├── dust_knightmetal.png │ │ │ │ ├── dust_lunarite_scrap.png │ │ │ │ ├── dust_magnesium.png │ │ │ │ ├── dust_moonsteel.png │ │ │ │ ├── dust_nether_gobber.png │ │ │ │ ├── dust_nickel.png │ │ │ │ ├── dust_oratchalcum.png │ │ │ │ ├── dust_orichalcos.png │ │ │ │ ├── dust_pendorite.png │ │ │ │ ├── dust_rainbow.png │ │ │ │ ├── dust_realmite.png │ │ │ │ ├── dust_regalium.png │ │ │ │ ├── dust_rose_copper.png │ │ │ │ ├── dust_rupee.png │ │ │ │ ├── dust_silver.png │ │ │ │ ├── dust_starmetal.png │ │ │ │ ├── dust_sunlit.png │ │ │ │ ├── dust_titanium.png │ │ │ │ ├── dust_torridite.png │ │ │ │ ├── dust_tungsten.png │ │ │ │ ├── dust_utherium.png │ │ │ │ ├── dust_zitrite.png │ │ │ │ ├── elite_emc_stored_totem.png │ │ │ │ ├── emc_charge_gem_1.png │ │ │ │ ├── emc_charge_gem_2.png │ │ │ │ ├── emc_charge_gem_3.png │ │ │ │ ├── emc_charge_gem_4.png │ │ │ │ ├── emc_charge_gem_5.png │ │ │ │ ├── emc_check.png │ │ │ │ ├── emc_core.png │ │ │ │ ├── emc_core.png.mcmeta │ │ │ │ ├── emc_leaf.png │ │ │ │ ├── emc_shield_supply.png │ │ │ │ ├── emc_shield_supply.png.mcmeta │ │ │ │ ├── emc_trait_core.png │ │ │ │ ├── end_light.png │ │ │ │ ├── end_light.png.mcmeta │ │ │ │ ├── energy_protect_module.png │ │ │ │ ├── enriched_ender.png │ │ │ │ ├── enriched_gobber.png │ │ │ │ ├── enriched_iron.png │ │ │ │ ├── enriched_nickel.png │ │ │ │ ├── enriched_silver.png │ │ │ │ ├── epic_emc_gem.png │ │ │ │ ├── epic_emc_gem.png.mcmeta │ │ │ │ ├── epic_essence.png │ │ │ │ ├── event_check.png │ │ │ │ ├── evil_book.png │ │ │ │ ├── exception_apple.png │ │ │ │ ├── exorcism_candle.png │ │ │ │ ├── fantasy_gem.png │ │ │ │ ├── final_essence.png │ │ │ │ ├── fire_red_boots.png │ │ │ │ ├── fire_red_chestplate.png │ │ │ │ ├── fire_red_helmet.png │ │ │ │ ├── fire_red_leggings.png │ │ │ │ ├── flying_gem.png │ │ │ │ ├── flying_gem.png.mcmeta │ │ │ │ ├── fxt_xy.png │ │ │ │ ├── fxt_xy.png.mcmeta │ │ │ │ ├── gaia_dagger.png │ │ │ │ ├── gaia_gun.png │ │ │ │ ├── gaia_nugget.png │ │ │ │ ├── gaia_nugget.png.mcmeta │ │ │ │ ├── gaia_staff.png │ │ │ │ ├── gaia_staff.png.mcmeta │ │ │ │ ├── gaia_sword.png │ │ │ │ ├── gaia_warhammer.png │ │ │ │ ├── gaia_warhammer.png.mcmeta │ │ │ │ ├── god_chara_sword.png │ │ │ │ ├── god_fire_sword.png │ │ │ │ ├── god_ice_sword.png │ │ │ │ ├── god_nature_sword.png │ │ │ │ ├── god_null_sword.png │ │ │ │ ├── god_steel_ingot.png │ │ │ │ ├── gold_medal.png │ │ │ │ ├── golden_dagger.png │ │ │ │ ├── golden_gun.png │ │ │ │ ├── golden_staff.png │ │ │ │ ├── golden_staff.png.mcmeta │ │ │ │ ├── golden_warhammer.png │ │ │ │ ├── guardian_boots.png │ │ │ │ ├── guardian_chestplate.png │ │ │ │ ├── guardian_helmet.png │ │ │ │ ├── guardian_leggings.png │ │ │ │ ├── guide_book.png │ │ │ │ ├── hard_steel.png │ │ │ │ ├── hero_medal.png │ │ │ │ ├── hero_medal.png.mcmeta │ │ │ │ ├── ice_cream.png │ │ │ │ ├── illager_gem.png │ │ │ │ ├── illager_gem.png.mcmeta │ │ │ │ ├── illager_shard.png │ │ │ │ ├── illager_shard.png.mcmeta │ │ │ │ ├── indium_ingot.png │ │ │ │ ├── infinity_catalyst.png │ │ │ │ ├── infinity_catalyst.png.mcmeta │ │ │ │ ├── infinity_emc_gem.png │ │ │ │ ├── infinity_emc_gem.png.mcmeta │ │ │ │ ├── infinity_module.png │ │ │ │ ├── infinity_sword.png │ │ │ │ ├── infinity_sword.png.mcmeta │ │ │ │ ├── infuse_core.png │ │ │ │ ├── ingot_aluminum.png │ │ │ │ ├── iron_dagger.png │ │ │ │ ├── iron_gun.png │ │ │ │ ├── iron_staff.png │ │ │ │ ├── iron_staff.png.mcmeta │ │ │ │ ├── iron_warhammer.png │ │ │ │ ├── lake_gemstone.png │ │ │ │ ├── lottery.png │ │ │ │ ├── lucky_gem_blue.png │ │ │ │ ├── lucky_gem_emerald.png │ │ │ │ ├── lucky_gem_gold.png │ │ │ │ ├── lucky_gem_purple.png │ │ │ │ ├── lucky_gem_red.png │ │ │ │ ├── magnesium_ingot.png │ │ │ │ ├── money.png │ │ │ │ ├── mooncake.png │ │ │ │ ├── nature_gemstone.png │ │ │ │ ├── nature_ingot.png │ │ │ │ ├── nature_staff.png │ │ │ │ ├── nether_key.png │ │ │ │ ├── netherite_dagger.png │ │ │ │ ├── netherite_gun.png │ │ │ │ ├── netherite_staff.png │ │ │ │ ├── netherite_staff.png.mcmeta │ │ │ │ ├── netherite_stick.png │ │ │ │ ├── netherite_warhammer.png │ │ │ │ ├── nickel_ingot.png │ │ │ │ ├── night_light.png │ │ │ │ ├── night_light.png.mcmeta │ │ │ │ ├── niobium_ingot.png │ │ │ │ ├── niobium_nugget.json │ │ │ │ ├── niobium_nugget.png │ │ │ │ ├── noname_catfood.png │ │ │ │ ├── nopower_staff.png │ │ │ │ ├── nuclear_advanced_ball.png │ │ │ │ ├── nuclear_ball.png │ │ │ │ ├── nuclear_epic_ball.png │ │ │ │ ├── orichalcos_ingot.png │ │ │ │ ├── prefix_scroll.png │ │ │ │ ├── prefix_scroll.png.mcmeta │ │ │ │ ├── profession_sword.png │ │ │ │ ├── profession_tank.png │ │ │ │ ├── purple_staff.png │ │ │ │ ├── purple_staff.png.mcmeta │ │ │ │ ├── quest_item.png │ │ │ │ ├── raid_light.png │ │ │ │ ├── rainbow_dagger.png │ │ │ │ ├── rainbow_gun.png │ │ │ │ ├── rainbow_gun.png.mcmeta │ │ │ │ ├── rainbow_ingot.png │ │ │ │ ├── rainbow_staff.png │ │ │ │ ├── rainbow_staff.png.mcmeta │ │ │ │ ├── rainbow_sword.png │ │ │ │ ├── rainbow_warhammer.png │ │ │ │ ├── red_green_dagger.png │ │ │ │ ├── red_green_dagger.png.mcmeta │ │ │ │ ├── red_matter_crystal.png │ │ │ │ ├── reset_scroll.png │ │ │ │ ├── restore_scroll.png │ │ │ │ ├── rune_ingot.png │ │ │ │ ├── scroll_advanced_emc.png │ │ │ │ ├── scroll_base_emc.png │ │ │ │ ├── scroll_blue.png │ │ │ │ ├── scroll_bx.png │ │ │ │ ├── scroll_celestial_azure.png │ │ │ │ ├── scroll_enlightening_glimmer.png │ │ │ │ ├── scroll_feast.png │ │ │ │ ├── scroll_gaia.png │ │ │ │ ├── scroll_gold.png │ │ │ │ ├── scroll_gourmand_feast.png │ │ │ │ ├── scroll_green.png │ │ │ │ ├── scroll_mystic_shadow.png │ │ │ │ ├── scroll_purple.png │ │ │ │ ├── scroll_red.png │ │ │ │ ├── scroll_super_emc.png │ │ │ │ ├── scroll_tulye.png │ │ │ │ ├── scroll_voracious_wolf.png │ │ │ │ ├── scroll_white.png │ │ │ │ ├── shard_aluminum.png │ │ │ │ ├── shard_aquamarine.png │ │ │ │ ├── shard_arlemite.png │ │ │ │ ├── shard_bloodgem.png │ │ │ │ ├── shard_chlorophyte.png │ │ │ │ ├── shard_cloggrum.png │ │ │ │ ├── shard_cold.png │ │ │ │ ├── shard_crystillium.png │ │ │ │ ├── shard_drystone.png │ │ │ │ ├── shard_emc_gem.png │ │ │ │ ├── shard_end_gobber.png │ │ │ │ ├── shard_froststeel.png │ │ │ │ ├── shard_gobber.png │ │ │ │ ├── shard_gravitite.png │ │ │ │ ├── shard_indium.png │ │ │ │ ├── shard_knightmetal.png │ │ │ │ ├── shard_lunarite_scrap.png │ │ │ │ ├── shard_magnesium.png │ │ │ │ ├── shard_moonsteel.png │ │ │ │ ├── shard_nether_gobber.png │ │ │ │ ├── shard_nickel.png │ │ │ │ ├── shard_oratchalcum.png │ │ │ │ ├── shard_orichalcos.png │ │ │ │ ├── shard_pendorite.png │ │ │ │ ├── shard_rainbow.png │ │ │ │ ├── shard_realmite.png │ │ │ │ ├── shard_regalium.png │ │ │ │ ├── shard_rose_copper.png │ │ │ │ ├── shard_rupee.png │ │ │ │ ├── shard_silver.png │ │ │ │ ├── shard_starmetal.png │ │ │ │ ├── shard_sunlit.png │ │ │ │ ├── shard_titanium.png │ │ │ │ ├── shard_torridite.png │ │ │ │ ├── shard_tungsten.png │ │ │ │ ├── shard_utherium.png │ │ │ │ ├── shard_zitrite.png │ │ │ │ ├── shengxuan_black.png │ │ │ │ ├── shengxuan_white.png │ │ │ │ ├── silver_ingot.png │ │ │ │ ├── silver_medal.png │ │ │ │ ├── skill_item1.png │ │ │ │ ├── skill_item1.png.mcmeta │ │ │ │ ├── skill_item2.png │ │ │ │ ├── skill_item2.png.mcmeta │ │ │ │ ├── small_emc_gem.png │ │ │ │ ├── sodium_cyanide_bucket.png │ │ │ │ ├── stainless_steel.png │ │ │ │ ├── stone_dagger.png │ │ │ │ ├── stone_gun.png │ │ │ │ ├── stone_ingot.png │ │ │ │ ├── stone_shard.png │ │ │ │ ├── stone_staff.png │ │ │ │ ├── stone_staff.png.mcmeta │ │ │ │ ├── stone_warhammer.png │ │ │ │ ├── sunlit_ingot.png │ │ │ │ ├── super_emc_gem.png │ │ │ │ ├── super_emc_gem.png.mcmeta │ │ │ │ ├── super_star.png │ │ │ │ ├── super_star.png.mcmeta │ │ │ │ ├── tangyuan.png │ │ │ │ ├── titanium_ingot.png │ │ │ │ ├── twilight_key.png │ │ │ │ ├── twilight_key.png.mcmeta │ │ │ │ ├── ultimate_emc_stored_totem.png │ │ │ │ ├── ultimate_emc_stored_totem.png.mcmeta │ │ │ │ ├── ultimate_singularity.png │ │ │ │ ├── ultimate_singularity.png.mcmeta │ │ │ │ ├── unequal.png │ │ │ │ ├── universal_ball.png │ │ │ │ ├── unobtainium_sword.png │ │ │ │ ├── unreal_metal.png │ │ │ │ ├── unreal_metal.png.mcmeta │ │ │ │ ├── vibranium_sword.png │ │ │ │ ├── voucher.png │ │ │ │ ├── wooden_dagger.png │ │ │ │ ├── wooden_gun.png │ │ │ │ ├── wooden_ingot.png │ │ │ │ ├── wooden_staff.png │ │ │ │ ├── wooden_staff.png.mcmeta │ │ │ │ ├── wooden_warhammer.png │ │ │ │ ├── year_cake.png │ │ │ │ └── zongzi.png │ │ │ │ ├── mob_effect │ │ │ │ ├── accuracy.png │ │ │ │ ├── attack_range.png │ │ │ │ ├── attack_speed.png │ │ │ │ ├── emc_broken.png │ │ │ │ ├── emc_flaming.png │ │ │ │ ├── emc_protect.png │ │ │ │ ├── magic_protect.png │ │ │ │ └── remote_damage.png │ │ │ │ └── quests │ │ │ │ └── qc.png │ │ ├── ftbquests │ │ │ └── textures │ │ │ │ └── hem.png │ │ ├── minecraft │ │ │ └── textures │ │ │ │ ├── gui │ │ │ │ ├── accessibility.png │ │ │ │ ├── container │ │ │ │ │ ├── anvil.png │ │ │ │ │ ├── beacon.png │ │ │ │ │ ├── blast_furnace.png │ │ │ │ │ ├── brewing_stand.png │ │ │ │ │ ├── cartography_table.png │ │ │ │ │ ├── crafting_table.png │ │ │ │ │ ├── dispenser.png │ │ │ │ │ ├── enchanting_table.png │ │ │ │ │ ├── furnace.png │ │ │ │ │ ├── gamemode_switcher.png │ │ │ │ │ ├── generic_54.png │ │ │ │ │ ├── grindstone.png │ │ │ │ │ ├── hopper.png │ │ │ │ │ ├── inventory.png │ │ │ │ │ ├── loom.png │ │ │ │ │ ├── shulker_box.png │ │ │ │ │ ├── smithing.png │ │ │ │ │ ├── smoker.png │ │ │ │ │ ├── stonecutter.png │ │ │ │ │ └── villager2.png │ │ │ │ ├── icons.png │ │ │ │ ├── options_background.png │ │ │ │ └── widgets.png │ │ │ │ └── models │ │ │ │ └── armor │ │ │ │ ├── fire_red_layer_1.png │ │ │ │ ├── fire_red_layer_2.png │ │ │ │ ├── guardian_layer_1.png │ │ │ │ └── guardian_layer_2.png │ │ ├── mysticalagriculture │ │ │ ├── blockstates │ │ │ │ └── antimatter_crop.json │ │ │ └── models │ │ │ │ ├── block │ │ │ │ └── antimatter_crop.json │ │ │ │ └── item │ │ │ │ ├── antimatter_essence.json │ │ │ │ └── antimatter_seeds.json │ │ └── packmenu │ │ │ ├── buttons │ │ │ ├── accessibility.json │ │ │ ├── custom.json │ │ │ ├── language.json │ │ │ ├── mods.json │ │ │ ├── multiplayer.json │ │ │ ├── options.json │ │ │ ├── quit.json │ │ │ ├── reloadbutton.json │ │ │ └── singleplayer.json │ │ │ ├── lang │ │ │ └── en_us.json │ │ │ ├── texts │ │ │ └── supporters.txt │ │ │ └── textures │ │ │ └── gui │ │ │ ├── aklizbutton.png │ │ │ ├── background.png │ │ │ ├── logo.png │ │ │ ├── reload.png │ │ │ └── widgets.png │ │ ├── data │ │ ├── curios │ │ │ └── tags │ │ │ │ └── items │ │ │ │ ├── charm.json │ │ │ │ ├── curios_nuclear_ball.json │ │ │ │ ├── emc_shield.json │ │ │ │ └── emc_totem.json │ │ ├── emcworld │ │ │ ├── advancements │ │ │ │ ├── bankrupt.json │ │ │ │ ├── cost │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ └── 6.json │ │ │ │ ├── entity │ │ │ │ │ ├── yuan_shou.json │ │ │ │ │ └── yuan_shou_kill.json │ │ │ │ ├── illager │ │ │ │ │ ├── shard.json │ │ │ │ │ ├── start.json │ │ │ │ │ ├── wave1.json │ │ │ │ │ ├── wave2.json │ │ │ │ │ └── wave3.json │ │ │ │ ├── lottery │ │ │ │ │ ├── buy.json │ │ │ │ │ ├── reward1.json │ │ │ │ │ ├── reward2.json │ │ │ │ │ ├── reward3.json │ │ │ │ │ └── reward4.json │ │ │ │ ├── weapon │ │ │ │ │ ├── first.json │ │ │ │ │ ├── level1.json │ │ │ │ │ ├── level2.json │ │ │ │ │ ├── level3.json │ │ │ │ │ ├── prefix1.json │ │ │ │ │ ├── prefix2.json │ │ │ │ │ ├── prefix3.json │ │ │ │ │ ├── star1.json │ │ │ │ │ ├── star2.json │ │ │ │ │ └── star3.json │ │ │ │ └── welcome.json │ │ │ ├── loot_tables │ │ │ │ └── blocks │ │ │ │ │ ├── advanced_update_core.json │ │ │ │ │ ├── aluminum_ore.json │ │ │ │ │ ├── aquamarine_ore.json │ │ │ │ │ ├── chlorophyte_ore.json │ │ │ │ │ ├── cold_ore.json │ │ │ │ │ ├── control_update_core.json │ │ │ │ │ ├── drystone_ore.json │ │ │ │ │ ├── emc_flower.json │ │ │ │ │ ├── emc_ore.json │ │ │ │ │ ├── emc_super.json │ │ │ │ │ ├── end_emc_ore.json │ │ │ │ │ ├── end_rich_emc_ore.json │ │ │ │ │ ├── gemstone_core.json │ │ │ │ │ ├── hardcore_stone.json │ │ │ │ │ ├── indium_ore.json │ │ │ │ │ ├── infuser_core.json │ │ │ │ │ ├── magnesium_ore.json │ │ │ │ │ ├── nether_emc_ore.json │ │ │ │ │ ├── nickel_ore.json │ │ │ │ │ ├── orichalcos_ore.json │ │ │ │ │ ├── prefix_core.json │ │ │ │ │ ├── profession_core.json │ │ │ │ │ ├── rich_emc_ore.json │ │ │ │ │ ├── silver_ore.json │ │ │ │ │ ├── star_pedestal.json │ │ │ │ │ ├── steel_furnace_brick.json │ │ │ │ │ ├── steel_furnace_core.json │ │ │ │ │ ├── sunlit_ore.json │ │ │ │ │ ├── titanium_ore.json │ │ │ │ │ ├── top_core.json │ │ │ │ │ ├── tungsten_ore.json │ │ │ │ │ ├── ultimate_induction_cell.json │ │ │ │ │ ├── update_addon_blue.json │ │ │ │ │ ├── update_addon_bx_purple.json │ │ │ │ │ ├── update_addon_cyan.json │ │ │ │ │ ├── update_addon_green.json │ │ │ │ │ ├── update_addon_orange.json │ │ │ │ │ ├── update_addon_purple.json │ │ │ │ │ ├── update_addon_red.json │ │ │ │ │ ├── update_addon_yellow.json │ │ │ │ │ ├── update_base_blue.json │ │ │ │ │ ├── update_base_bx_purple.json │ │ │ │ │ ├── update_base_cyan.json │ │ │ │ │ ├── update_base_green.json │ │ │ │ │ ├── update_base_orange.json │ │ │ │ │ ├── update_base_purple.json │ │ │ │ │ ├── update_base_red.json │ │ │ │ │ ├── update_base_yellow.json │ │ │ │ │ ├── update_cost_blue.json │ │ │ │ │ ├── update_cost_bx_purple.json │ │ │ │ │ ├── update_cost_cyan.json │ │ │ │ │ ├── update_cost_green.json │ │ │ │ │ ├── update_cost_orange.json │ │ │ │ │ ├── update_cost_purple.json │ │ │ │ │ ├── update_cost_red.json │ │ │ │ │ ├── update_cost_yellow.json │ │ │ │ │ ├── update_time_blue.json │ │ │ │ │ ├── update_time_bx_purple.json │ │ │ │ │ ├── update_time_cyan.json │ │ │ │ │ ├── update_time_green.json │ │ │ │ │ ├── update_time_orange.json │ │ │ │ │ ├── update_time_purple.json │ │ │ │ │ ├── update_time_red.json │ │ │ │ │ ├── update_time_yellow.json │ │ │ │ │ ├── vis_conversion_core.json │ │ │ │ │ └── weapon_upgrade_core.json │ │ │ ├── patchouli_books │ │ │ │ └── guide │ │ │ │ │ ├── book.json │ │ │ │ │ ├── en_us.zip │ │ │ │ │ ├── en_us │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── attack.json │ │ │ │ │ │ ├── block.json │ │ │ │ │ │ ├── emerald.json │ │ │ │ │ │ ├── sponsors.json │ │ │ │ │ │ └── start.json │ │ │ │ │ └── entries │ │ │ │ │ │ ├── attack │ │ │ │ │ │ ├── dagger.json │ │ │ │ │ │ ├── emc_shield.json │ │ │ │ │ │ ├── source.json │ │ │ │ │ │ ├── staff.json │ │ │ │ │ │ └── warhammer.json │ │ │ │ │ │ ├── block │ │ │ │ │ │ ├── advanced_update_core.json │ │ │ │ │ │ ├── gem_core.json │ │ │ │ │ │ ├── infuser_core.json │ │ │ │ │ │ ├── prefix_core.json │ │ │ │ │ │ ├── star.json │ │ │ │ │ │ ├── steel_core.json │ │ │ │ │ │ ├── vis_core.json │ │ │ │ │ │ └── weapon_update_core.json │ │ │ │ │ │ ├── emerald │ │ │ │ │ │ ├── damage.json │ │ │ │ │ │ └── raid.json │ │ │ │ │ │ ├── sponsors │ │ │ │ │ │ ├── advanced.json │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ ├── dev.json │ │ │ │ │ │ ├── epic.json │ │ │ │ │ │ ├── mascot.json │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ └── spr.json │ │ │ │ │ │ └── start │ │ │ │ │ │ ├── cost.json │ │ │ │ │ │ ├── ore.json │ │ │ │ │ │ ├── profession.json │ │ │ │ │ │ └── stage.json │ │ │ │ │ ├── zh_cn │ │ │ │ │ ├── categories │ │ │ │ │ │ ├── attack.json │ │ │ │ │ │ ├── block.json │ │ │ │ │ │ ├── emerald.json │ │ │ │ │ │ ├── sponsors.json │ │ │ │ │ │ └── start.json │ │ │ │ │ └── entries │ │ │ │ │ │ ├── attack │ │ │ │ │ │ ├── dagger.json │ │ │ │ │ │ ├── emc_shield.json │ │ │ │ │ │ ├── source.json │ │ │ │ │ │ ├── staff.json │ │ │ │ │ │ └── warhammer.json │ │ │ │ │ │ ├── block │ │ │ │ │ │ ├── advanced_update_core.json │ │ │ │ │ │ ├── gem_core.json │ │ │ │ │ │ ├── infuser_core.json │ │ │ │ │ │ ├── prefix_core.json │ │ │ │ │ │ ├── star.json │ │ │ │ │ │ ├── steel_core.json │ │ │ │ │ │ ├── vis_core.json │ │ │ │ │ │ └── weapon_update_core.json │ │ │ │ │ │ ├── emerald │ │ │ │ │ │ ├── damage.json │ │ │ │ │ │ └── raid.json │ │ │ │ │ │ ├── sponsors │ │ │ │ │ │ ├── advanced.json │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ ├── dev.json │ │ │ │ │ │ ├── epic.json │ │ │ │ │ │ ├── mascot.json │ │ │ │ │ │ ├── other.json │ │ │ │ │ │ └── spr.json │ │ │ │ │ │ └── start │ │ │ │ │ │ ├── cost.json │ │ │ │ │ │ ├── ore.json │ │ │ │ │ │ ├── profession.json │ │ │ │ │ │ └── stage.json │ │ │ │ │ └── zh_tw │ │ │ │ │ ├── categories │ │ │ │ │ ├── attack.json │ │ │ │ │ ├── block.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── sponsors.json │ │ │ │ │ └── start.json │ │ │ │ │ └── entries │ │ │ │ │ ├── attack │ │ │ │ │ ├── dagger.json │ │ │ │ │ ├── emc_shield.json │ │ │ │ │ ├── source.json │ │ │ │ │ ├── staff.json │ │ │ │ │ └── warhammer.json │ │ │ │ │ ├── block │ │ │ │ │ ├── advanced_update_core.json │ │ │ │ │ ├── gem_core.json │ │ │ │ │ ├── infuser_core.json │ │ │ │ │ ├── prefix_core.json │ │ │ │ │ ├── star.json │ │ │ │ │ ├── steel_core.json │ │ │ │ │ ├── vis_core.json │ │ │ │ │ └── weapon_update_core.json │ │ │ │ │ ├── emerald │ │ │ │ │ ├── damage.json │ │ │ │ │ └── raid.json │ │ │ │ │ ├── sponsors │ │ │ │ │ ├── advanced.json │ │ │ │ │ ├── basic.json │ │ │ │ │ ├── dev.json │ │ │ │ │ ├── epic.json │ │ │ │ │ ├── mascot.json │ │ │ │ │ └── other.json │ │ │ │ │ └── start │ │ │ │ │ ├── cost.json │ │ │ │ │ ├── ore.json │ │ │ │ │ ├── profession.json │ │ │ │ │ └── stage.json │ │ │ └── recipes │ │ │ │ ├── advanced_gem.json │ │ │ │ ├── ancient_sapling.json │ │ │ │ ├── dark_portal.json │ │ │ │ ├── end_gobber_ingot.json │ │ │ │ ├── fire_sword.json │ │ │ │ ├── ice_sword.json │ │ │ │ ├── infuser │ │ │ │ ├── diamond.json │ │ │ │ ├── god_block.json │ │ │ │ └── ultimate_tier.json │ │ │ │ ├── magenta_collector.json │ │ │ │ ├── magenta_relay.json │ │ │ │ ├── master_rune_holder.json │ │ │ │ ├── nature_sword.json │ │ │ │ ├── offering_table.json │ │ │ │ ├── personal_link.json │ │ │ │ ├── purple_collector.json │ │ │ │ ├── purple_relay.json │ │ │ │ ├── ritual_altar.json │ │ │ │ ├── skill_item_2.json │ │ │ │ ├── update_addon_cyan.json │ │ │ │ ├── update_cost_cyan.json │ │ │ │ ├── update_time_cyan.json │ │ │ │ └── wood_stand.json │ │ └── the_afterlight │ │ │ ├── advancements │ │ │ └── book_grant.json │ │ │ └── loot_tables │ │ │ └── blocks │ │ │ ├── overworld_moon_crystal_ore.json │ │ │ └── slate_moon_crystal_ore.json │ │ ├── mixins.emcworld.json │ │ └── pack.mcmeta └── test │ └── java │ ├── main.java │ └── raid.xlsx └── web ├── api.php ├── botapi.php ├── download.php ├── md5.js ├── md5.php ├── sponsors.php ├── token.php └── utils.php /.github/ISSUE_TEMPLATE/cn_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/.github/ISSUE_TEMPLATE/cn_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cn_suggestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/.github/ISSUE_TEMPLATE/cn_suggestions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/en_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/.github/ISSUE_TEMPLATE/en_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/en_suggestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/.github/ISSUE_TEMPLATE/en_suggestions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tw_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/.github/ISSUE_TEMPLATE/tw_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tw_suggestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/.github/ISSUE_TEMPLATE/tw_suggestions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Custom License: 2 | https://biggestxuan.top/emcworld/l -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/changelog.txt -------------------------------------------------------------------------------- /config/EnderStorage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/EnderStorage.cfg -------------------------------------------------------------------------------- /config/Mekanism/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/client.toml -------------------------------------------------------------------------------- /config/Mekanism/gear.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/gear.toml -------------------------------------------------------------------------------- /config/Mekanism/general.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/general.toml -------------------------------------------------------------------------------- /config/Mekanism/generators-gear.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/generators-gear.toml -------------------------------------------------------------------------------- /config/Mekanism/generators.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/generators.toml -------------------------------------------------------------------------------- /config/Mekanism/machine-storage.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/machine-storage.toml -------------------------------------------------------------------------------- /config/Mekanism/machine-usage.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/machine-usage.toml -------------------------------------------------------------------------------- /config/Mekanism/tiers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/tiers.toml -------------------------------------------------------------------------------- /config/Mekanism/tools-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/tools-client.toml -------------------------------------------------------------------------------- /config/Mekanism/tools.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/tools.toml -------------------------------------------------------------------------------- /config/Mekanism/world.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/Mekanism/world.toml -------------------------------------------------------------------------------- /config/ModernUI/bootstrap: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /config/ModernUI/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ModernUI/client.toml -------------------------------------------------------------------------------- /config/ModernUI/common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ModernUI/common.toml -------------------------------------------------------------------------------- /config/ModernUI/server.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/MouseTweaks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/MouseTweaks.cfg -------------------------------------------------------------------------------- /config/ProjectE/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ProjectE/client.toml -------------------------------------------------------------------------------- /config/ProjectE/common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ProjectE/common.toml -------------------------------------------------------------------------------- /config/ProjectE/custom_emc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ProjectE/custom_emc.json -------------------------------------------------------------------------------- /config/ProjectE/mapping.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ProjectE/mapping.toml -------------------------------------------------------------------------------- /config/ProjectE/processing.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ProjectE/processing.toml -------------------------------------------------------------------------------- /config/ProjectE/server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ProjectE/server.toml -------------------------------------------------------------------------------- /config/YungsExtras-forge-1_16.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/YungsExtras-forge-1_16.toml -------------------------------------------------------------------------------- /config/YungsExtras/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/YungsExtras/README.txt -------------------------------------------------------------------------------- /config/YungsExtras/forge-1_16/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/YungsExtras/forge-1_16/README.txt -------------------------------------------------------------------------------- /config/YungsExtras/forge-1_16/wishing_wells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/YungsExtras/forge-1_16/wishing_wells.json -------------------------------------------------------------------------------- /config/abnormals_core-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/abnormals_core-client.toml -------------------------------------------------------------------------------- /config/abnormals_core-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/abnormals_core-common.toml -------------------------------------------------------------------------------- /config/aether-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/aether-client.toml -------------------------------------------------------------------------------- /config/aether-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/aether-common.toml -------------------------------------------------------------------------------- /config/akashictome-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/akashictome-common.toml -------------------------------------------------------------------------------- /config/alltheores-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/alltheores-common.toml -------------------------------------------------------------------------------- /config/appleskin-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/appleskin-client.toml -------------------------------------------------------------------------------- /config/astralsorcery-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/astralsorcery-client.toml -------------------------------------------------------------------------------- /config/astralsorcery-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/astralsorcery-common.toml -------------------------------------------------------------------------------- /config/attributefix-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/attributefix-common.toml -------------------------------------------------------------------------------- /config/atum-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/atum-common.toml -------------------------------------------------------------------------------- /config/betterdungeons-forge-1_16.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/betterdungeons-forge-1_16.toml -------------------------------------------------------------------------------- /config/bettermineshafts-forge-1_16.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bettermineshafts-forge-1_16.toml -------------------------------------------------------------------------------- /config/bettermineshafts/1_16/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bettermineshafts/1_16/README.txt -------------------------------------------------------------------------------- /config/bettermineshafts/1_16/biomeTags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bettermineshafts/1_16/biomeTags.txt -------------------------------------------------------------------------------- /config/bettermineshafts/1_16/variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bettermineshafts/1_16/variants.json -------------------------------------------------------------------------------- /config/bettermineshafts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bettermineshafts/README.txt -------------------------------------------------------------------------------- /config/blockswap/block_swap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/blockswap/block_swap.json -------------------------------------------------------------------------------- /config/bloodmagic-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bloodmagic-client.toml -------------------------------------------------------------------------------- /config/bloodmagic-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bloodmagic-common.toml -------------------------------------------------------------------------------- /config/botania-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/botania-client.toml -------------------------------------------------------------------------------- /config/botania-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/botania-common.toml -------------------------------------------------------------------------------- /config/bountifulbaubles-client.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/bountifulbaubles-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/bountifulbaubles-common.toml -------------------------------------------------------------------------------- /config/byg/byg-biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/byg/byg-biomes.json -------------------------------------------------------------------------------- /config/byg/byg-end-biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/byg/byg-end-biomes.json -------------------------------------------------------------------------------- /config/byg/byg-end-sub-biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/byg/byg-end-sub-biomes.json -------------------------------------------------------------------------------- /config/byg/byg-nether-biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/byg/byg-nether-biomes.json -------------------------------------------------------------------------------- /config/byg/byg-sub-biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/byg/byg-sub-biomes.json -------------------------------------------------------------------------------- /config/byg/byg-world.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/byg/byg-world.toml -------------------------------------------------------------------------------- /config/candyworld-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/candyworld-common.toml -------------------------------------------------------------------------------- /config/castle_dungeons/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/castle_dungeons/config.cfg -------------------------------------------------------------------------------- /config/castle_dungeons/themes/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/castle_dungeons/themes/default.cfg -------------------------------------------------------------------------------- /config/castle_dungeons/themes/desert.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/castle_dungeons/themes/desert.cfg -------------------------------------------------------------------------------- /config/cataclysm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/cataclysm.toml -------------------------------------------------------------------------------- /config/ccl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ccl.cfg -------------------------------------------------------------------------------- /config/champions-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/champions-client.toml -------------------------------------------------------------------------------- /config/citadel-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/citadel-common.toml -------------------------------------------------------------------------------- /config/classicbar-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/classicbar-client.toml -------------------------------------------------------------------------------- /config/cofh_core-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/cofh_core-client.toml -------------------------------------------------------------------------------- /config/collective-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/collective-common.toml -------------------------------------------------------------------------------- /config/conjurer_illager-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/conjurer_illager-common.toml -------------------------------------------------------------------------------- /config/crockpot-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/crockpot-client.toml -------------------------------------------------------------------------------- /config/crockpot-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/crockpot-common.toml -------------------------------------------------------------------------------- /config/cucumber-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/cucumber-client.toml -------------------------------------------------------------------------------- /config/cucumber-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/cucumber-common.toml -------------------------------------------------------------------------------- /config/cucumber-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/cucumber-tags.json -------------------------------------------------------------------------------- /config/curios-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/curios-client.toml -------------------------------------------------------------------------------- /config/divinerpg-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/divinerpg-common.toml -------------------------------------------------------------------------------- /config/drippyloadingscreen/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/drippyloadingscreen/config.cfg -------------------------------------------------------------------------------- /config/drippyloadingscreen/customization/main.dllayout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/drippyloadingscreen/customization/main.dllayout -------------------------------------------------------------------------------- /config/drippyloadingscreen/locals/en_us.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/drippyloadingscreen/locals/en_us.local -------------------------------------------------------------------------------- /config/dummmmmmy-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/dummmmmmy-client.toml -------------------------------------------------------------------------------- /config/dummmmmmy-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/dummmmmmy-common.toml -------------------------------------------------------------------------------- /config/dungeonsmod-common-1.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/dungeonsmod-common-1.toml.bak -------------------------------------------------------------------------------- /config/dungeonsmod-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/dungeonsmod-common.toml -------------------------------------------------------------------------------- /config/emcworld-client-1.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/emcworld-client-1.toml.bak -------------------------------------------------------------------------------- /config/emcworld-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/emcworld-client.toml -------------------------------------------------------------------------------- /config/emcworld-common-1.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/emcworld-common-1.toml.bak -------------------------------------------------------------------------------- /config/emcworld-common-2.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/emcworld-common-2.toml.bak -------------------------------------------------------------------------------- /config/emcworld-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/emcworld-common.toml -------------------------------------------------------------------------------- /config/endrem.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/endrem.toml -------------------------------------------------------------------------------- /config/entityculling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/entityculling.json -------------------------------------------------------------------------------- /config/equipmentcompare-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/equipmentcompare-common.toml -------------------------------------------------------------------------------- /config/explorerscompass-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/explorerscompass-client.toml -------------------------------------------------------------------------------- /config/explorerscompass-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/explorerscompass-common.toml -------------------------------------------------------------------------------- /config/extendedcrafting-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting-client.toml -------------------------------------------------------------------------------- /config/extendedcrafting-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting-common.toml -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/alfsteel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/alfsteel.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/aluminum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/aluminum.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/atm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/atm.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/bronze.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/clock.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/coal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/coal.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/copper.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/dark_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/dark_matter.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/diamond.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/electrum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/electrum.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/emerald.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/glowstone.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/invar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/invar.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/iron.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/lapis_lazuli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/lapis_lazuli.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/lead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/lead.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/nickel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/nickel.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/platinum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/platinum.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/red_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/red_matter.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/redstone.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/sculk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/sculk.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/silver.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/steel.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/tin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/tin.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/unobtainium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/unobtainium.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/uranium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/uranium.json -------------------------------------------------------------------------------- /config/extendedcrafting/singularities/vibranium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/extendedcrafting/singularities/vibranium.json -------------------------------------------------------------------------------- /config/farmersdelight-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/farmersdelight-client.toml -------------------------------------------------------------------------------- /config/farmersdelight-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/farmersdelight-common.toml -------------------------------------------------------------------------------- /config/ferritecore-mixin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ferritecore-mixin.toml -------------------------------------------------------------------------------- /config/fml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/fml.toml -------------------------------------------------------------------------------- /config/forge-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/forge-client.toml -------------------------------------------------------------------------------- /config/forge-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/forge-common.toml -------------------------------------------------------------------------------- /config/ftbbackups-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ftbbackups-common.toml -------------------------------------------------------------------------------- /config/ftbquests/quests/chapter_groups.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ftbquests/quests/chapter_groups.snbt -------------------------------------------------------------------------------- /config/ftbquests/quests/data.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ftbquests/quests/data.snbt -------------------------------------------------------------------------------- /config/ftbquests/quests/reward_tables/1.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ftbquests/quests/reward_tables/1.snbt -------------------------------------------------------------------------------- /config/gamestages/known_stages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/gamestages/known_stages.json -------------------------------------------------------------------------------- /config/gobber-general.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/gobber-general.toml -------------------------------------------------------------------------------- /config/good_nights_sleep-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/good_nights_sleep-common.toml -------------------------------------------------------------------------------- /config/hats-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/hats-client.toml -------------------------------------------------------------------------------- /config/ichunutil.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil.toml -------------------------------------------------------------------------------- /config/ichunutil/head/5.extracted: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/ichunutil/head/AbstractHorseEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/AbstractHorseEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/AbstractIllagerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/AbstractIllagerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/AbstractPiglinEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/AbstractPiglinEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/AbstractSkeletonEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/AbstractSkeletonEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/AbstractVillagerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/AbstractVillagerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Aquaculture/AquaFishEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Aquaculture/AquaFishEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Aquaculture/TurtleLandEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Aquaculture/TurtleLandEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Artifacts/MimicEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Artifacts/MimicEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/AssassinEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/AssassinEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/AtumVillagerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/AtumVillagerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/BarbarianEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/BarbarianEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/BonestormEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/BonestormEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/BrigandEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/BrigandEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/DesertRabbitEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/DesertRabbitEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/DesertWolfEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/DesertWolfEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/ForsakenEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/ForsakenEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/MummyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/MummyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/NomadEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/NomadEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/PharaohEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/PharaohEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/QuailEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/QuailEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/ScarabEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/ScarabEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/SergeantEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/SergeantEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/ServalEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/ServalEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/StoneguardEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/StoneguardEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/StonewardenEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/StonewardenEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/TarantulaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/TarantulaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/WarlordEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/WarlordEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Atum/WraithEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Atum/WraithEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BatEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BatEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BeeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BeeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Belly Button/DustBunnyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Belly Button/DustBunnyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Bettas/BettaFishEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Bettas/BettaFishEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BetterEnd/CubozoaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BetterEnd/CubozoaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BetterEnd/DragonflyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BetterEnd/DragonflyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BetterEnd/EndFishEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BetterEnd/EndFishEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BetterEnd/EndSlimeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BetterEnd/EndSlimeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BetterEnd/ShadowWalkerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BetterEnd/ShadowWalkerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BetterEnd/SilkMothEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BetterEnd/SilkMothEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/BlazeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/BlazeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/ArachnarchEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/ArachnarchEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/AzulfoEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/AzulfoEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/CosmicFoxEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/CosmicFoxEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/CrogreEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/CrogreEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/CrynocerousEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/CrynocerousEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/CrystalCamelEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/CrystalCamelEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/EmberbackEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/EmberbackEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/FireflyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/FireflyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/FrostSpiritEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/FrostSpiritEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/GatekeeperEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/GatekeeperEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/JellyDrifterEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/JellyDrifterEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/NestedSpiderEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/NestedSpiderEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/NyctoflyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/NyctoflyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/PolargeistEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/PolargeistEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/SeclamEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/SeclamEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/ShadeMonitorEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/ShadeMonitorEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/ShrumptyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/ShrumptyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/SlivEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/SlivEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/SnowOwlEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/SnowOwlEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/SpewterEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/SpewterEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/StardustRamEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/StardustRamEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/StoneletEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/StoneletEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/SummonerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/SummonerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Blue Skies/VenomSpiderEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Blue Skies/VenomSpiderEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Buddycards/EnderlingEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Buddycards/EnderlingEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/CatEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CatEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ChickenEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ChickenEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/CodEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CodEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/CowEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CowEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/CreeperEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CreeperEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityBlue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityBlue.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityBoss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityBoss.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityBossEnder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityBossEnder.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityEnder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityEnder.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityGreen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityGreen.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityHerobrine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityHerobrine.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityPurple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityPurple.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityRed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityRed.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntitySix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntitySix.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntitySteve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntitySteve.json -------------------------------------------------------------------------------- /config/ichunutil/head/CutePuppyMod/EntityYellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/CutePuppyMod/EntityYellow.json -------------------------------------------------------------------------------- /config/ichunutil/head/Direbats/DirebatEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Direbats/DirebatEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/DolphinEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/DolphinEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/DrownedEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/DrownedEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Druidcraft/BeetleEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Druidcraft/BeetleEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Druidcraft/DreadfishEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Druidcraft/DreadfishEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Druidcraft/LunarMothEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Druidcraft/LunarMothEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Dungeons Mobs/GeomancerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Dungeons Mobs/GeomancerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Dungeons Mobs/IceologerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Dungeons Mobs/IceologerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Dungeons Mobs/LeapleafEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Dungeons Mobs/LeapleafEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Dungeons Mobs/WhispererEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Dungeons Mobs/WhispererEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Dungeons Mobs/WraithEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Dungeons Mobs/WraithEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/BoneSpiderEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/BoneSpiderEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/CluckShroomEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/CluckShroomEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/HornedSheepEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/HornedSheepEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/JollyLlamaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/JollyLlamaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/LobberZombieEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/LobberZombieEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/MoobloomEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/MoobloomEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/MuddyPigEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/MuddyPigEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/RainbowSheepEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/RainbowSheepEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/VilerWitchEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/VilerWitchEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Earth Mobs/WoolyCowEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Earth Mobs/WoolyCowEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Eidolon/WraithEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Eidolon/WraithEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Eidolon/ZombieBruteEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Eidolon/ZombieBruteEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ElderGuardianEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ElderGuardianEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/End Reborn/EndGuardMob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/End Reborn/EndGuardMob.json -------------------------------------------------------------------------------- /config/ichunutil/head/EnderDragonEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/EnderDragonEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/EndermanEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/EndermanEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/EndermiteEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/EndermiteEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityBluejay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityBluejay.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityBooby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityBooby.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityBudgerigar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityBudgerigar.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityCardinal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityCardinal.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityCassowary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityCassowary.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityCockatoo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityCockatoo.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityCrane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityCrane.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityDuck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityDuck.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityFlamingo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityFlamingo.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityGull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityGull.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityHeron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityHeron.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityKingfisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityKingfisher.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityKiwi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityKiwi.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityKookaburra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityKookaburra.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityLyrebird.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityLyrebird.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityMacaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityMacaw.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityMagpie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityMagpie.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityOstrich.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityOstrich.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityOwl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityOwl.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityPeafowl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityPeafowl.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityPelican.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityPelican.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityPenguin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityPenguin.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityPigeon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityPigeon.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityRoadrunner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityRoadrunner.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityRobin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityRobin.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntitySwan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntitySwan.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityToucan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityToucan.json -------------------------------------------------------------------------------- /config/ichunutil/head/Exotic Birds/EntityWoodpecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Exotic Birds/EntityWoodpecker.json -------------------------------------------------------------------------------- /config/ichunutil/head/Extra Golems/GenericGolem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Extra Golems/GenericGolem.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/BluWeeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/BluWeeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/GopjetEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/GopjetEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/MudhorseEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/MudhorseEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/PapaWeeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/PapaWeeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/PeaWeeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/PeaWeeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/PenglilEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/PenglilEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/VibraWeeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/VibraWeeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/WeeWeeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/WeeWeeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Fins & Tails/WherbleEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Fins & Tails/WherbleEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/FoxEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/FoxEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/GhastEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/GhastEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/GiantEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/GiantEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/GraveStone/GhostPlayerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/GraveStone/GhostPlayerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/AraEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/AraEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/ArachneEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/ArachneEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/CentaurEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/CentaurEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/CerastesEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/CerastesEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/CerberusEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/CerberusEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/CharybdisEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/CharybdisEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/CirceEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/CirceEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/CyclopesEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/CyclopesEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/CyprianEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/CyprianEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/DrakainaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/DrakainaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/DryadEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/DryadEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/ElpisEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/ElpisEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/EmpusaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/EmpusaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/FuryEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/FuryEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/GiantBoarEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/GiantBoarEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/GiganteEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/GiganteEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/GorgonEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/GorgonEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/HarpyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/HarpyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/MadCowEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/MadCowEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/MakhaiEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/MakhaiEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/MinotaurEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/MinotaurEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/NaiadEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/NaiadEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/OrthusEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/OrthusEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/PythonEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/PythonEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/SatyrEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/SatyrEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/ShadeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/ShadeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Greek Fantasy/SirenEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Greek Fantasy/SirenEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Guard Villagers/GuardEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Guard Villagers/GuardEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/GuardianEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/GuardianEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/HoglinEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/HoglinEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/IllusionerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/IllusionerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Inventory Pets/AnvilPetEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Inventory Pets/AnvilPetEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Inventory Pets/BedPetEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Inventory Pets/BedPetEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/IronGolemEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/IronGolemEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/LlamaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/LlamaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/MagmaCubeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/MagmaCubeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Minecolonies/EntityBarbarian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Minecolonies/EntityBarbarian.json -------------------------------------------------------------------------------- /config/ichunutil/head/Minecolonies/EntityCitizen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Minecolonies/EntityCitizen.json -------------------------------------------------------------------------------- /config/ichunutil/head/Minecolonies/EntityMercenary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Minecolonies/EntityMercenary.json -------------------------------------------------------------------------------- /config/ichunutil/head/Minecolonies/EntityMummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Minecolonies/EntityMummy.json -------------------------------------------------------------------------------- /config/ichunutil/head/Minecolonies/EntityPirate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Minecolonies/EntityPirate.json -------------------------------------------------------------------------------- /config/ichunutil/head/Minecolonies/VisitorCitizen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Minecolonies/VisitorCitizen.json -------------------------------------------------------------------------------- /config/ichunutil/head/Miniatures/MiniMeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Miniatures/MiniMeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Minibloom/MinibloomEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Minibloom/MinibloomEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/MooshroomEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/MooshroomEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mutant Beasts/SpiderPigEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mutant Beasts/SpiderPigEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/BeetleEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/BeetleEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/DeerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/DeerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/DuckEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/DuckEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/FrogEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/FrogEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/LavaCatEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/LavaCatEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/OwlEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/OwlEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/SilkwormEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/SilkwormEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Mystical World/SproutEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Mystical World/SproutEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/OcelotEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/OcelotEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Omni/SeahorseEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Omni/SeahorseEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/PandaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/PandaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ParrotEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ParrotEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/PetRock/EntityPetRock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/PetRock/EntityPetRock.json -------------------------------------------------------------------------------- /config/ichunutil/head/PhantomEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/PhantomEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/PigEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/PigEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Platypuses/PlatypusEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Platypuses/PlatypusEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Player Mobs/PlayerMobEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Player Mobs/PlayerMobEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/PlayerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/PlayerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Pokecube AIO/LeaderNpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Pokecube AIO/LeaderNpc.json -------------------------------------------------------------------------------- /config/ichunutil/head/Pokecube AIO/NpcMob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Pokecube AIO/NpcMob.json -------------------------------------------------------------------------------- /config/ichunutil/head/Pokecube AIO/TrainerNpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Pokecube AIO/TrainerNpc.json -------------------------------------------------------------------------------- /config/ichunutil/head/PolarBearEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/PolarBearEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/PufferfishEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/PufferfishEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/CrabEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/CrabEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/ForgottenEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/ForgottenEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/FoxhoundEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/FoxhoundEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/FrogEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/FrogEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/ShibaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/ShibaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/StonelingEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/StonelingEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/ToretoiseEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/ToretoiseEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Quark/WraithEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Quark/WraithEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/RabbitEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/RabbitEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/RavagerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/RavagerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/SalmonEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/SalmonEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/SheepEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/SheepEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ShulkerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ShulkerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/SilverfishEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/SilverfishEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/SlimeEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/SlimeEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Snow Pig/SnowPigEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Snow Pig/SnowPigEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/SnowGolemEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/SnowGolemEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/SpiderEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/SpiderEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/SquidEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/SquidEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Statues/PlayerStatueEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Statues/PlayerStatueEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Statues/StatueBatEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Statues/StatueBatEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Straw Golem/EntityStrawGolem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Straw Golem/EntityStrawGolem.json -------------------------------------------------------------------------------- /config/ichunutil/head/StriderEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/StriderEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/DipsyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/DipsyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/DipsyZombieEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/DipsyZombieEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/LaaLaaEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/LaaLaaEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/NooNooEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/NooNooEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/PoEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/PoEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/PoZombieEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/PoZombieEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/TiddlytubbyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/TiddlytubbyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Teletubbies/TinkyWinkyEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Teletubbies/TinkyWinkyEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/The Conjurer/ConjurerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/The Conjurer/ConjurerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Thermal/BasalzEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Thermal/BasalzEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Thermal/BlitzEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Thermal/BlitzEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Thermal/BlizzEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Thermal/BlizzEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/TropicalFishEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/TropicalFishEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/TurtleEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/TurtleEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFBoar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFBoar.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFBunny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFBunny.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFDeer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFDeer.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFLich.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFLich.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFNaga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFNaga.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFRaven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFRaven.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFTroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFTroll.json -------------------------------------------------------------------------------- /config/ichunutil/head/Twilight Forest/EntityTFYeti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Twilight Forest/EntityTFYeti.json -------------------------------------------------------------------------------- /config/ichunutil/head/VexEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/VexEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/Whisperwoods/EntityHidebehind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Whisperwoods/EntityHidebehind.json -------------------------------------------------------------------------------- /config/ichunutil/head/Whisperwoods/EntityMoth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Whisperwoods/EntityMoth.json -------------------------------------------------------------------------------- /config/ichunutil/head/Whisperwoods/EntityZotzpyre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/Whisperwoods/EntityZotzpyre.json -------------------------------------------------------------------------------- /config/ichunutil/head/WitchEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/WitchEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/WitherEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/WitherEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/WolfEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/WolfEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ZoglinEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ZoglinEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ZombieEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ZombieEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ZombieVillagerEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ZombieVillagerEntity.json -------------------------------------------------------------------------------- /config/ichunutil/head/ZombifiedPiglinEntity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/head/ZombifiedPiglinEntity.json -------------------------------------------------------------------------------- /config/ichunutil/themes/aztec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/aztec.json -------------------------------------------------------------------------------- /config/ichunutil/themes/blue&black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/blue&black.json -------------------------------------------------------------------------------- /config/ichunutil/themes/blue&orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/blue&orange.json -------------------------------------------------------------------------------- /config/ichunutil/themes/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/default.json -------------------------------------------------------------------------------- /config/ichunutil/themes/grassgreen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/grassgreen.json -------------------------------------------------------------------------------- /config/ichunutil/themes/green&black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/green&black.json -------------------------------------------------------------------------------- /config/ichunutil/themes/lazygray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/lazygray.json -------------------------------------------------------------------------------- /config/ichunutil/themes/monogeneric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/monogeneric.json -------------------------------------------------------------------------------- /config/ichunutil/themes/nightblack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/nightblack.json -------------------------------------------------------------------------------- /config/ichunutil/themes/red&black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/red&black.json -------------------------------------------------------------------------------- /config/ichunutil/themes/skyblue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/skyblue.json -------------------------------------------------------------------------------- /config/ichunutil/themes/whitelight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ichunutil/themes/whitelight.json -------------------------------------------------------------------------------- /config/illageandspillage-client.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/illageandspillage-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/illageandspillage-common.toml -------------------------------------------------------------------------------- /config/illagers_plus.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/illagers_plus.toml -------------------------------------------------------------------------------- /config/immersiveengineering-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/immersiveengineering-client.toml -------------------------------------------------------------------------------- /config/immersiveengineering-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/immersiveengineering-common.toml -------------------------------------------------------------------------------- /config/instantunify-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/instantunify-common.toml -------------------------------------------------------------------------------- /config/inventoryprofilesnext/inventoryprofiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/inventoryprofilesnext/inventoryprofiles.json -------------------------------------------------------------------------------- /config/inventoryprofilesnext/新的世界/lockSlots.txt: -------------------------------------------------------------------------------- 1 | 21 2 | 22 3 | 30 -------------------------------------------------------------------------------- /config/ironfurnaces-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ironfurnaces-client.toml -------------------------------------------------------------------------------- /config/ironfurnaces.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/item_render_rebirth-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/item_render_rebirth-common.toml -------------------------------------------------------------------------------- /config/jecharacters.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/jecharacters.toml -------------------------------------------------------------------------------- /config/jei-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/jei-client.toml -------------------------------------------------------------------------------- /config/jeresources-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/jeresources-common.toml -------------------------------------------------------------------------------- /config/jeresources.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/jeresources.toml -------------------------------------------------------------------------------- /config/konkrete/locals/de_de.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/konkrete/locals/de_de.local -------------------------------------------------------------------------------- /config/konkrete/locals/en_us.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/konkrete/locals/en_us.local -------------------------------------------------------------------------------- /config/konkrete/locals/pl_pl.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/konkrete/locals/pl_pl.local -------------------------------------------------------------------------------- /config/konkrete/locals/pt_br.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/konkrete/locals/pt_br.local -------------------------------------------------------------------------------- /config/litewolfcore-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/litewolfcore-client.toml -------------------------------------------------------------------------------- /config/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/loading.png -------------------------------------------------------------------------------- /config/lootr-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/lootr-client.toml -------------------------------------------------------------------------------- /config/lootr-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/lootr-common.toml -------------------------------------------------------------------------------- /config/magnesium_extras.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/magnesium_extras.toml -------------------------------------------------------------------------------- /config/mcjtylib-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/mcjtylib-client.toml -------------------------------------------------------------------------------- /config/mgrb_extras.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/mgrb_extras.toml -------------------------------------------------------------------------------- /config/mgrb_extras_entitylist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/mgrb_extras_entitylist.toml -------------------------------------------------------------------------------- /config/mythicbotany-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/mythicbotany-client.toml -------------------------------------------------------------------------------- /config/mythicbotany.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/mythicbotany.json5 -------------------------------------------------------------------------------- /config/naturesaura-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/naturesaura-common.toml -------------------------------------------------------------------------------- /config/naturescompass-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/naturescompass-client.toml -------------------------------------------------------------------------------- /config/naturescompass-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/naturescompass-common.toml -------------------------------------------------------------------------------- /config/neat-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/neat-client.toml -------------------------------------------------------------------------------- /config/netherite_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/netherite_plus.json -------------------------------------------------------------------------------- /config/netherportalspread-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/netherportalspread-common.toml -------------------------------------------------------------------------------- /config/netherportalspread/spreadsettings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/netherportalspread/spreadsettings.txt -------------------------------------------------------------------------------- /config/notenoughcrashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/notenoughcrashes.json -------------------------------------------------------------------------------- /config/oculus.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oculus.properties -------------------------------------------------------------------------------- /config/openloader-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/openloader-common.toml -------------------------------------------------------------------------------- /config/opotato-mixins.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/opotato-mixins.properties -------------------------------------------------------------------------------- /config/oretweaker/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/Info.txt -------------------------------------------------------------------------------- /config/oretweaker/OreTweaker.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/OreTweaker.toml -------------------------------------------------------------------------------- /config/oretweaker/data/ancient_debris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/ancient_debris.json -------------------------------------------------------------------------------- /config/oretweaker/data/andesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/andesite.json -------------------------------------------------------------------------------- /config/oretweaker/data/blackstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/blackstone.json -------------------------------------------------------------------------------- /config/oretweaker/data/coal_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/coal_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/diamond_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/diamond_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/diorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/diorite.json -------------------------------------------------------------------------------- /config/oretweaker/data/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/dirt.json -------------------------------------------------------------------------------- /config/oretweaker/data/emerald_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/emerald_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/gold_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/gold_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/granite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/granite.json -------------------------------------------------------------------------------- /config/oretweaker/data/gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/gravel.json -------------------------------------------------------------------------------- /config/oretweaker/data/infested_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/infested_stone.json -------------------------------------------------------------------------------- /config/oretweaker/data/iron_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/iron_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/lapis_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/lapis_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/magma_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/magma_block.json -------------------------------------------------------------------------------- /config/oretweaker/data/nether_gold_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/nether_gold_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/nether_quartz_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/nether_quartz_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/redstone_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/redstone_ore.json -------------------------------------------------------------------------------- /config/oretweaker/data/soul_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/data/soul_sand.json -------------------------------------------------------------------------------- /config/oretweaker/templates/collectives/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/collectives/default.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/ancient_debris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/ancient_debris.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/andesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/andesite.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/blackstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/blackstone.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/coal_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/coal_ore.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/diamond_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/diamond_ore.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/diorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/diorite.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/dirt.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/emerald_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/emerald_ore.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/gold_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/gold_ore.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/granite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/granite.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/gravel.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/infested_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/infested_stone.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/iron_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/iron_ore.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/lapis_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/lapis_ore.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/magma_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/magma_block.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/redstone_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/redstone_ore.json -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/soul_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/defaults/soul_sand.json -------------------------------------------------------------------------------- /config/oretweaker/templates/other/fuck_silverfish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/other/fuck_silverfish.json -------------------------------------------------------------------------------- /config/oretweaker/templates/remove/remove_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/remove/remove_ores.json -------------------------------------------------------------------------------- /config/oretweaker/templates/remove/remove_stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/oretweaker/templates/remove/remove_stones.json -------------------------------------------------------------------------------- /config/packmenu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/packmenu.cfg -------------------------------------------------------------------------------- /config/patchouli-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/patchouli-client.toml -------------------------------------------------------------------------------- /config/performant-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/performant-common.toml -------------------------------------------------------------------------------- /config/pipez-client.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/polymorph-integrations.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/polymorph-integrations.toml -------------------------------------------------------------------------------- /config/prefab.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/prefab.toml -------------------------------------------------------------------------------- /config/quark-common-1.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/quark-common-1.toml.bak -------------------------------------------------------------------------------- /config/quark-common-2.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/quark-common-2.toml.bak -------------------------------------------------------------------------------- /config/quark-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/quark-common.toml -------------------------------------------------------------------------------- /config/rats-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/rats-client.toml -------------------------------------------------------------------------------- /config/rats-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/rats-common.toml -------------------------------------------------------------------------------- /config/refinedstorage-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/refinedstorage-client.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/bastions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/bastions.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/cities.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/cities.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/dungeons.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/dungeons.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/fortresses.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/fortresses.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/igloos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/igloos.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/mansions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/mansions.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/mineshafts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/mineshafts.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/modded_loot.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/modded_loot.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/outposts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/outposts.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/pyramids.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/pyramids.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/ruined_portals.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/ruined_portals.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/ruins.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/ruins.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/shipwrecks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/shipwrecks.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/strongholds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/strongholds.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/temples.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/temples.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/villages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/villages.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/wells.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/wells.toml -------------------------------------------------------------------------------- /config/repurposed_structures-forge/witch_huts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/repurposed_structures-forge/witch_huts.toml -------------------------------------------------------------------------------- /config/rubidium-mixins.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/rubidium-mixins.properties -------------------------------------------------------------------------------- /config/rubidium-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/rubidium-options.json -------------------------------------------------------------------------------- /config/savageandravage-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/savageandravage-client.toml -------------------------------------------------------------------------------- /config/savageandravage-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/savageandravage-common.toml -------------------------------------------------------------------------------- /config/scaling-health/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/scaling-health/client.toml -------------------------------------------------------------------------------- /config/scaling-health/common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/scaling-health/common.toml -------------------------------------------------------------------------------- /config/scaling-health/game_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/scaling-health/game_settings.toml -------------------------------------------------------------------------------- /config/sci4me/Torcherino.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/sci4me/Torcherino.cfg -------------------------------------------------------------------------------- /config/sidebar_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/sidebar_buttons.json -------------------------------------------------------------------------------- /config/sodiumextra-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/sodiumextra-options.json -------------------------------------------------------------------------------- /config/sodiumextra.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/sodiumextra.properties -------------------------------------------------------------------------------- /config/spark/activity.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /config/stoneholm.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/stoneholm.json5 -------------------------------------------------------------------------------- /config/structure_gel-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/structure_gel-client.toml -------------------------------------------------------------------------------- /config/structure_gel-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/structure_gel-common.toml -------------------------------------------------------------------------------- /config/the_bumblezone/bee_aggression.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/the_bumblezone/bee_aggression.toml -------------------------------------------------------------------------------- /config/the_bumblezone/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/the_bumblezone/client.toml -------------------------------------------------------------------------------- /config/the_bumblezone/dimension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/the_bumblezone/dimension.toml -------------------------------------------------------------------------------- /config/the_bumblezone/general.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/the_bumblezone/general.toml -------------------------------------------------------------------------------- /config/the_bumblezone/mod_compatibility.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/the_bumblezone/mod_compatibility.toml -------------------------------------------------------------------------------- /config/the_bumblezone/worldgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/the_bumblezone/worldgen.toml -------------------------------------------------------------------------------- /config/thermal-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/thermal-client.toml -------------------------------------------------------------------------------- /config/toastcontrol-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/toastcontrol-common.toml -------------------------------------------------------------------------------- /config/torohealth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/torohealth.json -------------------------------------------------------------------------------- /config/twilightforest-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/twilightforest-client.toml -------------------------------------------------------------------------------- /config/twilightforest-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/twilightforest-common.toml -------------------------------------------------------------------------------- /config/ultra_amplified_dimension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/ultra_amplified_dimension.toml -------------------------------------------------------------------------------- /config/unusual_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/unusual_end.json -------------------------------------------------------------------------------- /config/waila/waila.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/waila/waila.json -------------------------------------------------------------------------------- /config/waila/waila_plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/waila/waila_plugins.json -------------------------------------------------------------------------------- /config/wailaharvestability-client-1.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/wailaharvestability-client-1.toml.bak -------------------------------------------------------------------------------- /config/wailaharvestability-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/wailaharvestability-client.toml -------------------------------------------------------------------------------- /config/waystones-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/waystones-client.toml -------------------------------------------------------------------------------- /config/waystones-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/waystones-common.toml -------------------------------------------------------------------------------- /config/waystones-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/waystones-server.toml -------------------------------------------------------------------------------- /config/when-dungeons-arise-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/when-dungeons-arise-common.toml -------------------------------------------------------------------------------- /config/worleycaves-client.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/worleycaves-common-1.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/worleycaves-common-1.toml.bak -------------------------------------------------------------------------------- /config/worleycaves-common-2.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/worleycaves-common-2.toml.bak -------------------------------------------------------------------------------- /config/worleycaves-common-3.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/worleycaves-common-3.toml.bak -------------------------------------------------------------------------------- /config/worleycaves-common-4.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/worleycaves-common-4.toml.bak -------------------------------------------------------------------------------- /config/worleycaves-common-5.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/worleycaves-common-5.toml.bak -------------------------------------------------------------------------------- /config/worleycaves-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/worleycaves-common.toml -------------------------------------------------------------------------------- /config/yungsbridges-forge-1_16-1.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/yungsbridges-forge-1_16-1.toml.bak -------------------------------------------------------------------------------- /config/yungsbridges-forge-1_16.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/config/yungsbridges-forge-1_16.toml -------------------------------------------------------------------------------- /python/block_loot_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/python/block_loot_table.py -------------------------------------------------------------------------------- /python/lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/python/lang.json -------------------------------------------------------------------------------- /python/mek_data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/python/mek_data_gen.py -------------------------------------------------------------------------------- /python/tier_item_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/python/tier_item_gen.py -------------------------------------------------------------------------------- /scripts/api/astral/base.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/astral/base.zs -------------------------------------------------------------------------------- /scripts/api/astral/tags.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/astral/tags.zs -------------------------------------------------------------------------------- /scripts/api/bloodmagic/base.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/bloodmagic/base.zs -------------------------------------------------------------------------------- /scripts/api/botania/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/botania/recipes.zs -------------------------------------------------------------------------------- /scripts/api/botania/tag.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/botania/tag.zs -------------------------------------------------------------------------------- /scripts/api/crockpot/foodvalue.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/crockpot/foodvalue.zs -------------------------------------------------------------------------------- /scripts/api/emcworld/base.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/emcworld/base.zs -------------------------------------------------------------------------------- /scripts/api/emcworld/loot_table.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/emcworld/loot_table.zs -------------------------------------------------------------------------------- /scripts/api/emcworld/oreProce/emcOres.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/emcworld/oreProce/emcOres.zs -------------------------------------------------------------------------------- /scripts/api/emcworld/oreProce/emcOresProce.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/emcworld/oreProce/emcOresProce.zs -------------------------------------------------------------------------------- /scripts/api/emcworld/tag.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/emcworld/tag.zs -------------------------------------------------------------------------------- /scripts/api/extendedcrafting/base.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/extendedcrafting/base.zs -------------------------------------------------------------------------------- /scripts/api/jei/desc.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/jei/desc.zs -------------------------------------------------------------------------------- /scripts/api/jei/hide.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/jei/hide.zs -------------------------------------------------------------------------------- /scripts/api/main.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/main.zs -------------------------------------------------------------------------------- /scripts/api/mekanism/base.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/mekanism/base.zs -------------------------------------------------------------------------------- /scripts/api/mekanism/cyanideProce/basic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/mekanism/cyanideProce/basic.zs -------------------------------------------------------------------------------- /scripts/api/mekanism/cyanideProce/cyanideRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/mekanism/cyanideProce/cyanideRecipe.zs -------------------------------------------------------------------------------- /scripts/api/mekanism/cyanideProce/nitrogenRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/mekanism/cyanideProce/nitrogenRecipe.zs -------------------------------------------------------------------------------- /scripts/api/mekanism/oreProce/extraOre.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/mekanism/oreProce/extraOre.zs -------------------------------------------------------------------------------- /scripts/api/mekanism/oreProce/oreProcessing.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/mekanism/oreProce/oreProcessing.zs -------------------------------------------------------------------------------- /scripts/api/mekanism/tooltip.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/mekanism/tooltip.zs -------------------------------------------------------------------------------- /scripts/api/natureaura/base.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/natureaura/base.zs -------------------------------------------------------------------------------- /scripts/api/projecte/emcItem.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/projecte/emcItem.zs -------------------------------------------------------------------------------- /scripts/api/thermal/fix.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/thermal/fix.zs -------------------------------------------------------------------------------- /scripts/api/thermal/fixRecipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/thermal/fixRecipes.zs -------------------------------------------------------------------------------- /scripts/api/thermal/removeTags.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/thermal/removeTags.zs -------------------------------------------------------------------------------- /scripts/api/vanilla/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/api/vanilla/recipes.zs -------------------------------------------------------------------------------- /scripts/events/event.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/events/event.zs -------------------------------------------------------------------------------- /scripts/loot_tables/aether.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/aether.zs -------------------------------------------------------------------------------- /scripts/loot_tables/atum.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/atum.zs -------------------------------------------------------------------------------- /scripts/loot_tables/bloodmagic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/bloodmagic.zs -------------------------------------------------------------------------------- /scripts/loot_tables/emcworld/emcworld.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/emcworld/emcworld.zs -------------------------------------------------------------------------------- /scripts/loot_tables/emcworld/gnsTable.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/emcworld/gnsTable.zs -------------------------------------------------------------------------------- /scripts/loot_tables/emcworld/ipsTable.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/emcworld/ipsTable.zs -------------------------------------------------------------------------------- /scripts/loot_tables/emcworld/mods.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/emcworld/mods.zs -------------------------------------------------------------------------------- /scripts/loot_tables/emcworld/util.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/emcworld/util.zs -------------------------------------------------------------------------------- /scripts/loot_tables/minecraft.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/minecraft.zs -------------------------------------------------------------------------------- /scripts/loot_tables/twilight.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/loot_tables/twilight.zs -------------------------------------------------------------------------------- /scripts/recipes/abyss/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/abyss/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/aether/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/aether/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/after_night/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/after_night/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/astral/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/astral/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/atlantis/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/atlantis/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/atum/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/atum/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/bloodmagic/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/bloodmagic/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/botania/modifyRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/botania/modifyRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/botania/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/botania/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/byg/pendorite.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/byg/pendorite.zs -------------------------------------------------------------------------------- /scripts/recipes/byg/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/byg/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/food.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/food.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/oreProcessing.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/oreProcessing.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/advancedColor.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/advancedColor.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/color.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/color.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/crafting.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/crafting.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/difficulty/D1Recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/difficulty/D1Recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/difficulty/D2Recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/difficulty/D2Recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/difficulty/D3Recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/difficulty/D3Recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/final.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/final.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/final/f1.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/final/f1.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/final/f2.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/final/f2.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/final/f3.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/final/f3.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/final/f4.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/final/f4.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/final/f5.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/final/f5.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/getter/ArmorGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/getter/ArmorGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/getter/BaseGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/getter/BaseGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/getter/BlockGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/getter/BlockGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/getter/GobberGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/getter/GobberGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/getter/NetherGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/getter/NetherGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/getter/PipeGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/getter/PipeGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/getter/SingGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/getter/SingGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/ice.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/ice.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/pro.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/pro.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/removeRecipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/removeRecipes.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/singularity.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/singularity.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/smithRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/smithRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/stage/EMCStage.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/stage/EMCStage.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/stage/StageGetter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/stage/StageGetter.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/trade.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/trade.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/recipes/util.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/recipes/util.zs -------------------------------------------------------------------------------- /scripts/recipes/emcworld/tag.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/emcworld/tag.zs -------------------------------------------------------------------------------- /scripts/recipes/extendedcrafting/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/extendedcrafting/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/gobber/addIngotRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/gobber/addIngotRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/gobber/oreProce.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/gobber/oreProce.zs -------------------------------------------------------------------------------- /scripts/recipes/gobber/removeRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/gobber/removeRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/hem/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/hem/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/mekanism/EnrichRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/mekanism/EnrichRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/mekanism/InfusionRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/mekanism/InfusionRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/mekanism/alloyRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/mekanism/alloyRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/mekanism/cyanideRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/mekanism/cyanideRecipe.zs -------------------------------------------------------------------------------- /scripts/recipes/mekanism/oreProcessing.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/mekanism/oreProcessing.zs -------------------------------------------------------------------------------- /scripts/recipes/mekanism/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/mekanism/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/natureaura/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/natureaura/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/projecte/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/projecte/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/quark/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/quark/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/rats/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/rats/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/rs/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/rs/recipes.zs -------------------------------------------------------------------------------- /scripts/recipes/thermal/removeRecipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/thermal/removeRecipes.zs -------------------------------------------------------------------------------- /scripts/recipes/undergarden/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/recipes/undergarden/recipes.zs -------------------------------------------------------------------------------- /scripts/start.zs: -------------------------------------------------------------------------------- 1 | #loadlast 2 | main(); -------------------------------------------------------------------------------- /scripts/utils/dimension_stages.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/dimension_stages.zs -------------------------------------------------------------------------------- /scripts/utils/expand.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/expand.zs -------------------------------------------------------------------------------- /scripts/utils/getter.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/getter.zs -------------------------------------------------------------------------------- /scripts/utils/helper/getRecipeName.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/helper/getRecipeName.zs -------------------------------------------------------------------------------- /scripts/utils/item_stages.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/item_stages.zs -------------------------------------------------------------------------------- /scripts/utils/math.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/math.zs -------------------------------------------------------------------------------- /scripts/utils/setting.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/setting.zs -------------------------------------------------------------------------------- /scripts/utils/stage.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/scripts/utils/stage.zs -------------------------------------------------------------------------------- /src/main/java/biggestxuan/emcworld/EMCWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/java/biggestxuan/emcworld/EMCWorld.java -------------------------------------------------------------------------------- /src/main/java/biggestxuan/emcworld/api/EMCWorldAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/java/biggestxuan/emcworld/api/EMCWorldAPI.java -------------------------------------------------------------------------------- /src/main/java/biggestxuan/emcworld/api/IWIP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/java/biggestxuan/emcworld/api/IWIP.java -------------------------------------------------------------------------------- /src/main/java/biggestxuan/emcworld/api/OnlyDev.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/java/biggestxuan/emcworld/api/OnlyDev.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/lang/zh_tw.json -------------------------------------------------------------------------------- /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/aluminum_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/aluminum_ore_model" 3 | } 4 | -------------------------------------------------------------------------------- /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/cold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/cold_ore_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/drystone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/drystone_ore_model" 3 | } 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_puller.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_core_puller_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/emc_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_flower_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/emc_super.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/emc_super_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/end_rich_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/end_rich_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/hardcore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/hardcore_stone_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/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/nether_emc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/nether_emc_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/orichalcos_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/orichalcos_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/profession_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/profession_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/silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/silver_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/steel_furnace_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/steel_furnace_brick_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/sunlit_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/sunlit_ore_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/top_core.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/top_core_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/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_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_blue_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_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_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_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_addon_red_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/update_base_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_blue_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_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_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_base_red_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_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_bx_purple_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_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_cost_red_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_bx_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_bx_purple_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_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "emcworld:block/update_time_red_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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/emcworld/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/emcworld/textures/item/ultimate_singularity.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /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/buttons/mods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/buttons/mods.json -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/buttons/quit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/buttons/quit.json -------------------------------------------------------------------------------- /src/main/resources/assets/packmenu/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/assets/packmenu/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/data/curios/tags/items/charm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/data/curios/tags/items/charm.json -------------------------------------------------------------------------------- /src/main/resources/mixins.emcworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/mixins.emcworld.json -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /src/test/java/main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/test/java/main.java -------------------------------------------------------------------------------- /src/test/java/raid.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/src/test/java/raid.xlsx -------------------------------------------------------------------------------- /web/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/api.php -------------------------------------------------------------------------------- /web/botapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/botapi.php -------------------------------------------------------------------------------- /web/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/download.php -------------------------------------------------------------------------------- /web/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/md5.js -------------------------------------------------------------------------------- /web/md5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/md5.php -------------------------------------------------------------------------------- /web/sponsors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/sponsors.php -------------------------------------------------------------------------------- /web/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/token.php -------------------------------------------------------------------------------- /web/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiggestXuan/EMCWorld/HEAD/web/utils.php --------------------------------------------------------------------------------