├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report_chinese.md │ ├── feature_request.md │ └── feature_request_chinese.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── autoclose.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_cn.md ├── README_de.md └── src ├── config ├── AppliedEnergistics2 │ ├── AppliedEnergistics2.cfg │ ├── CustomRecipes.cfg │ ├── Facades.cfg │ └── VersionChecker.cfg ├── BlockDrops │ ├── blockdrops.txt │ ├── config.cfg │ └── modVersions.txt ├── CustomMainMenu │ ├── mainmenu.json │ ├── mainmenu_auto.json │ ├── mainmenu_large.json │ ├── mainmenu_normal.json │ ├── mainmenu_small.json │ ├── sponsor.json │ ├── sponsor_auto.json │ ├── sponsor_large.json │ ├── sponsor_normal.json │ └── sponsor_small.json ├── Netherending Ores.cfg ├── PlusTweaks.cfg ├── Waystones.cfg ├── Weather2 │ ├── Foliage.cfg │ ├── Misc.cfg │ ├── Particle.cfg │ ├── Sand.cfg │ ├── Snow.cfg │ ├── Storm.cfg │ ├── Tornado.cfg │ └── Wind.cfg ├── advRocketry │ ├── ChemicalReactor.xml │ ├── Crystallizer.xml │ ├── CuttingMachine.xml │ ├── ElectricArcFurnace.xml │ ├── Electrolyser.xml │ ├── Lathe.xml │ ├── PrecisionAssembler.xml │ ├── RollingMachine.xml │ ├── SmallPlatePress.xml │ ├── advancedRocketry.cfg │ ├── asteroidConfig.xml │ ├── oreConfig.xml │ └── planetDefs.xml ├── betteradvancements │ └── betteradvancements.cfg ├── betterfps.json ├── bonsaitrees │ ├── settings.cfg │ ├── shapes.d │ │ ├── contenttweaker_crystal_blaze001.json │ │ ├── contenttweaker_crystal_ghast001.json │ │ ├── contenttweaker_crystal_magma001.json │ │ ├── contenttweaker_crystal_pigman001.json │ │ ├── contenttweaker_crystal_wither001.json │ │ └── stygian_wyrmwood001.json │ ├── soils.d │ │ ├── endgrass.json │ │ ├── livingbrick.json │ │ └── livingrock.json │ └── types.d │ │ ├── crystal_blaze.json │ │ ├── crystal_ghast.json │ │ ├── crystal_magma.json │ │ ├── crystal_pigman.json │ │ ├── crystal_wither.json │ │ └── stygian_wyrmwood.json ├── botaniatweaks.cfg ├── chesttransporter.cfg ├── cofh │ ├── core │ │ ├── client.cfg │ │ ├── common.cfg │ │ └── friends.cfg │ ├── thermalexpansion │ │ ├── client.cfg │ │ ├── common.cfg │ │ ├── florbs.cfg │ │ └── morbs.cfg │ ├── thermalfoundation │ │ ├── client.cfg │ │ ├── common.cfg │ │ └── lexicon-whitelist.cfg │ └── world │ │ ├── 00_minecraft.json │ │ ├── 01_end_ores.json │ │ ├── 02_end_liquid.json │ │ ├── 03_nether_ores.json │ │ ├── 04_overworld_ores.json │ │ ├── 05_quantum_ores.json │ │ └── config.cfg ├── commoncapabilities.cfg ├── cyclopscore.cfg ├── deepmobaffixes.cfg ├── deepmoblearning.cfg ├── dimensionalcontrol │ ├── DimensionalControl.cfg │ └── Dimensions.cfg ├── dropt │ └── end.json ├── enderio │ ├── enderio.cfg │ ├── enderioconduits.cfg │ ├── enderiointegrationforestry.cfg │ ├── enderiomachines.cfg │ ├── enderiopowertools.cfg │ ├── painter_paint_sources_core.xml │ ├── painter_paint_sources_user.xml │ └── recipes │ │ ├── aliases.pdf │ │ ├── alloying.pdf │ │ ├── alloying_modded.pdf │ │ ├── balls.pdf │ │ ├── base.pdf │ │ ├── capacitor.pdf │ │ ├── capacitor_machines.pdf │ │ ├── conduits-applied-energistics.pdf │ │ ├── conduits-opencomputers.pdf │ │ ├── conduits.pdf │ │ ├── darksteel_upgrades.pdf │ │ ├── darksteel_upgrades_machines.pdf │ │ ├── enchanter.pdf │ │ ├── examples │ │ ├── broken_spawner.xml │ │ ├── cheap_machines.xml │ │ ├── cheap_materials.xml │ │ ├── cheaty_spawner.xml │ │ ├── conduits_easy_recipes.xml │ │ ├── conduits_hard_recipes.xml │ │ ├── easy_recipes.xml │ │ ├── hard_recipes.xml │ │ ├── infinity.xml │ │ ├── legacy_recipes.xml │ │ ├── machines_easy_recipes.xml │ │ ├── optional_tweaks.xml │ │ ├── peaceful.xml │ │ ├── powertools_easy_recipes.xml │ │ ├── recipes.xsd │ │ ├── sagmill_dupe_recipe_patches.xml │ │ ├── strict_iron.xml │ │ └── unhide_base.xml │ │ ├── fuels.pdf │ │ ├── glass.pdf │ │ ├── hiding_base.pdf │ │ ├── hiding_conduits.pdf │ │ ├── hiding_machines.pdf │ │ ├── integration_railcraft_recipes.pdf │ │ ├── items.pdf │ │ ├── machines.pdf │ │ ├── materials.pdf │ │ ├── misc.pdf │ │ ├── powertools.pdf │ │ ├── sagmill.pdf │ │ ├── sagmill_metals.pdf │ │ ├── sagmill_modded.pdf │ │ ├── sagmill_ores.pdf │ │ ├── sagmill_silentgems.pdf │ │ ├── sagmill_vanilla.pdf │ │ ├── sagmill_vanilla2modded.pdf │ │ ├── soulbinder.pdf │ │ ├── spawner.pdf │ │ ├── tank.pdf │ │ ├── user │ │ ├── recipes.xsd │ │ └── user_recipes.xml │ │ └── vat.pdf ├── environmentaltech │ ├── etlunar │ │ └── main.cfg │ ├── main.cfg │ └── multiblocks │ │ └── void_miner │ │ ├── botanic │ │ ├── tier_1.json │ │ ├── tier_2.json │ │ ├── tier_3.json │ │ ├── tier_4.json │ │ ├── tier_5.json │ │ └── tier_6.json │ │ ├── ore │ │ ├── tier_1.json │ │ ├── tier_2.json │ │ ├── tier_3.json │ │ ├── tier_4.json │ │ ├── tier_5.json │ │ └── tier_6.json │ │ └── resource │ │ ├── tier_1.json │ │ ├── tier_2.json │ │ ├── tier_3.json │ │ ├── tier_4.json │ │ ├── tier_5.json │ │ └── tier_6.json ├── extrautils2.cfg ├── forge.cfg ├── forgivingvoid.cfg ├── ftblib.cfg ├── ftbutilities.cfg ├── immersiveengineering.cfg ├── immersivepetroleum.cfg ├── incontrol │ ├── experience.json │ ├── loot.json │ ├── main.cfg │ ├── potentialspawn.json │ ├── spawn.json │ └── summonaid.json ├── instantunify.cfg ├── integrateddynamics.cfg ├── integratedtunnels.cfg ├── jeresources │ ├── jeresources.cfg │ └── world-gen.json ├── librarianlib.cfg ├── loadingscreens │ └── LoadingScreens.txt ├── login_shield.cfg ├── naturescompass.cfg ├── opencomputers │ └── settings.conf ├── pneumaticcraft.cfg ├── pneumaticcraft │ ├── AmadronOffersPeriodic.cfg │ ├── AmadronOffersStatic.cfg │ ├── AmadronTradingSettings.cfg │ ├── BlockHeatProperties.cfg │ ├── HelmetWidgetDefaults.cfg │ ├── MicromissileDefaults.cfg │ ├── PneumaticArmorHUDLayout.cfg │ ├── ProgrammingPuzzleBlacklist.cfg │ └── thirdparty.cfg ├── randompatches.cfg ├── reccomplex.cfg ├── scanner.cfg ├── solcarrot.cfg ├── storagedrawers.cfg ├── stygian.cfg ├── tconstruct.cfg ├── teamreborn │ ├── configData.nbt │ ├── reborncore │ │ ├── client.cfg │ │ ├── misc.cfg │ │ ├── power.cfg │ │ ├── selected_energy.json │ │ └── upgrades.cfg │ └── techreborn │ │ ├── compat.cfg │ │ ├── generators.cfg │ │ ├── items.cfg │ │ ├── machines.cfg │ │ ├── misc.cfg │ │ ├── ores.json │ │ ├── recipes.cfg │ │ └── world.cfg ├── theoneprobe.cfg ├── tips.cfg ├── toastcontrol.cfg ├── tombstone.cfg ├── triumph │ ├── Triumph.txt │ ├── functions │ │ └── triumph │ │ │ ├── chorus_good.txt │ │ │ ├── haocenstructure.txt │ │ │ ├── haocenstructure_delay.txt │ │ │ ├── haocenstructure_succ.txt │ │ │ ├── nether.txt │ │ │ ├── nether_items.txt │ │ │ ├── overworld.txt │ │ │ ├── overworld_items.txt │ │ │ ├── spell.txt │ │ │ ├── starts.txt │ │ │ └── sudden_dark_pafoof.txt │ └── script │ │ └── triumph │ │ └── levitated │ │ ├── easteregg │ │ ├── feather.txt │ │ ├── root.txt │ │ └── valkyrie.txt │ │ ├── end │ │ ├── alchemy.txt │ │ ├── alfheim.txt │ │ ├── alloy_smelter.txt │ │ ├── altar.txt │ │ ├── assembler.txt │ │ ├── bed.txt │ │ ├── biome_scanner.txt │ │ ├── blue_lotus.txt │ │ ├── bone_block.txt │ │ ├── bonsai.txt │ │ ├── chaos_pearl.txt │ │ ├── chorus_flower.txt │ │ ├── chorus_fruit.txt │ │ ├── clay_flower.txt │ │ ├── coke_oven.txt │ │ ├── compass.txt │ │ ├── deep_learner.txt │ │ ├── drawer.txt │ │ ├── end_log.txt │ │ ├── end_matter.txt │ │ ├── end_orechid.txt │ │ ├── ender_iron.txt │ │ ├── ender_lilly.txt │ │ ├── enderdagger.txt │ │ ├── endoflame.txt │ │ ├── endstone_shard.txt │ │ ├── feather.txt │ │ ├── fire_rune.txt │ │ ├── furnace.txt │ │ ├── glitched_oby.txt │ │ ├── gourmaryllis.txt │ │ ├── grass_seeds.txt │ │ ├── infinity_dust.txt │ │ ├── info.txt │ │ ├── keystone.txt │ │ ├── liquid_mana.txt │ │ ├── living_blocks.txt │ │ ├── machine_block.txt │ │ ├── mana_pool.txt │ │ ├── mana_resource.txt │ │ ├── mana_usage.txt │ │ ├── menril.txt │ │ ├── natura_pylon.txt │ │ ├── nether_knowledge.txt │ │ ├── nether_portal.txt │ │ ├── netherrack.txt │ │ ├── queue.txt │ │ ├── root.txt │ │ ├── sag_mill.txt │ │ ├── scanner.txt │ │ ├── scanner_info.txt │ │ ├── simulation_chamber.txt │ │ ├── solder.txt │ │ ├── stirling_gen.txt │ │ ├── string.txt │ │ ├── terra_plate.txt │ │ ├── terrasteel.txt │ │ ├── tool_station.txt │ │ ├── water.txt │ │ └── waystone.txt │ │ ├── kepler │ │ ├── beacon.txt │ │ └── root.txt │ │ ├── nether │ │ ├── alloy.txt │ │ ├── altar.txt │ │ ├── angel_ring.txt │ │ ├── assembly.txt │ │ ├── aversion.txt │ │ ├── blast_furnace.txt │ │ ├── blast_furnace_adv.txt │ │ ├── blaze_rod.txt │ │ ├── blue_slime.txt │ │ ├── bonsai.txt │ │ ├── chamber.txt │ │ ├── chassis.txt │ │ ├── chicken_ring.txt │ │ ├── compiron.txt │ │ ├── empty_pcb.txt │ │ ├── excavator.txt │ │ ├── induction.txt │ │ ├── interface.txt │ │ ├── lpg.txt │ │ ├── manual_mill.txt │ │ ├── oil.txt │ │ ├── overworld_knowledge.txt │ │ ├── overworld_star.txt │ │ ├── pcb.txt │ │ ├── pcb_blueprint.txt │ │ ├── plastic.txt │ │ ├── press.txt │ │ ├── rainbow_ingot.txt │ │ ├── rainbowgen.txt │ │ ├── refinery.txt │ │ ├── resonator.txt │ │ ├── root.txt │ │ ├── rotten_pork.txt │ │ ├── shulker_ring.txt │ │ ├── skystone.txt │ │ ├── solar.txt │ │ ├── soul_chassis.txt │ │ ├── star.txt │ │ ├── stargen.txt │ │ ├── tablet.txt │ │ ├── vacuum.txt │ │ ├── veinmine.txt │ │ ├── vortex.txt │ │ ├── wither_skeleton.txt │ │ ├── withermodel.txt │ │ └── xp.txt │ │ ├── overworld │ │ ├── blast_furnace.txt │ │ ├── deflector.txt │ │ ├── distiller.txt │ │ ├── efficiency.txt │ │ ├── electro.txt │ │ ├── fueling_station.txt │ │ ├── fusion.txt │ │ ├── implosion.txt │ │ ├── insulated_wire.txt │ │ ├── kepler.txt │ │ ├── machine_frame.txt │ │ ├── quantum_quarry.txt │ │ ├── recycler.txt │ │ ├── refined_iron.txt │ │ ├── rocket.txt │ │ ├── root.txt │ │ ├── rubber.txt │ │ ├── rubber_tree.txt │ │ ├── satellite.txt │ │ ├── satellite_station.txt │ │ ├── skycity.txt │ │ ├── space_station.txt │ │ ├── spacesuit.txt │ │ ├── speed.txt │ │ ├── structure.txt │ │ ├── uumachine.txt │ │ ├── voidminer.txt │ │ ├── voidminer2.txt │ │ └── warp.txt │ │ ├── resources │ │ ├── end_coal.txt │ │ ├── end_copper.txt │ │ ├── end_diamond.txt │ │ ├── end_iron.txt │ │ ├── nether_aluminum.txt │ │ ├── nether_ardite.txt │ │ ├── nether_cobalt.txt │ │ ├── nether_nickel.txt │ │ ├── nether_quartz.txt │ │ ├── nether_root.txt │ │ ├── nether_silver.txt │ │ ├── nether_uranium.txt │ │ ├── overworld_bauxite.txt │ │ ├── overworld_calcite.txt │ │ ├── overworld_root.txt │ │ ├── overworld_ruby.txt │ │ ├── overworld_sapphire.txt │ │ ├── overworld_tungsten.txt │ │ ├── quantum_dilithium.txt │ │ ├── quantum_mithril.txt │ │ ├── quantum_platinum.txt │ │ ├── quantum_root.txt │ │ └── root.txt │ │ ├── skycity │ │ ├── creative.txt │ │ └── root.txt │ │ └── story │ │ ├── aftermath.txt │ │ ├── apple.txt │ │ ├── contract.txt │ │ ├── core.txt │ │ ├── crystal.txt │ │ ├── dna.txt │ │ ├── fire_crystal.txt │ │ ├── globe.txt │ │ ├── life_crystal.txt │ │ ├── plan.txt │ │ ├── potion.txt │ │ ├── root.txt │ │ ├── scroll.txt │ │ ├── shard.txt │ │ ├── spirit.txt │ │ ├── water_crystal.txt │ │ └── wither_crystal.txt ├── unidict │ ├── IntegrationModule.cfg │ └── UniDict.cfg ├── valkyrielib │ └── main.cfg ├── wizardry.cfg └── wizardry │ ├── fire_recipes │ ├── devil_dust.json │ └── sky_dust.json │ ├── fluid_recipes │ ├── bone_block.json │ ├── codex.json │ ├── mana_battery.json │ ├── mana_orb.json │ ├── nacre.json │ ├── temp_real_halo.json │ ├── unicorn_dagger.json │ ├── vivid_grass.json │ ├── wisdom_door.json │ ├── wisdom_fence.json │ ├── wisdom_fence_gate.json │ ├── wisdom_leaves.json │ ├── wisdom_log.json │ ├── wisdom_plank.json │ ├── wisdom_sapling.json │ ├── wisdom_slab.json │ ├── wisdom_stairs.json │ └── wisdom_stick.json │ ├── wizManifest.json │ └── wizmodules │ ├── effect_anti_gravity_well.json │ ├── effect_backup.json │ ├── effect_bouncing.json │ ├── effect_break.json │ ├── effect_burn.json │ ├── effect_crasher_fall.json │ ├── effect_decay.json │ ├── effect_extract.json │ ├── effect_frost.json │ ├── effect_grace.json │ ├── effect_gravity_well.json │ ├── effect_leap.json │ ├── effect_leech.json │ ├── effect_light.json │ ├── effect_lightning.json │ ├── effect_low_gravity.json │ ├── effect_phase.json │ ├── effect_place.json │ ├── effect_poison_cloud.json │ ├── effect_shatter.json │ ├── effect_sonic.json │ ├── effect_substitution.json │ ├── effect_suffocate.json │ ├── effect_telekinesis.json │ ├── effect_thrive.json │ ├── effect_time_lock.json │ ├── effect_time_slow.json │ ├── effect_vanish.json │ ├── effect_zoom.json │ ├── modifier_extend_range.json │ ├── modifier_extend_time.json │ ├── modifier_increase_aoe.json │ ├── modifier_increase_potency.json │ ├── modifier_increase_speed.json │ ├── shape_beam.json │ ├── shape_cone.json │ ├── shape_projectile.json │ ├── shape_self.json │ ├── shape_touch.json │ └── shape_zone.json ├── perfectspawn.json ├── resources ├── botania │ ├── models │ │ └── block │ │ │ ├── apothecary_default.json │ │ │ └── shapes │ │ │ └── petal_apothecary_end.json │ └── textures │ │ └── model │ │ └── apothecary │ │ ├── stone_bottom.png │ │ ├── stone_goblet.png │ │ ├── stone_side.png │ │ └── stone_top.png ├── contenttweaker │ ├── blockstates │ │ ├── dilithium_block.json │ │ ├── eden_leaves.json │ │ ├── eden_leaves_fruitless.json │ │ ├── end_iron.json │ │ ├── end_trim.json │ │ ├── fire_crystal.json │ │ ├── glitched_obsidian.json │ │ ├── life_crystal.json │ │ ├── rainbow_block.json │ │ ├── solder.json │ │ ├── water_crystal.json │ │ └── wither_crystal.json │ ├── lang │ │ ├── de_de.lang │ │ ├── en_us.lang │ │ ├── zh_cn.lang │ │ └── zh_tw.lang │ ├── models │ │ ├── block │ │ │ ├── crystal.json │ │ │ ├── fruit_leaves.json │ │ │ └── leaves.json │ │ └── item │ │ │ ├── apple.json │ │ │ ├── biome_scanner_basic.json │ │ │ ├── blue_lotus.json │ │ │ ├── ccb.json │ │ │ ├── ccb_base.json │ │ │ ├── chaos_pearl.json │ │ │ ├── clay_board.json │ │ │ ├── contract.json │ │ │ ├── core.json │ │ │ ├── crystal.json │ │ │ ├── crystal_blaze.json │ │ │ ├── crystal_ghast.json │ │ │ ├── crystal_magma.json │ │ │ ├── crystal_pigman.json │ │ │ ├── crystal_wither.json │ │ │ ├── dna.json │ │ │ ├── dragon_spirit.json │ │ │ ├── dynamo_frame.json │ │ │ ├── end_iron_chunk.json │ │ │ ├── end_seeds.json │ │ │ ├── essence_blaze.json │ │ │ ├── essence_ghast.json │ │ │ ├── essence_magma.json │ │ │ ├── essence_pigman.json │ │ │ ├── essence_wither.json │ │ │ ├── mana_paper.json │ │ │ ├── nether_book.json │ │ │ ├── origin_book.json │ │ │ ├── overworld_book.json │ │ │ ├── overworld_star.json │ │ │ ├── paper_plane_0.json │ │ │ ├── paper_plane_1.json │ │ │ ├── paper_plane_2.json │ │ │ ├── paper_plane_3.json │ │ │ ├── paper_plane_4.json │ │ │ ├── paper_plane_5.json │ │ │ ├── paper_plane_6.json │ │ │ ├── pottery_clay.json │ │ │ ├── rainbow_ingot.json │ │ │ ├── rainbowgen.json │ │ │ ├── recall_pearl.json │ │ │ ├── rotten_pork.json │ │ │ ├── scroll.json │ │ │ ├── scroll_ignis.json │ │ │ ├── shard.json │ │ │ ├── solder_bucket.json │ │ │ ├── solder_powder.json │ │ │ ├── terrain_scanner.json │ │ │ └── trophy.json │ └── textures │ │ ├── blocks │ │ ├── assembler.png │ │ ├── assembler_active.png │ │ ├── assembler_active.png.mcmeta │ │ ├── dilithium_block.png │ │ ├── eden_apple.png │ │ ├── eden_apple.png.mcmeta │ │ ├── end_iron.png │ │ ├── end_trim.png │ │ ├── fire_crystal.png │ │ ├── glitched_obsidian.png │ │ ├── leaves_golden.png │ │ ├── life_crystal.png │ │ ├── rainbow_block.png │ │ ├── rainbow_block.png.mcmeta │ │ ├── water_crystal.png │ │ └── wither_crystal.png │ │ ├── fluids │ │ ├── nuclear_flow.png │ │ ├── nuclear_flow.png.mcmeta │ │ ├── nuclear_still.png │ │ ├── nuclear_still.png.mcmeta │ │ ├── solder_flow.png │ │ ├── solder_flow.png.mcmeta │ │ ├── solder_still.png │ │ └── solder_still.png.mcmeta │ │ └── items │ │ ├── apple.png │ │ ├── apple.png.mcmeta │ │ ├── blue_lotus.png │ │ ├── ccb.png │ │ ├── ccb_base.png │ │ ├── chaos_pearl.png │ │ ├── clay_board.png │ │ ├── contract.png │ │ ├── core.png │ │ ├── core.png.mcmeta │ │ ├── crystal.png │ │ ├── crystal.png.mcmeta │ │ ├── crystal_blaze.png │ │ ├── crystal_ghast.png │ │ ├── crystal_magma.png │ │ ├── crystal_pigman.png │ │ ├── crystal_wither.png │ │ ├── dna.png │ │ ├── dna.png.mcmeta │ │ ├── dragon_spirit.png │ │ ├── dynamo_frame.png │ │ ├── end_iron_chunk.png │ │ ├── end_seeds.png │ │ ├── essence_blaze.png │ │ ├── essence_ghast.png │ │ ├── essence_magma.png │ │ ├── essence_pigman.png │ │ ├── essence_wither.png │ │ ├── globe.png │ │ ├── mana_paper.png │ │ ├── nether_book.png │ │ ├── origin_book.png │ │ ├── overworld_book.png │ │ ├── overworld_star.png │ │ ├── overworld_star.png.mcmeta │ │ ├── paper_plane_0.png │ │ ├── paper_plane_1.png │ │ ├── paper_plane_2.png │ │ ├── paper_plane_3.png │ │ ├── paper_plane_4.png │ │ ├── paper_plane_5.png │ │ ├── paper_plane_6.png │ │ ├── potion.png │ │ ├── pottery_clay.png │ │ ├── rainbow_ingot.png │ │ ├── rainbow_ingot.png.mcmeta │ │ ├── recall_pearl.png │ │ ├── rotten_pork.png │ │ ├── scroll.png │ │ ├── scroll_ignis.png │ │ ├── shard.png │ │ ├── shard.png.mcmeta │ │ ├── solder_bucket.png │ │ ├── solder_powder.png │ │ └── trophy.png ├── extrautils2 │ └── textures │ │ └── flyingsquidring.png ├── levitated │ ├── icons │ │ ├── 16.png │ │ ├── 256.png │ │ └── 32.png │ ├── lang │ │ ├── de_de.lang │ │ ├── en_us.lang │ │ ├── zh_cn.lang │ │ └── zh_tw.lang │ └── textures │ │ └── gui │ │ ├── afdian.png │ │ ├── button_0.png │ │ ├── button_1.png │ │ ├── button_2.png │ │ ├── button_3.png │ │ ├── discord.png │ │ ├── door.png │ │ ├── exit.png │ │ ├── loading.png │ │ ├── main.png │ │ ├── patreon.png │ │ └── sponsor.png ├── minecraft │ ├── models │ │ └── block │ │ │ └── crafting_table.json │ └── textures │ │ ├── blocks │ │ ├── bedrock.png │ │ ├── crafting_table_front.png │ │ ├── crafting_table_side.png │ │ ├── crafting_table_top.png │ │ ├── dispenser_front_horizontal.png │ │ ├── dispenser_front_vertical.png │ │ ├── dropper_front_horizontal.png │ │ ├── dropper_front_vertical.png │ │ ├── furnace_front_off.png │ │ ├── furnace_front_on.png │ │ ├── furnace_side.png │ │ └── furnace_top.png │ │ ├── entity │ │ └── chest │ │ │ ├── normal.png │ │ │ ├── normal_double.png │ │ │ ├── trapped.png │ │ │ └── trapped_double.png │ │ ├── gui │ │ ├── icons.png │ │ └── options_background.png │ │ └── items │ │ └── flint_and_steel.png ├── naturescompass │ └── textures │ │ └── items │ │ ├── natures_compass_00.png │ │ ├── natures_compass_01.png │ │ ├── natures_compass_02.png │ │ ├── natures_compass_03.png │ │ ├── natures_compass_04.png │ │ ├── natures_compass_05.png │ │ ├── natures_compass_06.png │ │ ├── natures_compass_07.png │ │ ├── natures_compass_08.png │ │ ├── natures_compass_09.png │ │ ├── natures_compass_10.png │ │ ├── natures_compass_11.png │ │ ├── natures_compass_12.png │ │ ├── natures_compass_13.png │ │ ├── natures_compass_14.png │ │ ├── natures_compass_15.png │ │ ├── natures_compass_16.png │ │ ├── natures_compass_17.png │ │ ├── natures_compass_18.png │ │ ├── natures_compass_19.png │ │ ├── natures_compass_20.png │ │ ├── natures_compass_21.png │ │ ├── natures_compass_22.png │ │ ├── natures_compass_23.png │ │ ├── natures_compass_24.png │ │ ├── natures_compass_25.png │ │ ├── natures_compass_26.png │ │ ├── natures_compass_27.png │ │ ├── natures_compass_28.png │ │ ├── natures_compass_29.png │ │ ├── natures_compass_30.png │ │ └── natures_compass_31.png ├── netherendingores │ ├── blockstates │ │ └── ore_nether_modded_1.json │ └── textures │ │ └── blocks │ │ ├── end_diamond_ore.png │ │ ├── end_gold_ore.png │ │ ├── end_iron_ore.png │ │ ├── nether_aluminum_ore.png │ │ ├── nether_nickel_ore.png │ │ ├── nether_silver_ore.png │ │ └── nether_uranium_ore.png ├── pack.mcmeta ├── scanner │ └── lang │ │ ├── en_us.lang │ │ └── zh_cn.lang ├── tconstruct │ ├── blockstates │ │ └── ore.json │ ├── models │ │ └── block │ │ │ ├── craftingstation.json │ │ │ └── toolstation.json │ └── textures │ │ └── blocks │ │ ├── craftingstation_side.png │ │ ├── craftingstation_top.png │ │ └── toolstation_top.png ├── techreborn │ ├── blockstates │ │ └── ores.json │ └── textures │ │ └── blocks │ │ └── ore │ │ ├── ruby_ore.png │ │ ├── sapphire_ore.png │ │ └── tungsten_ore.png └── waystones │ └── textures │ ├── entity │ ├── waystone.png │ └── waystone_active.png │ └── items │ └── warp_stone.png ├── scripts ├── Events.zs ├── OredictPatches.zs ├── cot │ ├── Blocks.zs │ ├── Enchants.zs │ ├── Fluids.zs │ └── Items.zs ├── ct │ ├── AE.zs │ ├── AdvR.zs │ ├── Botania.zs │ ├── CoT.zs │ ├── DML.zs │ ├── Duplicate.zs │ ├── EIO.zs │ ├── ET.zs │ ├── ExU2.zs │ ├── Flux.zs │ ├── Function.zs │ ├── Furnace.zs │ ├── IE.zs │ ├── JEI.zs │ ├── Loot.zs │ ├── OC.zs │ ├── PneuC.zs │ ├── Properties.zs │ ├── StorageDrawers.zs │ ├── TConstruct.zs │ ├── TE.zs │ ├── TR.zs │ ├── Vanilla.zs │ └── ZenSummon.zs ├── gamestage │ ├── Dimensions.zs │ ├── Items.zs │ └── Recipe.zs └── recipes.zs └── structures ├── active ├── EdenTree.rcst ├── EndFloatPlatform.rcst ├── EndFlowerBotania.rcig ├── EndFlowerHouse.rcst ├── EndFlowerHut.rcst ├── EndFlowerTower.rcst ├── EndFlowerTowerInvert.rcst ├── EndFlowerWizardry.rcig ├── EndPotionDispenser.rcig ├── FireTemple.rcst ├── FireTempleLoot.rcig ├── FlowerRandom.rcbm ├── FlowerRandomTransformer.rcmt ├── HaocenStructure.rcst ├── LifeTemple.rcst ├── LifeTempleLoot.rcig ├── LivingRandom.rcbm ├── RubberTree.rcst ├── SkyCity.rcst ├── WaterTemple.rcst ├── WaterTempleLoot.rcig ├── normal.rcnc └── uncommon.rcnc └── inactive ├── MagicTree1.rcst ├── MagicTree2.rcst ├── MagicTree3.rcst ├── MagicTree4.rcst └── MagicTree5.rcst /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/.github/ISSUE_TEMPLATE/bug_report_chinese.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/.github/ISSUE_TEMPLATE/feature_request_chinese.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/autoclose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/.github/workflows/autoclose.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/README_cn.md -------------------------------------------------------------------------------- /README_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/README_de.md -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/AppliedEnergistics2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/AppliedEnergistics2/AppliedEnergistics2.cfg -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/CustomRecipes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/AppliedEnergistics2/CustomRecipes.cfg -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/Facades.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/AppliedEnergistics2/Facades.cfg -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/VersionChecker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/AppliedEnergistics2/VersionChecker.cfg -------------------------------------------------------------------------------- /src/config/BlockDrops/blockdrops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/BlockDrops/blockdrops.txt -------------------------------------------------------------------------------- /src/config/BlockDrops/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/BlockDrops/config.cfg -------------------------------------------------------------------------------- /src/config/BlockDrops/modVersions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/BlockDrops/modVersions.txt -------------------------------------------------------------------------------- /src/config/CustomMainMenu/mainmenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/mainmenu.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/mainmenu_auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/mainmenu_auto.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/mainmenu_large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/mainmenu_large.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/mainmenu_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/mainmenu_normal.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/mainmenu_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/mainmenu_small.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/sponsor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/sponsor.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/sponsor_auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/sponsor_auto.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/sponsor_large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/sponsor_large.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/sponsor_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/sponsor_normal.json -------------------------------------------------------------------------------- /src/config/CustomMainMenu/sponsor_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/CustomMainMenu/sponsor_small.json -------------------------------------------------------------------------------- /src/config/Netherending Ores.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Netherending Ores.cfg -------------------------------------------------------------------------------- /src/config/PlusTweaks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/PlusTweaks.cfg -------------------------------------------------------------------------------- /src/config/Waystones.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Waystones.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Foliage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Foliage.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Misc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Misc.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Particle.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Particle.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Sand.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Sand.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Snow.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Snow.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Storm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Storm.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Tornado.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Tornado.cfg -------------------------------------------------------------------------------- /src/config/Weather2/Wind.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/Weather2/Wind.cfg -------------------------------------------------------------------------------- /src/config/advRocketry/ChemicalReactor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/ChemicalReactor.xml -------------------------------------------------------------------------------- /src/config/advRocketry/Crystallizer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/Crystallizer.xml -------------------------------------------------------------------------------- /src/config/advRocketry/CuttingMachine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/CuttingMachine.xml -------------------------------------------------------------------------------- /src/config/advRocketry/ElectricArcFurnace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/ElectricArcFurnace.xml -------------------------------------------------------------------------------- /src/config/advRocketry/Electrolyser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/Electrolyser.xml -------------------------------------------------------------------------------- /src/config/advRocketry/Lathe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/Lathe.xml -------------------------------------------------------------------------------- /src/config/advRocketry/PrecisionAssembler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/PrecisionAssembler.xml -------------------------------------------------------------------------------- /src/config/advRocketry/RollingMachine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/RollingMachine.xml -------------------------------------------------------------------------------- /src/config/advRocketry/SmallPlatePress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/SmallPlatePress.xml -------------------------------------------------------------------------------- /src/config/advRocketry/advancedRocketry.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/advancedRocketry.cfg -------------------------------------------------------------------------------- /src/config/advRocketry/asteroidConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/asteroidConfig.xml -------------------------------------------------------------------------------- /src/config/advRocketry/oreConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/oreConfig.xml -------------------------------------------------------------------------------- /src/config/advRocketry/planetDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/advRocketry/planetDefs.xml -------------------------------------------------------------------------------- /src/config/betteradvancements/betteradvancements.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/betteradvancements/betteradvancements.cfg -------------------------------------------------------------------------------- /src/config/betterfps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/betterfps.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/settings.cfg -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/contenttweaker_crystal_blaze001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/shapes.d/contenttweaker_crystal_blaze001.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/contenttweaker_crystal_ghast001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/shapes.d/contenttweaker_crystal_ghast001.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/contenttweaker_crystal_magma001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/shapes.d/contenttweaker_crystal_magma001.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/contenttweaker_crystal_pigman001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/shapes.d/contenttweaker_crystal_pigman001.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/contenttweaker_crystal_wither001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/shapes.d/contenttweaker_crystal_wither001.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/stygian_wyrmwood001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/shapes.d/stygian_wyrmwood001.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/endgrass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/soils.d/endgrass.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/livingbrick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/soils.d/livingbrick.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/livingrock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/soils.d/livingrock.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/types.d/crystal_blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/types.d/crystal_blaze.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/types.d/crystal_ghast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/types.d/crystal_ghast.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/types.d/crystal_magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/types.d/crystal_magma.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/types.d/crystal_pigman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/types.d/crystal_pigman.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/types.d/crystal_wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/types.d/crystal_wither.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/types.d/stygian_wyrmwood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/bonsaitrees/types.d/stygian_wyrmwood.json -------------------------------------------------------------------------------- /src/config/botaniatweaks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/botaniatweaks.cfg -------------------------------------------------------------------------------- /src/config/chesttransporter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/chesttransporter.cfg -------------------------------------------------------------------------------- /src/config/cofh/core/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/core/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/core/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/core/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/core/friends.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/cofh/thermalexpansion/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/thermalexpansion/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalexpansion/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/thermalexpansion/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalexpansion/florbs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/thermalexpansion/florbs.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalexpansion/morbs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/thermalexpansion/morbs.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalfoundation/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/thermalfoundation/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalfoundation/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/thermalfoundation/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalfoundation/lexicon-whitelist.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/thermalfoundation/lexicon-whitelist.cfg -------------------------------------------------------------------------------- /src/config/cofh/world/00_minecraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/world/00_minecraft.json -------------------------------------------------------------------------------- /src/config/cofh/world/01_end_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/world/01_end_ores.json -------------------------------------------------------------------------------- /src/config/cofh/world/02_end_liquid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/world/02_end_liquid.json -------------------------------------------------------------------------------- /src/config/cofh/world/03_nether_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/world/03_nether_ores.json -------------------------------------------------------------------------------- /src/config/cofh/world/04_overworld_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/world/04_overworld_ores.json -------------------------------------------------------------------------------- /src/config/cofh/world/05_quantum_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/world/05_quantum_ores.json -------------------------------------------------------------------------------- /src/config/cofh/world/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cofh/world/config.cfg -------------------------------------------------------------------------------- /src/config/commoncapabilities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/commoncapabilities.cfg -------------------------------------------------------------------------------- /src/config/cyclopscore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/cyclopscore.cfg -------------------------------------------------------------------------------- /src/config/deepmobaffixes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/deepmobaffixes.cfg -------------------------------------------------------------------------------- /src/config/deepmoblearning.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/deepmoblearning.cfg -------------------------------------------------------------------------------- /src/config/dimensionalcontrol/DimensionalControl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/dimensionalcontrol/DimensionalControl.cfg -------------------------------------------------------------------------------- /src/config/dimensionalcontrol/Dimensions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/dimensionalcontrol/Dimensions.cfg -------------------------------------------------------------------------------- /src/config/dropt/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/dropt/end.json -------------------------------------------------------------------------------- /src/config/enderio/enderio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/enderio.cfg -------------------------------------------------------------------------------- /src/config/enderio/enderioconduits.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/enderioconduits.cfg -------------------------------------------------------------------------------- /src/config/enderio/enderiointegrationforestry.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/enderiointegrationforestry.cfg -------------------------------------------------------------------------------- /src/config/enderio/enderiomachines.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/enderiomachines.cfg -------------------------------------------------------------------------------- /src/config/enderio/enderiopowertools.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/enderiopowertools.cfg -------------------------------------------------------------------------------- /src/config/enderio/painter_paint_sources_core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/painter_paint_sources_core.xml -------------------------------------------------------------------------------- /src/config/enderio/painter_paint_sources_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/painter_paint_sources_user.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/aliases.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/aliases.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/alloying.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/alloying.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/alloying_modded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/alloying_modded.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/balls.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/balls.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/base.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/base.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/capacitor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/capacitor.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/capacitor_machines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/capacitor_machines.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/conduits-applied-energistics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/conduits-applied-energistics.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/conduits-opencomputers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/conduits-opencomputers.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/conduits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/conduits.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/darksteel_upgrades.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/darksteel_upgrades.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/darksteel_upgrades_machines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/darksteel_upgrades_machines.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/enchanter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/enchanter.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/broken_spawner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/broken_spawner.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/cheap_machines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/cheap_machines.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/cheap_materials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/cheap_materials.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/cheaty_spawner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/cheaty_spawner.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/conduits_easy_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/conduits_easy_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/conduits_hard_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/conduits_hard_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/easy_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/easy_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/hard_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/hard_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/infinity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/infinity.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/legacy_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/legacy_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/machines_easy_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/machines_easy_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/optional_tweaks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/optional_tweaks.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/peaceful.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/peaceful.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/powertools_easy_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/powertools_easy_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/recipes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/recipes.xsd -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/sagmill_dupe_recipe_patches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/sagmill_dupe_recipe_patches.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/strict_iron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/strict_iron.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/examples/unhide_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/examples/unhide_base.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/fuels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/fuels.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/glass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/glass.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/hiding_base.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/hiding_base.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/hiding_conduits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/hiding_conduits.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/hiding_machines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/hiding_machines.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/integration_railcraft_recipes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/integration_railcraft_recipes.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/items.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/items.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/machines.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/machines.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/materials.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/materials.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/misc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/misc.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/powertools.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/powertools.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/sagmill.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/sagmill.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/sagmill_metals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/sagmill_metals.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/sagmill_modded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/sagmill_modded.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/sagmill_ores.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/sagmill_ores.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/sagmill_silentgems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/sagmill_silentgems.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/sagmill_vanilla.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/sagmill_vanilla.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/sagmill_vanilla2modded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/sagmill_vanilla2modded.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/soulbinder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/soulbinder.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/spawner.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/spawner.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/tank.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/tank.pdf -------------------------------------------------------------------------------- /src/config/enderio/recipes/user/recipes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/user/recipes.xsd -------------------------------------------------------------------------------- /src/config/enderio/recipes/user/user_recipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/user/user_recipes.xml -------------------------------------------------------------------------------- /src/config/enderio/recipes/vat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/enderio/recipes/vat.pdf -------------------------------------------------------------------------------- /src/config/environmentaltech/etlunar/main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/etlunar/main.cfg -------------------------------------------------------------------------------- /src/config/environmentaltech/main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/main.cfg -------------------------------------------------------------------------------- /src/config/environmentaltech/multiblocks/void_miner/ore/tier_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/multiblocks/void_miner/ore/tier_1.json -------------------------------------------------------------------------------- /src/config/environmentaltech/multiblocks/void_miner/ore/tier_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/multiblocks/void_miner/ore/tier_2.json -------------------------------------------------------------------------------- /src/config/environmentaltech/multiblocks/void_miner/ore/tier_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/multiblocks/void_miner/ore/tier_3.json -------------------------------------------------------------------------------- /src/config/environmentaltech/multiblocks/void_miner/ore/tier_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/multiblocks/void_miner/ore/tier_4.json -------------------------------------------------------------------------------- /src/config/environmentaltech/multiblocks/void_miner/ore/tier_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/multiblocks/void_miner/ore/tier_5.json -------------------------------------------------------------------------------- /src/config/environmentaltech/multiblocks/void_miner/ore/tier_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/environmentaltech/multiblocks/void_miner/ore/tier_6.json -------------------------------------------------------------------------------- /src/config/extrautils2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/extrautils2.cfg -------------------------------------------------------------------------------- /src/config/forge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/forge.cfg -------------------------------------------------------------------------------- /src/config/forgivingvoid.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/forgivingvoid.cfg -------------------------------------------------------------------------------- /src/config/ftblib.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/ftblib.cfg -------------------------------------------------------------------------------- /src/config/ftbutilities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/ftbutilities.cfg -------------------------------------------------------------------------------- /src/config/immersiveengineering.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/immersiveengineering.cfg -------------------------------------------------------------------------------- /src/config/immersivepetroleum.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/immersivepetroleum.cfg -------------------------------------------------------------------------------- /src/config/incontrol/experience.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/config/incontrol/loot.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/config/incontrol/main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/incontrol/main.cfg -------------------------------------------------------------------------------- /src/config/incontrol/potentialspawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/incontrol/potentialspawn.json -------------------------------------------------------------------------------- /src/config/incontrol/spawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/incontrol/spawn.json -------------------------------------------------------------------------------- /src/config/incontrol/summonaid.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/config/instantunify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/instantunify.cfg -------------------------------------------------------------------------------- /src/config/integrateddynamics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/integrateddynamics.cfg -------------------------------------------------------------------------------- /src/config/integratedtunnels.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/integratedtunnels.cfg -------------------------------------------------------------------------------- /src/config/jeresources/jeresources.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/jeresources/jeresources.cfg -------------------------------------------------------------------------------- /src/config/jeresources/world-gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/jeresources/world-gen.json -------------------------------------------------------------------------------- /src/config/librarianlib.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/librarianlib.cfg -------------------------------------------------------------------------------- /src/config/loadingscreens/LoadingScreens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/loadingscreens/LoadingScreens.txt -------------------------------------------------------------------------------- /src/config/login_shield.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/login_shield.cfg -------------------------------------------------------------------------------- /src/config/naturescompass.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/naturescompass.cfg -------------------------------------------------------------------------------- /src/config/opencomputers/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/opencomputers/settings.conf -------------------------------------------------------------------------------- /src/config/pneumaticcraft.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/AmadronOffersPeriodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/AmadronOffersPeriodic.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/AmadronOffersStatic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/AmadronOffersStatic.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/AmadronTradingSettings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/AmadronTradingSettings.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/BlockHeatProperties.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/BlockHeatProperties.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/HelmetWidgetDefaults.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/HelmetWidgetDefaults.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/MicromissileDefaults.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/MicromissileDefaults.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/PneumaticArmorHUDLayout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/PneumaticArmorHUDLayout.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg -------------------------------------------------------------------------------- /src/config/pneumaticcraft/thirdparty.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/pneumaticcraft/thirdparty.cfg -------------------------------------------------------------------------------- /src/config/randompatches.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/randompatches.cfg -------------------------------------------------------------------------------- /src/config/reccomplex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/reccomplex.cfg -------------------------------------------------------------------------------- /src/config/scanner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/scanner.cfg -------------------------------------------------------------------------------- /src/config/solcarrot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/solcarrot.cfg -------------------------------------------------------------------------------- /src/config/storagedrawers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/storagedrawers.cfg -------------------------------------------------------------------------------- /src/config/stygian.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/stygian.cfg -------------------------------------------------------------------------------- /src/config/tconstruct.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/tconstruct.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/configData.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/configData.nbt -------------------------------------------------------------------------------- /src/config/teamreborn/reborncore/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/reborncore/client.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/reborncore/misc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/reborncore/misc.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/reborncore/power.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/reborncore/power.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/reborncore/selected_energy.json: -------------------------------------------------------------------------------- 1 | FE -------------------------------------------------------------------------------- /src/config/teamreborn/reborncore/upgrades.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/reborncore/upgrades.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/compat.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/compat.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/generators.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/generators.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/items.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/items.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/machines.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/machines.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/misc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/misc.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/ores.json -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/recipes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/recipes.cfg -------------------------------------------------------------------------------- /src/config/teamreborn/techreborn/world.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/teamreborn/techreborn/world.cfg -------------------------------------------------------------------------------- /src/config/theoneprobe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/theoneprobe.cfg -------------------------------------------------------------------------------- /src/config/tips.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/tips.cfg -------------------------------------------------------------------------------- /src/config/toastcontrol.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/toastcontrol.cfg -------------------------------------------------------------------------------- /src/config/tombstone.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/tombstone.cfg -------------------------------------------------------------------------------- /src/config/triumph/Triumph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/Triumph.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/chorus_good.txt: -------------------------------------------------------------------------------- 1 | playsound wizardry:chorus_good block @p -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/haocenstructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/functions/triumph/haocenstructure.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/haocenstructure_delay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/functions/triumph/haocenstructure_delay.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/haocenstructure_succ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/functions/triumph/haocenstructure_succ.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/nether.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p nether -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/nether_items.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p netheritems -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/overworld.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p overworld -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/overworld_items.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p overworlditems -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/spell.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p spell -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/starts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/functions/triumph/starts.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/triumph/sudden_dark_pafoof.txt: -------------------------------------------------------------------------------- 1 | playsound wizardry:sudden_dark_pafoof ambient @p -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/easteregg/feather.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/easteregg/feather.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/easteregg/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/easteregg/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/easteregg/valkyrie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/easteregg/valkyrie.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/alchemy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/alchemy.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/alfheim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/alfheim.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/alloy_smelter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/alloy_smelter.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/altar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/altar.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/assembler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/assembler.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/bed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/bed.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/biome_scanner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/biome_scanner.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/blue_lotus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/blue_lotus.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/bone_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/bone_block.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/bonsai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/bonsai.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/chaos_pearl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/chaos_pearl.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/chorus_flower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/chorus_flower.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/chorus_fruit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/chorus_fruit.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/clay_flower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/clay_flower.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/coke_oven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/coke_oven.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/compass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/compass.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/deep_learner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/deep_learner.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/drawer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/drawer.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/end_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/end_log.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/end_matter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/end_matter.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/end_orechid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/end_orechid.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/ender_iron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/ender_iron.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/ender_lilly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/ender_lilly.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/enderdagger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/enderdagger.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/endoflame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/endoflame.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/endstone_shard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/endstone_shard.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/feather.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/feather.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/fire_rune.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/fire_rune.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/furnace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/furnace.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/glitched_oby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/glitched_oby.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/gourmaryllis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/gourmaryllis.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/grass_seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/grass_seeds.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/infinity_dust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/infinity_dust.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/info.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/keystone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/keystone.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/liquid_mana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/liquid_mana.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/living_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/living_blocks.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/machine_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/machine_block.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/mana_pool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/mana_pool.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/mana_resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/mana_resource.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/mana_usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/mana_usage.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/menril.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/menril.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/natura_pylon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/natura_pylon.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/nether_knowledge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/nether_knowledge.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/nether_portal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/nether_portal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/netherrack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/netherrack.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/queue.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/sag_mill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/sag_mill.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/scanner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/scanner.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/scanner_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/scanner_info.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/solder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/solder.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/stirling_gen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/stirling_gen.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/string.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/terra_plate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/terra_plate.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/terrasteel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/terrasteel.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/tool_station.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/tool_station.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/water.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/water.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/end/waystone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/end/waystone.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/kepler/beacon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/kepler/beacon.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/kepler/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/kepler/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/alloy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/alloy.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/altar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/altar.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/angel_ring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/angel_ring.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/assembly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/assembly.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/aversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/aversion.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/blast_furnace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/blast_furnace.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/blaze_rod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/blaze_rod.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/blue_slime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/blue_slime.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/bonsai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/bonsai.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/chamber.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/chamber.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/chassis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/chassis.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/chicken_ring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/chicken_ring.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/compiron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/compiron.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/empty_pcb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/empty_pcb.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/excavator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/excavator.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/induction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/induction.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/interface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/interface.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/lpg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/lpg.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/manual_mill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/manual_mill.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/oil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/oil.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/pcb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/pcb.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/pcb_blueprint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/pcb_blueprint.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/plastic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/plastic.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/press.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/press.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/rainbow_ingot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/rainbow_ingot.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/rainbowgen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/rainbowgen.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/refinery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/refinery.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/resonator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/resonator.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/rotten_pork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/rotten_pork.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/shulker_ring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/shulker_ring.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/skystone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/skystone.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/solar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/solar.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/soul_chassis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/soul_chassis.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/star.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/star.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/stargen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/stargen.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/tablet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/tablet.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/vacuum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/vacuum.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/veinmine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/veinmine.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/vortex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/vortex.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/withermodel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/withermodel.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/nether/xp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/nether/xp.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/deflector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/deflector.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/distiller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/distiller.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/efficiency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/efficiency.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/electro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/electro.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/fusion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/fusion.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/implosion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/implosion.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/kepler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/kepler.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/recycler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/recycler.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/rocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/rocket.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/rubber.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/rubber.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/satellite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/satellite.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/skycity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/skycity.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/spacesuit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/spacesuit.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/speed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/speed.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/structure.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/uumachine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/uumachine.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/voidminer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/voidminer.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/voidminer2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/voidminer2.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/overworld/warp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/overworld/warp.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/resources/end_coal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/resources/end_coal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/resources/end_copper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/resources/end_copper.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/resources/end_iron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/resources/end_iron.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/resources/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/resources/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/skycity/creative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/skycity/creative.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/skycity/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/skycity/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/aftermath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/aftermath.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/apple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/apple.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/contract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/contract.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/core.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/crystal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/crystal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/dna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/dna.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/fire_crystal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/fire_crystal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/globe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/globe.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/life_crystal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/life_crystal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/plan.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/potion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/potion.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/scroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/scroll.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/shard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/shard.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/spirit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/spirit.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/water_crystal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/water_crystal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/triumph/levitated/story/wither_crystal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/triumph/script/triumph/levitated/story/wither_crystal.txt -------------------------------------------------------------------------------- /src/config/unidict/IntegrationModule.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/unidict/IntegrationModule.cfg -------------------------------------------------------------------------------- /src/config/unidict/UniDict.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/unidict/UniDict.cfg -------------------------------------------------------------------------------- /src/config/valkyrielib/main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/valkyrielib/main.cfg -------------------------------------------------------------------------------- /src/config/wizardry.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry.cfg -------------------------------------------------------------------------------- /src/config/wizardry/fire_recipes/devil_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fire_recipes/devil_dust.json -------------------------------------------------------------------------------- /src/config/wizardry/fire_recipes/sky_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fire_recipes/sky_dust.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/bone_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/bone_block.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/codex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/codex.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/mana_battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/mana_battery.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/mana_orb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/mana_orb.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/nacre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/nacre.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/temp_real_halo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/temp_real_halo.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/unicorn_dagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/unicorn_dagger.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/vivid_grass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/vivid_grass.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_door.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_fence.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_fence_gate.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_leaves.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_log.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_plank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_plank.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_sapling.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_slab.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_stairs.json -------------------------------------------------------------------------------- /src/config/wizardry/fluid_recipes/wisdom_stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/fluid_recipes/wisdom_stick.json -------------------------------------------------------------------------------- /src/config/wizardry/wizManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizManifest.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_anti_gravity_well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_anti_gravity_well.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_backup.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_bouncing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_bouncing.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_break.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_break.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_burn.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_crasher_fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_crasher_fall.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_decay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_decay.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_extract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_extract.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_frost.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_grace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_grace.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_gravity_well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_gravity_well.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_leap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_leap.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_leech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_leech.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_light.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_lightning.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_low_gravity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_low_gravity.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_phase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_phase.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_place.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_poison_cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_poison_cloud.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_shatter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_shatter.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_sonic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_sonic.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_substitution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_substitution.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_suffocate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_suffocate.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_telekinesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_telekinesis.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_thrive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_thrive.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_time_lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_time_lock.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_time_slow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_time_slow.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_vanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_vanish.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/effect_zoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/effect_zoom.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/modifier_extend_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/modifier_extend_range.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/modifier_extend_time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/modifier_extend_time.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/modifier_increase_aoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/modifier_increase_aoe.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/modifier_increase_potency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/modifier_increase_potency.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/modifier_increase_speed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/modifier_increase_speed.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/shape_beam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/shape_beam.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/shape_cone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/shape_cone.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/shape_projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/shape_projectile.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/shape_self.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/shape_self.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/shape_touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/shape_touch.json -------------------------------------------------------------------------------- /src/config/wizardry/wizmodules/shape_zone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/config/wizardry/wizmodules/shape_zone.json -------------------------------------------------------------------------------- /src/perfectspawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/perfectspawn.json -------------------------------------------------------------------------------- /src/resources/botania/models/block/apothecary_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/botania/models/block/apothecary_default.json -------------------------------------------------------------------------------- /src/resources/botania/models/block/shapes/petal_apothecary_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/botania/models/block/shapes/petal_apothecary_end.json -------------------------------------------------------------------------------- /src/resources/botania/textures/model/apothecary/stone_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/botania/textures/model/apothecary/stone_bottom.png -------------------------------------------------------------------------------- /src/resources/botania/textures/model/apothecary/stone_goblet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/botania/textures/model/apothecary/stone_goblet.png -------------------------------------------------------------------------------- /src/resources/botania/textures/model/apothecary/stone_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/botania/textures/model/apothecary/stone_side.png -------------------------------------------------------------------------------- /src/resources/botania/textures/model/apothecary/stone_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/botania/textures/model/apothecary/stone_top.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/dilithium_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/dilithium_block.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/eden_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/eden_leaves.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/eden_leaves_fruitless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/eden_leaves_fruitless.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/end_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/end_iron.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/end_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/end_trim.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/fire_crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/fire_crystal.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/glitched_obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/glitched_obsidian.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/life_crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/life_crystal.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/rainbow_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/rainbow_block.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/solder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/solder.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/water_crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/water_crystal.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/wither_crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/blockstates/wither_crystal.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/lang/de_de.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/lang/de_de.lang -------------------------------------------------------------------------------- /src/resources/contenttweaker/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/lang/en_us.lang -------------------------------------------------------------------------------- /src/resources/contenttweaker/lang/zh_cn.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/lang/zh_cn.lang -------------------------------------------------------------------------------- /src/resources/contenttweaker/lang/zh_tw.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/lang/zh_tw.lang -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/block/crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/block/crystal.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/block/fruit_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/block/fruit_leaves.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/block/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/block/leaves.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/apple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/apple.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/biome_scanner_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/biome_scanner_basic.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/blue_lotus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/blue_lotus.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/ccb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/ccb.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/ccb_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/ccb_base.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/chaos_pearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/chaos_pearl.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/clay_board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/clay_board.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/contract.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/core.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/crystal.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/crystal_blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/crystal_blaze.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/crystal_ghast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/crystal_ghast.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/crystal_magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/crystal_magma.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/crystal_pigman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/crystal_pigman.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/crystal_wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/crystal_wither.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/dna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/dna.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/dragon_spirit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/dragon_spirit.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/dynamo_frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/dynamo_frame.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/end_iron_chunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/end_iron_chunk.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/end_seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/end_seeds.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/essence_blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/essence_blaze.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/essence_ghast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/essence_ghast.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/essence_magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/essence_magma.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/essence_pigman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/essence_pigman.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/essence_wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/essence_wither.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/mana_paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/mana_paper.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/nether_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/nether_book.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/origin_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/origin_book.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/overworld_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/overworld_book.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/overworld_star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/overworld_star.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/paper_plane_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/paper_plane_0.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/paper_plane_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/paper_plane_1.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/paper_plane_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/paper_plane_2.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/paper_plane_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/paper_plane_3.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/paper_plane_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/paper_plane_4.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/paper_plane_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/paper_plane_5.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/paper_plane_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/paper_plane_6.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/pottery_clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/pottery_clay.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/rainbow_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/rainbow_ingot.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/rainbowgen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/rainbowgen.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/recall_pearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/recall_pearl.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/rotten_pork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/rotten_pork.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/scroll.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/scroll_ignis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/scroll_ignis.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/shard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/shard.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/solder_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/solder_bucket.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/solder_powder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/solder_powder.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/terrain_scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/terrain_scanner.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/models/item/trophy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/models/item/trophy.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/assembler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/assembler.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/assembler_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/assembler_active.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/dilithium_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/dilithium_block.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/eden_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/eden_apple.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/eden_apple.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/eden_apple.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/end_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/end_iron.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/end_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/end_trim.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/fire_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/fire_crystal.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/glitched_obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/glitched_obsidian.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/leaves_golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/leaves_golden.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/life_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/life_crystal.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/rainbow_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/rainbow_block.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/water_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/water_crystal.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/wither_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/blocks/wither_crystal.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/fluids/nuclear_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/fluids/nuclear_flow.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/fluids/nuclear_flow.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/fluids/nuclear_flow.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/fluids/nuclear_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/fluids/nuclear_still.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/fluids/solder_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/fluids/solder_flow.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/fluids/solder_flow.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/fluids/solder_flow.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/fluids/solder_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/fluids/solder_still.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/fluids/solder_still.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/fluids/solder_still.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/apple.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/apple.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/apple.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/blue_lotus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/blue_lotus.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/ccb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/ccb.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/ccb_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/ccb_base.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/chaos_pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/chaos_pearl.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/clay_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/clay_board.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/contract.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/core.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/core.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/core.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/crystal.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/crystal.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/crystal.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/crystal_blaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/crystal_blaze.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/crystal_ghast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/crystal_ghast.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/crystal_magma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/crystal_magma.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/crystal_pigman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/crystal_pigman.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/crystal_wither.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/crystal_wither.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/dna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/dna.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/dna.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/dna.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/dragon_spirit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/dragon_spirit.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/dynamo_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/dynamo_frame.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/end_iron_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/end_iron_chunk.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/end_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/end_seeds.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/essence_blaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/essence_blaze.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/essence_ghast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/essence_ghast.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/essence_magma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/essence_magma.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/essence_pigman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/essence_pigman.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/essence_wither.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/essence_wither.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/globe.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/mana_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/mana_paper.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/nether_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/nether_book.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/origin_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/origin_book.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/overworld_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/overworld_book.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/overworld_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/overworld_star.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/paper_plane_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/paper_plane_0.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/paper_plane_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/paper_plane_1.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/paper_plane_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/paper_plane_2.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/paper_plane_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/paper_plane_3.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/paper_plane_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/paper_plane_4.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/paper_plane_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/paper_plane_5.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/paper_plane_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/paper_plane_6.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/potion.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/pottery_clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/pottery_clay.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/rainbow_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/rainbow_ingot.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/rainbow_ingot.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/rainbow_ingot.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/recall_pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/recall_pearl.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/rotten_pork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/rotten_pork.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/scroll.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/scroll_ignis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/scroll_ignis.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/shard.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/shard.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/shard.png.mcmeta -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/solder_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/solder_bucket.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/solder_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/solder_powder.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/items/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/contenttweaker/textures/items/trophy.png -------------------------------------------------------------------------------- /src/resources/extrautils2/textures/flyingsquidring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/extrautils2/textures/flyingsquidring.png -------------------------------------------------------------------------------- /src/resources/levitated/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/icons/16.png -------------------------------------------------------------------------------- /src/resources/levitated/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/icons/256.png -------------------------------------------------------------------------------- /src/resources/levitated/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/icons/32.png -------------------------------------------------------------------------------- /src/resources/levitated/lang/de_de.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/lang/de_de.lang -------------------------------------------------------------------------------- /src/resources/levitated/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/lang/en_us.lang -------------------------------------------------------------------------------- /src/resources/levitated/lang/zh_cn.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/lang/zh_cn.lang -------------------------------------------------------------------------------- /src/resources/levitated/lang/zh_tw.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/lang/zh_tw.lang -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/afdian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/afdian.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/button_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/button_0.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/button_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/button_1.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/button_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/button_2.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/button_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/button_3.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/discord.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/door.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/exit.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/loading.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/main.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/patreon.png -------------------------------------------------------------------------------- /src/resources/levitated/textures/gui/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/levitated/textures/gui/sponsor.png -------------------------------------------------------------------------------- /src/resources/minecraft/models/block/crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/models/block/crafting_table.json -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/bedrock.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/crafting_table_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/crafting_table_front.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/crafting_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/crafting_table_side.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/crafting_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/crafting_table_top.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/dispenser_front_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/dispenser_front_vertical.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/dropper_front_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/dropper_front_horizontal.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/dropper_front_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/dropper_front_vertical.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/furnace_front_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/furnace_front_off.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/furnace_front_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/furnace_front_on.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/furnace_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/furnace_side.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/blocks/furnace_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/blocks/furnace_top.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/entity/chest/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/entity/chest/normal.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/entity/chest/normal_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/entity/chest/normal_double.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/entity/chest/trapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/entity/chest/trapped.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/entity/chest/trapped_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/entity/chest/trapped_double.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/gui/icons.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/gui/options_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/gui/options_background.png -------------------------------------------------------------------------------- /src/resources/minecraft/textures/items/flint_and_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/minecraft/textures/items/flint_and_steel.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_00.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_01.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_02.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_03.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_04.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_05.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_06.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_07.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_08.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_09.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_10.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_11.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_12.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_13.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_14.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_15.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_16.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_17.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_18.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_19.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_20.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_21.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_22.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_23.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_24.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_25.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_26.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_27.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_28.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_29.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_30.png -------------------------------------------------------------------------------- /src/resources/naturescompass/textures/items/natures_compass_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/naturescompass/textures/items/natures_compass_31.png -------------------------------------------------------------------------------- /src/resources/netherendingores/blockstates/ore_nether_modded_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/netherendingores/blockstates/ore_nether_modded_1.json -------------------------------------------------------------------------------- /src/resources/netherendingores/textures/blocks/end_diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/netherendingores/textures/blocks/end_diamond_ore.png -------------------------------------------------------------------------------- /src/resources/netherendingores/textures/blocks/end_gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/netherendingores/textures/blocks/end_gold_ore.png -------------------------------------------------------------------------------- /src/resources/netherendingores/textures/blocks/end_iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/netherendingores/textures/blocks/end_iron_ore.png -------------------------------------------------------------------------------- /src/resources/netherendingores/textures/blocks/nether_nickel_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/netherendingores/textures/blocks/nether_nickel_ore.png -------------------------------------------------------------------------------- /src/resources/netherendingores/textures/blocks/nether_silver_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/netherendingores/textures/blocks/nether_silver_ore.png -------------------------------------------------------------------------------- /src/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/pack.mcmeta -------------------------------------------------------------------------------- /src/resources/scanner/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/scanner/lang/en_us.lang -------------------------------------------------------------------------------- /src/resources/scanner/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | gui.scanner.ultimateBSL1=将生物群系扫描仪 -------------------------------------------------------------------------------- /src/resources/tconstruct/blockstates/ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/tconstruct/blockstates/ore.json -------------------------------------------------------------------------------- /src/resources/tconstruct/models/block/craftingstation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/tconstruct/models/block/craftingstation.json -------------------------------------------------------------------------------- /src/resources/tconstruct/models/block/toolstation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/tconstruct/models/block/toolstation.json -------------------------------------------------------------------------------- /src/resources/tconstruct/textures/blocks/craftingstation_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/tconstruct/textures/blocks/craftingstation_side.png -------------------------------------------------------------------------------- /src/resources/tconstruct/textures/blocks/craftingstation_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/tconstruct/textures/blocks/craftingstation_top.png -------------------------------------------------------------------------------- /src/resources/tconstruct/textures/blocks/toolstation_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/tconstruct/textures/blocks/toolstation_top.png -------------------------------------------------------------------------------- /src/resources/techreborn/blockstates/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/techreborn/blockstates/ores.json -------------------------------------------------------------------------------- /src/resources/techreborn/textures/blocks/ore/ruby_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/techreborn/textures/blocks/ore/ruby_ore.png -------------------------------------------------------------------------------- /src/resources/techreborn/textures/blocks/ore/sapphire_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/techreborn/textures/blocks/ore/sapphire_ore.png -------------------------------------------------------------------------------- /src/resources/techreborn/textures/blocks/ore/tungsten_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/techreborn/textures/blocks/ore/tungsten_ore.png -------------------------------------------------------------------------------- /src/resources/waystones/textures/entity/waystone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/waystones/textures/entity/waystone.png -------------------------------------------------------------------------------- /src/resources/waystones/textures/entity/waystone_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/waystones/textures/entity/waystone_active.png -------------------------------------------------------------------------------- /src/resources/waystones/textures/items/warp_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/resources/waystones/textures/items/warp_stone.png -------------------------------------------------------------------------------- /src/scripts/Events.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/Events.zs -------------------------------------------------------------------------------- /src/scripts/OredictPatches.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/OredictPatches.zs -------------------------------------------------------------------------------- /src/scripts/cot/Blocks.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/cot/Blocks.zs -------------------------------------------------------------------------------- /src/scripts/cot/Enchants.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/cot/Enchants.zs -------------------------------------------------------------------------------- /src/scripts/cot/Fluids.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/cot/Fluids.zs -------------------------------------------------------------------------------- /src/scripts/cot/Items.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/cot/Items.zs -------------------------------------------------------------------------------- /src/scripts/ct/AE.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/AE.zs -------------------------------------------------------------------------------- /src/scripts/ct/AdvR.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/AdvR.zs -------------------------------------------------------------------------------- /src/scripts/ct/Botania.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Botania.zs -------------------------------------------------------------------------------- /src/scripts/ct/CoT.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/CoT.zs -------------------------------------------------------------------------------- /src/scripts/ct/DML.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/DML.zs -------------------------------------------------------------------------------- /src/scripts/ct/Duplicate.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Duplicate.zs -------------------------------------------------------------------------------- /src/scripts/ct/EIO.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/EIO.zs -------------------------------------------------------------------------------- /src/scripts/ct/ET.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/ET.zs -------------------------------------------------------------------------------- /src/scripts/ct/ExU2.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/ExU2.zs -------------------------------------------------------------------------------- /src/scripts/ct/Flux.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Flux.zs -------------------------------------------------------------------------------- /src/scripts/ct/Function.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Function.zs -------------------------------------------------------------------------------- /src/scripts/ct/Furnace.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Furnace.zs -------------------------------------------------------------------------------- /src/scripts/ct/IE.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/IE.zs -------------------------------------------------------------------------------- /src/scripts/ct/JEI.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/JEI.zs -------------------------------------------------------------------------------- /src/scripts/ct/Loot.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Loot.zs -------------------------------------------------------------------------------- /src/scripts/ct/OC.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/OC.zs -------------------------------------------------------------------------------- /src/scripts/ct/PneuC.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/PneuC.zs -------------------------------------------------------------------------------- /src/scripts/ct/Properties.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Properties.zs -------------------------------------------------------------------------------- /src/scripts/ct/StorageDrawers.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/StorageDrawers.zs -------------------------------------------------------------------------------- /src/scripts/ct/TConstruct.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/TConstruct.zs -------------------------------------------------------------------------------- /src/scripts/ct/TE.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/TE.zs -------------------------------------------------------------------------------- /src/scripts/ct/TR.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/TR.zs -------------------------------------------------------------------------------- /src/scripts/ct/Vanilla.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/Vanilla.zs -------------------------------------------------------------------------------- /src/scripts/ct/ZenSummon.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/ct/ZenSummon.zs -------------------------------------------------------------------------------- /src/scripts/gamestage/Dimensions.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/gamestage/Dimensions.zs -------------------------------------------------------------------------------- /src/scripts/gamestage/Items.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/gamestage/Items.zs -------------------------------------------------------------------------------- /src/scripts/gamestage/Recipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/gamestage/Recipe.zs -------------------------------------------------------------------------------- /src/scripts/recipes.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/scripts/recipes.zs -------------------------------------------------------------------------------- /src/structures/active/EdenTree.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EdenTree.rcst -------------------------------------------------------------------------------- /src/structures/active/EndFloatPlatform.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndFloatPlatform.rcst -------------------------------------------------------------------------------- /src/structures/active/EndFlowerBotania.rcig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndFlowerBotania.rcig -------------------------------------------------------------------------------- /src/structures/active/EndFlowerHouse.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndFlowerHouse.rcst -------------------------------------------------------------------------------- /src/structures/active/EndFlowerHut.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndFlowerHut.rcst -------------------------------------------------------------------------------- /src/structures/active/EndFlowerTower.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndFlowerTower.rcst -------------------------------------------------------------------------------- /src/structures/active/EndFlowerTowerInvert.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndFlowerTowerInvert.rcst -------------------------------------------------------------------------------- /src/structures/active/EndFlowerWizardry.rcig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndFlowerWizardry.rcig -------------------------------------------------------------------------------- /src/structures/active/EndPotionDispenser.rcig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/EndPotionDispenser.rcig -------------------------------------------------------------------------------- /src/structures/active/FireTemple.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/FireTemple.rcst -------------------------------------------------------------------------------- /src/structures/active/FireTempleLoot.rcig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/FireTempleLoot.rcig -------------------------------------------------------------------------------- /src/structures/active/FlowerRandom.rcbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/FlowerRandom.rcbm -------------------------------------------------------------------------------- /src/structures/active/FlowerRandomTransformer.rcmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/FlowerRandomTransformer.rcmt -------------------------------------------------------------------------------- /src/structures/active/HaocenStructure.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/HaocenStructure.rcst -------------------------------------------------------------------------------- /src/structures/active/LifeTemple.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/LifeTemple.rcst -------------------------------------------------------------------------------- /src/structures/active/LifeTempleLoot.rcig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/LifeTempleLoot.rcig -------------------------------------------------------------------------------- /src/structures/active/LivingRandom.rcbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/LivingRandom.rcbm -------------------------------------------------------------------------------- /src/structures/active/RubberTree.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/RubberTree.rcst -------------------------------------------------------------------------------- /src/structures/active/SkyCity.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/SkyCity.rcst -------------------------------------------------------------------------------- /src/structures/active/WaterTemple.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/WaterTemple.rcst -------------------------------------------------------------------------------- /src/structures/active/WaterTempleLoot.rcig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/WaterTempleLoot.rcig -------------------------------------------------------------------------------- /src/structures/active/normal.rcnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/normal.rcnc -------------------------------------------------------------------------------- /src/structures/active/uncommon.rcnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/active/uncommon.rcnc -------------------------------------------------------------------------------- /src/structures/inactive/MagicTree1.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/inactive/MagicTree1.rcst -------------------------------------------------------------------------------- /src/structures/inactive/MagicTree2.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/inactive/MagicTree2.rcst -------------------------------------------------------------------------------- /src/structures/inactive/MagicTree3.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/inactive/MagicTree3.rcst -------------------------------------------------------------------------------- /src/structures/inactive/MagicTree4.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/inactive/MagicTree4.rcst -------------------------------------------------------------------------------- /src/structures/inactive/MagicTree5.rcst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misterplus/Levitated/HEAD/src/structures/inactive/MagicTree5.rcst --------------------------------------------------------------------------------