├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── ---client-bug-report.md │ ├── ---feature-request.md │ ├── ---mod-request.md │ └── ---server-bug-report.md ├── lock.yml ├── stale.yml ├── support.yml ├── triage.yml └── workflows │ └── main.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── docs ├── examples │ └── modRecipe.zs └── mods │ └── triumph │ ├── Triumph.txt │ ├── criteria │ └── triggers │ │ ├── immersiveengineering │ │ └── multiblock_formed.txt │ │ ├── minecraft │ │ ├── bred_animals.txt │ │ ├── brewed_potion.txt │ │ ├── changed_dimension.txt │ │ ├── construct_beacon.txt │ │ ├── consume_item.txt │ │ ├── cured_zombie_villager.txt │ │ ├── effects_changed.txt │ │ ├── enchanted_item.txt │ │ ├── enter_block.txt │ │ ├── entity_hurt_player.txt │ │ ├── entity_killed_player.txt │ │ ├── impossible.txt │ │ ├── inventory_changed.txt │ │ ├── item_durability_changed.txt │ │ ├── levitation.txt │ │ ├── location.txt │ │ ├── nether_travel.txt │ │ ├── placed_block.txt │ │ ├── player_hurt_entity.txt │ │ ├── player_killed_entity.txt │ │ ├── recipe_unlocked.txt │ │ ├── slept_in_bed.txt │ │ ├── summoned_entity.txt │ │ ├── tame_animal.txt │ │ ├── used_totem.txt │ │ └── villager_trade.txt │ │ └── triumph │ │ ├── completed_advancement.txt │ │ ├── left_click_block.txt │ │ ├── player_break_block.txt │ │ ├── player_crafted_item.txt │ │ ├── player_destroy_block.txt │ │ ├── player_harvest_block.txt │ │ └── right_click_block.txt │ ├── dataObjects │ ├── DamageData.txt │ ├── DamageSourceData.txt │ ├── DimensionData.txt │ ├── DistanceData.txt │ ├── EntityData.txt │ ├── ItemBlockData.txt │ ├── LocationData.txt │ └── PotionEffectData.txt │ ├── script │ └── ScriptAdvancement.txt │ └── triumph │ ├── example │ ├── example_all_rewards.txt │ ├── example_better_advancement_colors.txt │ ├── example_break_block.txt │ ├── example_bred_animals.txt │ ├── example_brewed_potion.txt │ ├── example_completed_advancement.txt │ ├── example_construct_beacon.txt │ ├── example_consume_item.txt │ ├── example_count.txt │ ├── example_destroy_block.txt │ ├── example_enchanted_item.txt │ ├── example_enter_biome.txt │ ├── example_enter_block.txt │ ├── example_enter_dimension.txt │ ├── example_harvest_block.txt │ ├── example_hurt_entity.txt │ ├── example_impossible.txt │ ├── example_inventory_changed.txt │ ├── example_item_crafted.txt │ ├── example_killed_by_entity.txt │ ├── example_killed_entity.txt │ ├── example_left_click_block.txt │ ├── example_placed_block.txt │ ├── example_recipe_unlocked.txt │ ├── example_repeatable.txt │ ├── example_right_click_block.txt │ ├── example_slept_in_bed.txt │ ├── example_tame_animal.txt │ ├── example_villager_trade.txt │ ├── immersiveengineering │ │ └── example_multiblock_formed.txt │ └── root.txt │ └── vanilla │ ├── adventure │ ├── adventuring_time.txt │ ├── kill_a_mob.txt │ ├── kill_all_mobs.txt │ ├── root.txt │ ├── shoot_arrow.txt │ ├── sleep_in_bed.txt │ ├── sniper_duel.txt │ ├── summon_iron_golem.txt │ ├── totem_of_undying.txt │ └── trade.txt │ ├── end │ ├── dragon_breath.txt │ ├── dragon_egg.txt │ ├── elytra.txt │ ├── enter_end_gateway.txt │ ├── find_end_city.txt │ ├── kill_dragon.txt │ ├── levitate.txt │ ├── respawn_dragon.txt │ └── root.txt │ ├── husbandry │ ├── balanced_diet.txt │ ├── break_diamond_hoe.txt │ ├── bred_all_animals.txt │ ├── breed_an_animal.txt │ ├── plant_seed.txt │ ├── root.txt │ └── tame_an_animal.txt │ ├── nether │ ├── all_effects.txt │ ├── all_potions.txt │ ├── brew_potion.txt │ ├── create_beacon.txt │ ├── create_full_beacon.txt │ ├── fast_travel.txt │ ├── find_fortress.txt │ ├── get_wither_skull.txt │ ├── obtain_blaze_rod.txt │ ├── return_to_sender.txt │ ├── root.txt │ ├── summon_wither.txt │ └── uneasy_alliance.txt │ ├── recipes │ ├── brewing │ │ ├── blaze_powder.txt │ │ ├── brewing_stand.txt │ │ ├── cauldron.txt │ │ ├── fermented_spider_eye.txt │ │ ├── glass_bottle.txt │ │ ├── golden_carrot.txt │ │ ├── magma_cream.txt │ │ └── speckled_melon.txt │ └── root.txt │ └── story │ ├── cure_zombie_villager.txt │ ├── deflect_arrow.txt │ ├── enchant_item.txt │ ├── enter_the_end.txt │ ├── enter_the_nether.txt │ ├── follow_ender_eye.txt │ ├── form_obsidian.txt │ ├── iron_tools.txt │ ├── lava_bucket.txt │ ├── mine_diamond.txt │ ├── mine_stone.txt │ ├── obtain_armor.txt │ ├── root.txt │ ├── shiny_gear.txt │ ├── smelt_iron.txt │ └── upgrade_tools.txt ├── src ├── config │ ├── AE2Stuff │ │ └── readme.txt │ ├── AppliedEnergistics2 │ │ ├── AppliedEnergistics2.cfg │ │ ├── CustomRecipes.cfg │ │ ├── Facades.cfg │ │ ├── VersionChecker.cfg │ │ └── extracells.cfg │ ├── BNBGamingCore.cfg │ ├── Building Gadgets.cfg │ ├── CustomMainMenu │ │ └── mainmenu.json │ ├── ElevatorMod │ │ └── ElevatorMod.cfg │ ├── FBP │ │ ├── AnimBlockBlacklist.txt │ │ ├── AnimBlockExceptions.txt │ │ ├── FloatingMaterials.txt │ │ ├── Particle.properties │ │ ├── ParticleBlockBlacklist.txt │ │ └── ParticleBlockExceptions.txt │ ├── FarmingForBlockheads │ │ └── Market.json │ ├── Guide-API │ │ └── Guide-API.cfg │ ├── LagGoggles-client.cfg │ ├── LagGoggles-server.cfg │ ├── MatterOverdrive │ │ ├── MatterOverdrive │ │ ├── MatterOverdrive.cfg │ │ └── recipes │ │ │ └── inscriber.xml │ ├── Mercurius.cfg │ ├── MoreOverlays.cfg │ ├── NEI │ │ └── client.cfg │ ├── Practical-Logistics │ │ └── Main-Config.cfg │ ├── ProjectE │ │ ├── ProjectE.cfg │ │ ├── customConversions │ │ │ ├── ODdefaults.json │ │ │ ├── defaults.json │ │ │ ├── example.json │ │ │ └── metals.json │ │ ├── custom_emc.json │ │ ├── mapping.cfg │ │ └── nbt_whitelist.json │ ├── TComplementModules.cfg │ ├── TelePastries.cfg │ ├── TinkerModules.cfg │ ├── TinkerToolLeveling.cfg │ ├── Tiny Progressions │ │ ├── Armor.cfg │ │ ├── Extras.cfg │ │ ├── Food & Drinks.cfg │ │ ├── Main.cfg │ │ ├── Ores.cfg │ │ ├── Reborn.cfg │ │ ├── Supporters.cfg │ │ └── Tools & Weapons.cfg │ ├── Waddles.cfg │ ├── WitherCrumbs │ │ ├── CustomWithers.json │ │ └── withercrumbs.cfg │ ├── acronym │ │ ├── base │ │ │ └── General.cfg │ │ ├── contenttweaker │ │ │ └── General.cfg │ │ ├── material_system.cfg │ │ └── saved │ │ │ ├── material_parts_contenttweaker-original.json │ │ │ ├── material_parts_contenttweaker.json │ │ │ ├── saved_sub_blocks_contenttweaker-original.json │ │ │ └── saved_sub_blocks_contenttweaker.json │ ├── advancementbook.cfg │ ├── animalcrops.cfg │ ├── apotheosis │ │ ├── apotheosis.cfg │ │ ├── deadly.cfg │ │ ├── enchantability.cfg │ │ ├── enchantment_module.cfg │ │ ├── enchantments.cfg │ │ ├── garden.cfg │ │ ├── names.cfg │ │ ├── potion.cfg │ │ └── spawner.cfg │ ├── appleskin.cfg │ ├── aroma1997 │ │ ├── aroma1997core.cfg │ │ ├── aromabackup.cfg │ │ └── aromabackuprecovery.cfg │ ├── astralsorcery.cfg │ ├── astralsorcery │ │ ├── aevitas_ore_perk.cfg │ │ ├── amulet_enchantments.cfg │ │ ├── fluid_rarities.cfg │ │ ├── herdable_animals_blacklist.cfg │ │ ├── mineralis_ritual.cfg │ │ ├── perk_void_trash_replacement.cfg │ │ └── treasure_shrine.cfg │ ├── baubles.cfg │ ├── bdsandm.cfg │ ├── betteradvancements │ │ └── betteradvancements.cfg │ ├── bibliocraft.cfg │ ├── bonsaitrees │ │ ├── settings.cfg │ │ ├── shapes.d │ │ │ ├── rustic_appletree001.json │ │ │ ├── rustic_appletree002.json │ │ │ ├── rustic_appletree003.json │ │ │ ├── sky_orchard_aluminum001.json │ │ │ ├── sky_orchard_aluminum002.json │ │ │ ├── sky_orchard_aluminum003.json │ │ │ ├── sky_orchard_ardite001.json │ │ │ ├── sky_orchard_ardite002.json │ │ │ ├── sky_orchard_ardite003.json │ │ │ ├── sky_orchard_bacon001.json │ │ │ ├── sky_orchard_bacon002.json │ │ │ ├── sky_orchard_bacon003.json │ │ │ ├── sky_orchard_bone001.json │ │ │ ├── sky_orchard_bone002.json │ │ │ ├── sky_orchard_bone003.json │ │ │ ├── sky_orchard_clay001.json │ │ │ ├── sky_orchard_clay002.json │ │ │ ├── sky_orchard_clay003.json │ │ │ ├── sky_orchard_coal001.json │ │ │ ├── sky_orchard_coal002.json │ │ │ ├── sky_orchard_coal003.json │ │ │ ├── sky_orchard_cobalt001.json │ │ │ ├── sky_orchard_cobalt002.json │ │ │ ├── sky_orchard_cobalt003.json │ │ │ ├── sky_orchard_cookie001.json │ │ │ ├── sky_orchard_cookie002.json │ │ │ ├── sky_orchard_cookie003.json │ │ │ ├── sky_orchard_copper001.json │ │ │ ├── sky_orchard_copper002.json │ │ │ ├── sky_orchard_copper003.json │ │ │ ├── sky_orchard_cottonwood001.json │ │ │ ├── sky_orchard_cottonwood002.json │ │ │ ├── sky_orchard_cottonwood003.json │ │ │ ├── sky_orchard_diamond001.json │ │ │ ├── sky_orchard_diamond002.json │ │ │ ├── sky_orchard_diamond003.json │ │ │ ├── sky_orchard_dirt001.json │ │ │ ├── sky_orchard_dirt002.json │ │ │ ├── sky_orchard_dirt003.json │ │ │ ├── sky_orchard_donut001.json │ │ │ ├── sky_orchard_donut002.json │ │ │ ├── sky_orchard_donut003.json │ │ │ ├── sky_orchard_emerald001.json │ │ │ ├── sky_orchard_emerald002.json │ │ │ ├── sky_orchard_emerald003.json │ │ │ ├── sky_orchard_glowstone001.json │ │ │ ├── sky_orchard_glowstone002.json │ │ │ ├── sky_orchard_glowstone003.json │ │ │ ├── sky_orchard_gold001.json │ │ │ ├── sky_orchard_gold002.json │ │ │ ├── sky_orchard_gold003.json │ │ │ ├── sky_orchard_gravel001.json │ │ │ ├── sky_orchard_gravel002.json │ │ │ ├── sky_orchard_gravel003.json │ │ │ ├── sky_orchard_iron001.json │ │ │ ├── sky_orchard_iron002.json │ │ │ ├── sky_orchard_iron003.json │ │ │ ├── sky_orchard_lapis001.json │ │ │ ├── sky_orchard_lapis002.json │ │ │ ├── sky_orchard_lapis003.json │ │ │ ├── sky_orchard_lead001.json │ │ │ ├── sky_orchard_lead002.json │ │ │ ├── sky_orchard_lead003.json │ │ │ ├── sky_orchard_netherrack001.json │ │ │ ├── sky_orchard_netherrack002.json │ │ │ ├── sky_orchard_netherrack003.json │ │ │ ├── sky_orchard_nickel001.json │ │ │ ├── sky_orchard_nickel002.json │ │ │ ├── sky_orchard_nickel003.json │ │ │ ├── sky_orchard_obsidian001.json │ │ │ ├── sky_orchard_obsidian002.json │ │ │ ├── sky_orchard_obsidian003.json │ │ │ ├── sky_orchard_osmium001.json │ │ │ ├── sky_orchard_osmium002.json │ │ │ ├── sky_orchard_osmium003.json │ │ │ ├── sky_orchard_petrified001.json │ │ │ ├── sky_orchard_petrified002.json │ │ │ ├── sky_orchard_petrified003.json │ │ │ ├── sky_orchard_prosperity001.json │ │ │ ├── sky_orchard_prosperity002.json │ │ │ ├── sky_orchard_prosperity003.json │ │ │ ├── sky_orchard_quartz001.json │ │ │ ├── sky_orchard_quartz002.json │ │ │ ├── sky_orchard_quartz003.json │ │ │ ├── sky_orchard_redstone001.json │ │ │ ├── sky_orchard_redstone002.json │ │ │ ├── sky_orchard_redstone003.json │ │ │ ├── sky_orchard_sand001.json │ │ │ ├── sky_orchard_sand002.json │ │ │ ├── sky_orchard_sand003.json │ │ │ ├── sky_orchard_silver001.json │ │ │ ├── sky_orchard_silver002.json │ │ │ ├── sky_orchard_silver003.json │ │ │ ├── sky_orchard_tin001.json │ │ │ ├── sky_orchard_tin002.json │ │ │ └── sky_orchard_tin003.json │ │ ├── soils.d │ │ │ ├── amber.json │ │ │ ├── amberMulch.json │ │ │ ├── blackMulch.json │ │ │ ├── blueMulch.json │ │ │ ├── brownMulch.json │ │ │ ├── redMulch.json │ │ │ ├── rubyMulch.json │ │ │ ├── soil.json │ │ │ └── yellowMulch.json │ │ └── types.d │ │ │ └── apple_tree.json │ ├── bookshelf.cfg │ ├── bouncy_creepers.cfg │ ├── carryon.cfg │ ├── ceramics.cfg │ ├── chargers.cfg │ ├── charset │ │ ├── charset.cfg │ │ ├── ids.cfg │ │ ├── module │ │ │ ├── lib.cfg │ │ │ └── storage.barrels.cfg │ │ └── modules.cfg │ ├── chisel.cfg │ ├── chiselsandbits.cfg │ ├── chiselsandbits_clipboard.cfg │ ├── clickmachine.cfg │ ├── clienttweaks.cfg │ ├── codechicken │ │ ├── supporters.json │ │ └── supporters.marker │ ├── codechickenlib.cfg │ ├── cofh │ │ ├── core │ │ │ ├── client.cfg │ │ │ ├── common.cfg │ │ │ └── friends.cfg │ │ ├── thermalcultivation │ │ │ ├── client.cfg │ │ │ └── common.cfg │ │ ├── thermaldynamics │ │ │ ├── client.cfg │ │ │ ├── common.cfg │ │ │ └── cover_blacklist.json │ │ ├── thermalfoundation │ │ │ ├── client.cfg │ │ │ ├── common.cfg │ │ │ └── lexicon-whitelist.cfg │ │ ├── thermalinnovation │ │ │ ├── client.cfg │ │ │ └── common.cfg │ │ └── world │ │ │ ├── 00_minecraft.json │ │ │ ├── 01_thermalfoundation_ores.json │ │ │ ├── 02_thermalfoundation_oil.json │ │ │ ├── 03_thermalfoundation_clathrates.json │ │ │ └── config.cfg │ ├── colouredtooltips.cfg │ ├── commoncapabilities.cfg │ ├── compactdrawers.cfg │ ├── compactmachines3 │ │ ├── schemas │ │ │ └── compactMachineWorld.json │ │ └── settings.cfg │ ├── compactstorage.cfg │ ├── conarm.cfg │ ├── cookingforblockheads.cfg │ ├── ctm.cfg │ ├── culinaryconstruct.cfg │ ├── customfov.cfg │ ├── cyclic_ores.cfg │ ├── cyclicmagic.cfg │ ├── cyclopscore.cfg │ ├── darkutils.cfg │ ├── deepmoblearning.cfg │ ├── defaultoptions.cfg │ ├── defaultoptions │ │ ├── keybindings.txt │ │ └── options.txt │ ├── elevatorid.cfg │ ├── enchdesc.cfg │ ├── endercore │ │ ├── cropconfig.json │ │ └── endercore.cfg │ ├── endercrop.cfg │ ├── enderstorage.cfg │ ├── enderutilities.cfg │ ├── extendedcrafting.cfg │ ├── farmingforblockheads.cfg │ ├── fastbench.cfg │ ├── fastfurnace.cfg │ ├── findme.cfg │ ├── flux_networks.cfg │ ├── foamfix.cfg │ ├── forge.cfg │ ├── forgeChunkLoading.cfg │ ├── forgivingvoid.cfg │ ├── gamestages.cfg │ ├── headcrumbs.cfg │ ├── horsepower.cfg │ ├── huntingdim │ │ ├── huntingdim.cfg │ │ └── world_generator_settings.json │ ├── ichunutil.cfg │ ├── ichunutil_keybinds.cfg │ ├── igwmod.cfg │ ├── incontrol │ │ ├── experience.json │ │ ├── loot.json │ │ ├── main.cfg │ │ ├── potentialspawn.json │ │ ├── spawn.json │ │ └── summonaid.json │ ├── industrialforegoing.cfg │ ├── inspirations.cfg │ ├── inspirationsModules.cfg │ ├── integrateddynamics.cfg │ ├── integrateddynamicscompat.cfg │ ├── integratedtunnels.cfg │ ├── integratedtunnelscompat.cfg │ ├── inventorysorter.cfg │ ├── ironjetpacks │ │ ├── ironjetpacks.cfg │ │ └── jetpacks │ │ │ ├── creative.json │ │ │ ├── electrum.json │ │ │ ├── iron.json │ │ │ ├── platinum.json │ │ │ ├── steel.json │ │ │ └── stone.json │ ├── itemstages.cfg │ ├── jei │ │ ├── itemBlacklist.cfg │ │ ├── jei.cfg │ │ └── searchColors.cfg │ ├── journeymap_ModInfo.cfg │ ├── journeymap_server.cfg │ ├── kleeslabs.cfg │ ├── laser_drill_ores │ │ ├── default_ores.json │ │ └── oredict.json │ ├── loadingscreens │ │ └── LoadingScreens.txt │ ├── lostcities │ │ ├── general.cfg │ │ ├── profile_ancient.cfg │ │ ├── profile_atlantis.cfg │ │ ├── profile_bio_wasteland.cfg │ │ ├── profile_biosphere.cfg │ │ ├── profile_cavern.cfg │ │ ├── profile_chisel.cfg │ │ ├── profile_default.cfg │ │ ├── profile_floating.cfg │ │ ├── profile_nodamage.cfg │ │ ├── profile_onlycities.cfg │ │ ├── profile_rarecities.cfg │ │ ├── profile_realistic.cfg │ │ ├── profile_safe.cfg │ │ ├── profile_space.cfg │ │ ├── profile_tallbuildings.cfg │ │ ├── profile_wasteland.cfg │ │ ├── profile_water_empty.cfg │ │ └── profile_waterbubbles.cfg │ ├── malisiscore.cfg │ ├── malisisdoors.cfg │ ├── mcjtylib.cfg │ ├── mekanism.cfg │ ├── mekanism │ │ └── BoxBlacklist.txt │ ├── microblocks.cfg │ ├── morecauldrons.cfg │ ├── morpheus.cfg │ ├── morphtool.cfg │ ├── mputils │ │ ├── addons │ │ │ └── mpbasic │ │ │ │ ├── mpbasic.cfg │ │ │ │ └── onscreen_notifications.json │ │ ├── changelog.txt │ │ ├── infopanel │ │ │ └── example │ │ │ │ ├── page1.txt │ │ │ │ ├── page2.txt │ │ │ │ ├── page3.txt │ │ │ │ └── welcome.json │ │ └── mputils.cfg │ ├── multipart.cfg │ ├── mystcraft │ │ ├── balance.cfg │ │ ├── core.cfg │ │ ├── instabilities.cfg │ │ └── symbols.cfg │ ├── mysticalagradditions.cfg │ ├── mysticalagriculture.cfg │ ├── mysticalagriculture_recipes.cfg │ ├── naturescompass.cfg │ ├── neat.cfg │ ├── nuclearcraft.cfg │ ├── ocxnetdriver.cfg │ ├── ogdragon │ │ ├── dragonloot.json │ │ └── ogdragon.cfg │ ├── opencomputers │ │ ├── default.recipes │ │ ├── gregtech.recipes │ │ ├── hardmode.recipes │ │ ├── peaceful.recipes │ │ ├── settings.conf │ │ └── user.recipes │ ├── oreexcavation.cfg │ ├── oreexcavation_groups.json │ ├── oreexcavation_overrides.json │ ├── oreexcavation_shapes.json │ ├── overpoweredarmorbar.cfg │ ├── parabox.cfg │ ├── patchouli.cfg │ ├── pdp.cfg │ ├── phosphor.json │ ├── pickletweaks.cfg │ ├── pipemaster │ │ └── settings.cfg │ ├── placebo.cfg │ ├── portalgun.cfg │ ├── prestige.cfg │ ├── prestige │ │ ├── backup_file.json │ │ └── rewards.json │ ├── primitivecrafting.cfg │ ├── randomworldname.cfg │ ├── rangedpumps.cfg │ ├── realfilingcabinet.cfg │ ├── reborncore.cfg │ ├── resize │ │ └── resize.cfg │ ├── resourcehogs │ │ ├── resourcehogs.cfg │ │ └── types │ │ │ ├── aquamarine.json │ │ │ ├── ardite.json │ │ │ ├── bone.json │ │ │ ├── boron.json │ │ │ ├── bronze.json │ │ │ ├── clay.json │ │ │ ├── coal.json │ │ │ ├── cobalt.json │ │ │ ├── cobblestone.json │ │ │ ├── copper.json │ │ │ ├── diamond.json │ │ │ ├── dilithium.json │ │ │ ├── dirt.json │ │ │ ├── electrum.json │ │ │ ├── emerald.json │ │ │ ├── ender.json │ │ │ ├── glass.json │ │ │ ├── glowstone.json │ │ │ ├── gold.json │ │ │ ├── gravel.json │ │ │ ├── invar.json │ │ │ ├── iron.json │ │ │ ├── ironbars.json │ │ │ ├── lapis.json │ │ │ ├── lead.json │ │ │ ├── lithium.json │ │ │ ├── magnesium.json │ │ │ ├── manyullyn.json │ │ │ ├── netherrack.json │ │ │ ├── nickel.json │ │ │ ├── obsidian.json │ │ │ ├── osmium.json │ │ │ ├── platinum.json │ │ │ ├── prismarine.json │ │ │ ├── quartz.json │ │ │ ├── redstone.json │ │ │ ├── sand.json │ │ │ ├── sapphire.json │ │ │ ├── seared_brick.json │ │ │ ├── silver.json │ │ │ ├── soul_sand.json │ │ │ ├── steel.json │ │ │ ├── thorium.json │ │ │ ├── tin.json │ │ │ ├── tritanium.json │ │ │ └── uranium.json │ ├── rftools │ │ └── rftoolspower.cfg │ ├── rustic.cfg │ ├── sasit.cfg │ ├── simplegenerators │ │ ├── generators │ │ │ ├── combustion │ │ │ │ └── fuels.json │ │ │ ├── culinary │ │ │ │ └── fuels.json │ │ │ ├── ender │ │ │ │ └── ender_simple.json │ │ │ ├── fluid_combustion │ │ │ │ └── fuels.json │ │ │ ├── geothermal │ │ │ │ └── fuels.json │ │ │ ├── nether │ │ │ │ └── nether_simple.json │ │ │ ├── soul │ │ │ │ └── fuels.json │ │ │ └── turbine │ │ │ │ └── fuels.json │ │ └── main.cfg │ ├── simpletomb.cfg │ ├── sky_orchards.cfg │ ├── skybonsais │ │ └── settings.cfg │ ├── skygrid.cfg │ ├── skygrid │ │ ├── end.json │ │ ├── loot.json │ │ ├── nether.json │ │ └── overworld.json │ ├── slabmachines.cfg │ ├── smoothfont │ │ └── smoothfont.cfg │ ├── snad.cfg │ ├── splash.properties │ ├── stackup.cfg │ ├── statues.cfg │ ├── stg.cfg │ ├── storagedrawers.cfg │ ├── storagenetwork.cfg │ ├── supersoundmuffler.cfg │ ├── surge.cfg │ ├── sync.cfg │ ├── tcomplement.cfg │ ├── tconstruct.cfg │ ├── teslacorelib.cfg │ ├── tickprofiler.cfg │ ├── tips.cfg │ ├── toastcontrol.cfg │ ├── togetherforever.cfg │ ├── topography │ │ ├── BnB2 │ │ │ └── Icy Cell Nether.txt │ │ ├── SF4 │ │ │ ├── astral_sorcery.txt │ │ │ ├── bedrock_cage.txt │ │ │ ├── bedrock_floor_and_ceiling.txt │ │ │ ├── cave_dimension.txt │ │ │ ├── classic_mode.txt │ │ │ ├── data │ │ │ │ └── unlocks.txt │ │ │ ├── diamonds.txt │ │ │ ├── dirt_tree.txt │ │ │ ├── dirt_tree_chunk.txt │ │ │ ├── dirt_tree_cobblestone.txt │ │ │ ├── dirt_tree_cobwebs.txt │ │ │ ├── dirt_tree_gelid_cryotheum.txt │ │ │ ├── dirt_tree_lava_ocean.txt │ │ │ ├── dirt_tree_no_skylight.txt │ │ │ ├── dirt_tree_pyrotheum_ocean.txt │ │ │ ├── dirt_tree_resonant_ender_ocean.txt │ │ │ ├── dirt_tree_silverfish.txt │ │ │ ├── dirt_tree_sludge_ocean.txt │ │ │ ├── dirt_tree_tnt.txt │ │ │ ├── dirt_tree_water_ocean.txt │ │ │ ├── end │ │ │ │ ├── end_bedrock_cage.txt │ │ │ │ ├── end_chunk.txt │ │ │ │ ├── end_compact_machines.txt │ │ │ │ ├── end_sky_crash_factory_landing.txt │ │ │ │ └── end_stone_cage.txt │ │ │ ├── glass_cage.txt │ │ │ ├── hardcore_no_skylight.txt │ │ │ ├── hardcore_skylight.txt │ │ │ ├── hunting_dimension │ │ │ │ └── hunting_compact_machines.txt │ │ │ ├── lava_cage.txt │ │ │ ├── lost_cities │ │ │ │ └── lost_cities_compact_machines.txt │ │ │ ├── nether │ │ │ │ ├── nether_cage.txt │ │ │ │ ├── nether_caves.txt │ │ │ │ ├── nether_cell.txt │ │ │ │ ├── nether_chunk.txt │ │ │ │ ├── nether_compact_machines.txt │ │ │ │ ├── nether_ender.txt │ │ │ │ ├── nether_fortress.txt │ │ │ │ ├── nether_hardcore.txt │ │ │ │ ├── nether_hedge_maze.txt │ │ │ │ ├── nether_pyrotheum.txt │ │ │ │ ├── nether_sky_crash_factory_landing.txt │ │ │ │ ├── nether_sludge.txt │ │ │ │ ├── nether_stone.txt │ │ │ │ ├── nether_stone_cage.txt │ │ │ │ ├── nether_sunken.txt │ │ │ │ ├── nether_tnt.txt │ │ │ │ └── nether_water.txt │ │ │ ├── overworld_large_tree.txt │ │ │ ├── pacifist.txt │ │ │ ├── project_e.txt │ │ │ ├── resonant_ender_cage.txt │ │ │ ├── sky_crash_factory_landing.txt │ │ │ ├── stone_cage.txt │ │ │ ├── testing_world.txt │ │ │ ├── tutorial.txt │ │ │ ├── twilight_forest │ │ │ │ └── twilight_compact_machines.txt │ │ │ └── village.txt │ │ ├── Sky Islands │ │ │ ├── basic_sky_islands.txt │ │ │ ├── end_glass_and_lava_sky_islands.txt │ │ │ ├── end_material_islands.txt │ │ │ ├── glass_and_lava_sky_islands.txt │ │ │ ├── material_sky_islands.txt │ │ │ ├── material_sky_islands_nether.txt │ │ │ ├── nether_glass_and_lava_sky_islands.txt │ │ │ └── nether_sky_islands.txt │ │ ├── Topography.txt │ │ ├── images │ │ │ ├── Amplified.png │ │ │ ├── AstralSorcery.png │ │ │ ├── Bedrock.png │ │ │ ├── BedrockChunk.png │ │ │ ├── CaveDimension.png │ │ │ ├── Chunkmk2.png │ │ │ ├── Cobblestonemk2.png │ │ │ ├── Cobwebmk2.png │ │ │ ├── CompactMachines.png │ │ │ ├── CrashLanding.png │ │ │ ├── Cryotheummk2.png │ │ │ ├── Default.png │ │ │ ├── EncasedStonemk2.png │ │ │ ├── EnderCage.png │ │ │ ├── Flat.png │ │ │ ├── GlassLavaIslandsmk2.png │ │ │ ├── HardcoreNoLightmk2.png │ │ │ ├── HardcoreSkylightmk2.png │ │ │ ├── LargeBiomes.png │ │ │ ├── LavaCage.png │ │ │ ├── Lavamk2.png │ │ │ ├── LostCities.png │ │ │ ├── NoSkylightmk2.png │ │ │ ├── ProjectEmk2.png │ │ │ ├── Pyrotheummk2.png │ │ │ ├── ResonantEndermk2.png │ │ │ ├── ResourceIslandsmk2.png │ │ │ ├── SF4mk2.png │ │ │ ├── SkyFactreemk2.png │ │ │ ├── SkyGrid.png │ │ │ ├── SkyIslandsmk2.png │ │ │ ├── Sludgemk2.png │ │ │ ├── Stonemk2.png │ │ │ ├── TNTmk2.png │ │ │ ├── Tutorial.png │ │ │ ├── Villagemk3.png │ │ │ ├── WaterCage.png │ │ │ └── Watermk2.png │ │ └── structures │ │ │ ├── astralsorcery.nbt │ │ │ ├── basic tree.nbt │ │ │ ├── bedrockcage.nbt │ │ │ ├── bedrockcageend.nbt │ │ │ ├── bedrockcagev2.nbt │ │ │ ├── chunk_dirt_tree.nbt │ │ │ ├── compactmachinesend.nbt │ │ │ ├── compactmachineshuntingdimension.nbt │ │ │ ├── compactmachineslostcities.nbt │ │ │ ├── compactmachinesnether.nbt │ │ │ ├── compactmachinestwilightforest.nbt │ │ │ ├── crashedpod.nbt │ │ │ ├── diamonds.nbt │ │ │ ├── dirt_tree.nbt │ │ │ ├── dungeon.nbt │ │ │ ├── endcage.nbt │ │ │ ├── endchuck.nbt │ │ │ ├── glasscage.nbt │ │ │ ├── hardcoretree.nbt │ │ │ ├── hedgemaze2.nbt │ │ │ ├── hogwarts.nbt │ │ │ ├── nethercage.nbt │ │ │ ├── netherchuck.nbt │ │ │ ├── netherstonecage.nbt │ │ │ ├── projecte.nbt │ │ │ ├── stonetest.nbt │ │ │ ├── tutorial.nbt │ │ │ ├── twilighttree.nbt │ │ │ ├── twilighttree2.nbt │ │ │ ├── village.nbt │ │ │ ├── villagemk3.nbt │ │ │ ├── villagetest.nbt │ │ │ └── villagev2.nbt │ ├── torchmaster.cfg │ ├── totemic.cfg │ ├── translocators.cfg │ ├── treegrowingsimulator.cfg │ ├── triumph │ │ ├── Triumph.txt │ │ ├── functions │ │ │ ├── bedrock_world_start.txt │ │ │ ├── classic_mode.txt │ │ │ ├── compact_machines.txt │ │ │ ├── default_world_ore.txt │ │ │ ├── difficulty_normal.txt │ │ │ ├── difficulty_peaceful.txt │ │ │ ├── dragon_loot.txt │ │ │ ├── forgiving_void_disable.txt │ │ │ ├── forgiving_void_enable.txt │ │ │ ├── give_cake.txt │ │ │ ├── lost_cities.txt │ │ │ ├── non_pacifist.txt │ │ │ ├── pacifist_lost.txt │ │ │ ├── pacifist_start.txt │ │ │ ├── prestige_add.txt │ │ │ ├── prestige_notify.txt │ │ │ ├── project_e.txt │ │ │ ├── sky_islands_start.txt │ │ │ ├── skygrid_start.txt │ │ │ ├── start_compact_machines.txt │ │ │ ├── start_standard.txt │ │ │ ├── start_tutorial.txt │ │ │ └── startingitems.txt │ │ └── script │ │ │ ├── amplified │ │ │ └── amplified │ │ │ │ └── root.txt │ │ │ ├── compactmachines │ │ │ └── test │ │ │ │ ├── 11x11x11.txt │ │ │ │ ├── 11x11x112.txt │ │ │ │ ├── 13x13x13.txt │ │ │ │ ├── 13x13x132.txt │ │ │ │ ├── 3x3x3.txt │ │ │ │ ├── 5x5x5.txt │ │ │ │ ├── 5x5x52.txt │ │ │ │ ├── 7x7x7.txt │ │ │ │ ├── 7x7x72.txt │ │ │ │ ├── 9x9x9.txt │ │ │ │ ├── 9x9x92.txt │ │ │ │ └── root.txt │ │ │ ├── customized │ │ │ └── customized │ │ │ │ └── root.txt │ │ │ ├── default │ │ │ └── default │ │ │ │ └── root.txt │ │ │ ├── hardcore │ │ │ └── hardcore │ │ │ │ ├── forgivingvoid.txt │ │ │ │ ├── root.txt │ │ │ │ ├── shell_constructor.txt │ │ │ │ ├── shell_storage.txt │ │ │ │ └── survive.txt │ │ │ ├── large_biomes │ │ │ └── large_biomes │ │ │ │ └── root.txt │ │ │ ├── lost_cities │ │ │ └── lost_cities │ │ │ │ └── root.txt │ │ │ ├── pacifist │ │ │ └── pacifist_run │ │ │ │ ├── lose.txt │ │ │ │ ├── peaceful.txt │ │ │ │ └── root.txt │ │ │ ├── prestige │ │ │ └── prestige │ │ │ │ ├── clock.txt │ │ │ │ ├── energy_cube.txt │ │ │ │ ├── parabox.txt │ │ │ │ ├── parabox_two.txt │ │ │ │ ├── root.txt │ │ │ │ └── space_time_equalizer.txt │ │ │ ├── projecte │ │ │ └── projecte │ │ │ │ └── root.txt │ │ │ ├── sf4 │ │ │ ├── age1 │ │ │ │ ├── acorn │ │ │ │ │ ├── dirt.txt │ │ │ │ │ └── dirt_cooked.txt │ │ │ │ ├── amber │ │ │ │ │ ├── gold.txt │ │ │ │ │ ├── iron.txt │ │ │ │ │ ├── lead.txt │ │ │ │ │ ├── silver.txt │ │ │ │ │ └── tin.txt │ │ │ │ ├── cauldron.txt │ │ │ │ ├── clay_bucket.txt │ │ │ │ ├── coal.txt │ │ │ │ ├── cobblestone.txt │ │ │ │ ├── cobblestone_generator.txt │ │ │ │ ├── complete.txt │ │ │ │ ├── completenoprestige.txt │ │ │ │ ├── crushing_tub.txt │ │ │ │ ├── diamond.txt │ │ │ │ ├── dirt.txt │ │ │ │ ├── drying_rack.txt │ │ │ │ ├── green_slimy_dirt.txt │ │ │ │ ├── iron_bucket.txt │ │ │ │ ├── iron_ingot.txt │ │ │ │ ├── lava.txt │ │ │ │ ├── lavasource.txt │ │ │ │ ├── nonpacifist.txt │ │ │ │ ├── obsidian.txt │ │ │ │ ├── prestige_notify.txt │ │ │ │ ├── resourcehogs.txt │ │ │ │ ├── root.txt │ │ │ │ ├── sapling.txt │ │ │ │ ├── sapling │ │ │ │ │ ├── bacon.txt │ │ │ │ │ ├── bone.txt │ │ │ │ │ ├── clay.txt │ │ │ │ │ ├── coal.txt │ │ │ │ │ ├── cottonwood.txt │ │ │ │ │ ├── diamond.txt │ │ │ │ │ ├── dirt.txt │ │ │ │ │ ├── donut.txt │ │ │ │ │ ├── gold.txt │ │ │ │ │ ├── gravel.txt │ │ │ │ │ ├── iron.txt │ │ │ │ │ ├── lapis.txt │ │ │ │ │ ├── lead.txt │ │ │ │ │ ├── petrified.txt │ │ │ │ │ ├── redstone.txt │ │ │ │ │ ├── sand.txt │ │ │ │ │ ├── silver.txt │ │ │ │ │ ├── slime.txt │ │ │ │ │ └── tin.txt │ │ │ │ ├── slabs.txt │ │ │ │ ├── sleep.txt │ │ │ │ ├── stone_crook.txt │ │ │ │ ├── string.txt │ │ │ │ ├── twerk.txt │ │ │ │ ├── water.txt │ │ │ │ ├── watersource.txt │ │ │ │ └── wooden_crook.txt │ │ │ ├── age_allthethingsomglol │ │ │ │ ├── 16384kstoragecell.txt │ │ │ │ ├── 4086kgasstoragecell.txt │ │ │ │ ├── 4096fluidstoragecell.txt │ │ │ │ ├── armormodifiers.txt │ │ │ │ ├── blackholetank.txt │ │ │ │ ├── blackholeunit.txt │ │ │ │ ├── complete.txt │ │ │ │ ├── complete_no_prestige.txt │ │ │ │ ├── cookie.txt │ │ │ │ ├── cookiesingularityjar.txt │ │ │ │ ├── darkosandwich.txt │ │ │ │ ├── filecabinet.txt │ │ │ │ ├── fissionreactor.txt │ │ │ │ ├── fullyupgradedsimplegenerator.txt │ │ │ │ ├── fusionreactor.txt │ │ │ │ ├── maxedspawner.txt │ │ │ │ ├── maxsizefusionreactor.txt │ │ │ │ ├── maxsizereactor.txt │ │ │ │ ├── modifiermaster.txt │ │ │ │ ├── nuclearcraftenergyupgrade.txt │ │ │ │ ├── nuclearcraftfusionreactor.txt │ │ │ │ ├── octuplecompressednetherrackblock.txt │ │ │ │ ├── octuplecompressedsugarcane.txt │ │ │ │ ├── pristinematter.txt │ │ │ │ ├── quantumcompressor.txt │ │ │ │ ├── root.txt │ │ │ │ ├── singularitybacon.txt │ │ │ │ ├── singularitydonut.txt │ │ │ │ ├── singularityultimate.txt │ │ │ │ ├── smore.txt │ │ │ │ ├── statues.txt │ │ │ │ ├── truffles.txt │ │ │ │ └── yoyomaster.txt │ │ │ ├── age_enhancement │ │ │ │ ├── 20damage.txt │ │ │ │ ├── alloytank.txt │ │ │ │ ├── armorforge.txt │ │ │ │ ├── armorstation.txt │ │ │ │ ├── cast.txt │ │ │ │ ├── complete.txt │ │ │ │ ├── completenoprestige.txt │ │ │ │ ├── craftingupgrade.txt │ │ │ │ ├── enchantmenttable.txt │ │ │ │ ├── enderpouch.txt │ │ │ │ ├── energyupgrade.txt │ │ │ │ ├── glitcharmor.txt │ │ │ │ ├── heartcontainer.txt │ │ │ │ ├── heater.txt │ │ │ │ ├── inventoryupgrade.txt │ │ │ │ ├── levelup.txt │ │ │ │ ├── lumberaxe.txt │ │ │ │ ├── melter.txt │ │ │ │ ├── mufflingupgrade.txt │ │ │ │ ├── nuclearcraftspeedupgrade.txt │ │ │ │ ├── partbuilder.txt │ │ │ │ ├── patternchest.txt │ │ │ │ ├── paxel.txt │ │ │ │ ├── root.txt │ │ │ │ ├── speedupgrade.txt │ │ │ │ ├── stenciltable.txt │ │ │ │ ├── tank.txt │ │ │ │ ├── tconmodifier.txt │ │ │ │ ├── toolforge.txt │ │ │ │ ├── toolstation.txt │ │ │ │ ├── unbreakablepickaxe.txt │ │ │ │ ├── weirdinggadget.txt │ │ │ │ └── yoyo.txt │ │ │ ├── age_exploration │ │ │ │ ├── arditeore.txt │ │ │ │ ├── boronore.txt │ │ │ │ ├── cobaltore.txt │ │ │ │ ├── compactmachines.txt │ │ │ │ ├── complete.txt │ │ │ │ ├── completenoprestige.txt │ │ │ │ ├── dilithiumore.txt │ │ │ │ ├── dragonbreath.txt │ │ │ │ ├── dragonkill.txt │ │ │ │ ├── elytra.txt │ │ │ │ ├── endcake.txt │ │ │ │ ├── floaty.txt │ │ │ │ ├── huntingdimension.txt │ │ │ │ ├── lithiumore.txt │ │ │ │ ├── lostcities.txt │ │ │ │ ├── lostcitiesworld.txt │ │ │ │ ├── magnesiumore.txt │ │ │ │ ├── nether.txt │ │ │ │ ├── overworldcake.txt │ │ │ │ ├── root.txt │ │ │ │ ├── skygriddragonkill.txt │ │ │ │ ├── thoriumore.txt │ │ │ │ ├── tritaniumore.txt │ │ │ │ ├── twilightforest.txt │ │ │ │ ├── uraniumore.txt │ │ │ │ ├── viescraft.txt │ │ │ │ ├── waterinnether.txt │ │ │ │ └── witherkill.txt │ │ │ ├── age_farming │ │ │ │ ├── ambermulch.txt │ │ │ │ ├── animalseeds.txt │ │ │ │ ├── blackmulch.txt │ │ │ │ ├── bluemulch.txt │ │ │ │ ├── bonsai.txt │ │ │ │ ├── brownmulch.txt │ │ │ │ ├── chickenfeed.txt │ │ │ │ ├── complete.txt │ │ │ │ ├── complete_no_prestige.txt │ │ │ │ ├── cowjar.txt │ │ │ │ ├── enderseeds.txt │ │ │ │ ├── fenceoverhaul.txt │ │ │ │ ├── fertilesoil.txt │ │ │ │ ├── hoppingbonsai.txt │ │ │ │ ├── hydrogel.txt │ │ │ │ ├── magicbeans.txt │ │ │ │ ├── market.txt │ │ │ │ ├── mattock.txt │ │ │ │ ├── mobswab.txt │ │ │ │ ├── redmulch.txt │ │ │ │ ├── root.txt │ │ │ │ ├── rubymulch.txt │ │ │ │ ├── skyorchards.txt │ │ │ │ ├── spawnegg.txt │ │ │ │ ├── sprinkler.txt │ │ │ │ ├── sugarcaneseed.txt │ │ │ │ ├── sugarcanesnad.txt │ │ │ │ ├── wateringcan.txt │ │ │ │ ├── wheatseeds.txt │ │ │ │ └── yellowmulch.txt │ │ │ ├── age_power │ │ │ │ ├── alloyfurnace.txt │ │ │ │ ├── autoclicker.txt │ │ │ │ ├── autopackager.txt │ │ │ │ ├── buildinggadget.txt │ │ │ │ ├── charger1.txt │ │ │ │ ├── charger2.txt │ │ │ │ ├── charger3.txt │ │ │ │ ├── complete.txt │ │ │ │ ├── completenoprestige.txt │ │ │ │ ├── configurator.txt │ │ │ │ ├── deeplearner.txt │ │ │ │ ├── dehydrator.txt │ │ │ │ ├── energizedsmelter.txt │ │ │ │ ├── exchangertool.txt │ │ │ │ ├── extractionchamber.txt │ │ │ │ ├── extraterrestrialmatter.txt │ │ │ │ ├── froster.txt │ │ │ │ ├── hellishmatter.txt │ │ │ │ ├── informationscreen.txt │ │ │ │ ├── ingotformer.txt │ │ │ │ ├── melter.txt │ │ │ │ ├── overworldianmatter.txt │ │ │ │ ├── powercellhigh.txt │ │ │ │ ├── powercelllow.txt │ │ │ │ ├── powercellmedium.txt │ │ │ │ ├── pristineendermanmatter.txt │ │ │ │ ├── pristineghastmatter.txt │ │ │ │ ├── pristinewitherskeletonmatter.txt │ │ │ │ ├── pristinezombiematter.txt │ │ │ │ ├── root.txt │ │ │ │ ├── simplegenerator.txt │ │ │ │ ├── simulationchamber.txt │ │ │ │ ├── speedmodifier.txt │ │ │ │ ├── treadmill.txt │ │ │ │ ├── twilightmatter.txt │ │ │ │ ├── ultimateinstaller.txt │ │ │ │ ├── uncraftinggrinder.txt │ │ │ │ ├── upgradeablegenerators.txt │ │ │ │ ├── wirelesscharger.txt │ │ │ │ └── zombiedatamodel.txt │ │ │ └── age_storage │ │ │ │ ├── 1kstoragecell.txt │ │ │ │ ├── ae2energycell.txt │ │ │ │ ├── bdsandmmetalbarrel.txt │ │ │ │ ├── bdsandmmetalcrate.txt │ │ │ │ ├── bdsandmshippingcontainer.txt │ │ │ │ ├── bdsandmupgrade1.txt │ │ │ │ ├── bdsandmupgrade2.txt │ │ │ │ ├── bdsandmupgrade3.txt │ │ │ │ ├── bdsandmupgrade4.txt │ │ │ │ ├── bdsandmupgrade5.txt │ │ │ │ ├── bdsandmupgrade6.txt │ │ │ │ ├── bdsandmwoodenbarrel.txt │ │ │ │ ├── bdsandmwoodencrate.txt │ │ │ │ ├── calculationpress.txt │ │ │ │ ├── compactstoragebackpack.txt │ │ │ │ ├── compactstoragechest.txt │ │ │ │ ├── complete.txt │ │ │ │ ├── complete_no_prestige.txt │ │ │ │ ├── drivebay.txt │ │ │ │ ├── energyacceptor.txt │ │ │ │ ├── engineeringpress.txt │ │ │ │ ├── fluixcrystal.txt │ │ │ │ ├── hopper.txt │ │ │ │ ├── logicpress.txt │ │ │ │ ├── logicprocessor.txt │ │ │ │ ├── meterminal.txt │ │ │ │ ├── root.txt │ │ │ │ ├── siliconpress.txt │ │ │ │ ├── simplestoragecable.txt │ │ │ │ ├── simplestoragecontroller.txt │ │ │ │ ├── simplestoragemaster.txt │ │ │ │ ├── simplestorageremote.txt │ │ │ │ ├── simplestoragerequest.txt │ │ │ │ ├── uninstallupgrade.txt │ │ │ │ ├── upper.txt │ │ │ │ └── woodenhopper.txt │ │ │ ├── sky_crash_factory_landing │ │ │ └── sky_crash_factory_landing │ │ │ │ └── root.txt │ │ │ ├── sky_islands │ │ │ └── sky_islands │ │ │ │ └── root.txt │ │ │ ├── skygrid │ │ │ └── skygrid │ │ │ │ └── root.txt │ │ │ ├── superflat │ │ │ └── superflat │ │ │ │ └── root.txt │ │ │ ├── tutorial │ │ │ └── tutorial │ │ │ │ ├── copied │ │ │ │ ├── cauldron.txt │ │ │ │ ├── claybucket.txt │ │ │ │ ├── claysapling.txt │ │ │ │ ├── coalsapling.txt │ │ │ │ ├── cobblestone.txt │ │ │ │ ├── crushingtub.txt │ │ │ │ ├── diamond.txt │ │ │ │ ├── diamondsapling.txt │ │ │ │ ├── gold.txt │ │ │ │ ├── goldsapling.txt │ │ │ │ ├── gravelsapling.txt │ │ │ │ ├── greenslimydirt.txt │ │ │ │ ├── iron.txt │ │ │ │ ├── ironbucket.txt │ │ │ │ ├── ironingot.txt │ │ │ │ ├── ironsapling.txt │ │ │ │ ├── lava.txt │ │ │ │ ├── obsidian.txt │ │ │ │ ├── petrifiedsapling.txt │ │ │ │ ├── resourcehogs.txt │ │ │ │ ├── sandsapling.txt │ │ │ │ ├── slabs.txt │ │ │ │ ├── sleep.txt │ │ │ │ ├── slimesapling.txt │ │ │ │ ├── string.txt │ │ │ │ ├── water.txt │ │ │ │ └── watercollection.txt │ │ │ │ ├── craftingstation.txt │ │ │ │ ├── dirtsapling.txt │ │ │ │ ├── dryingrack.txt │ │ │ │ ├── nonpacifist.txt │ │ │ │ ├── oakplanks.txt │ │ │ │ ├── oakwood.txt │ │ │ │ ├── petrifiedacorn.txt │ │ │ │ ├── placedirtsapling.txt │ │ │ │ ├── placeoak.txt │ │ │ │ ├── root.txt │ │ │ │ └── woodencrook.txt │ │ │ └── twilightforest │ │ │ ├── experiment_115.txt │ │ │ ├── experiment_115_115.txt │ │ │ ├── hydra_chop.txt │ │ │ ├── progress_labyrinth.txt │ │ │ └── twilight_dinner.txt │ ├── twilightforest.cfg │ ├── twitchcrumbs.cfg │ ├── unloader.cfg │ ├── valkyrielib │ │ └── main.cfg │ ├── vanillafix.cfg │ ├── vc │ │ └── vc.cfg │ ├── waila │ │ ├── theme │ │ │ ├── dark.json │ │ │ └── vanilla.json │ │ └── waila.cfg │ ├── walljump.cfg │ ├── wawla.cfg │ ├── weirdinggadget.cfg │ ├── wopper.cfg │ ├── worldstripper.cfg │ ├── worldutils.cfg │ ├── xlfoodmod.cfg │ ├── xnet │ │ └── xnet.cfg │ ├── ynot.cfg │ └── yoyos.cfg ├── fontfiles │ ├── Odin Rounded - Bold Italic.otf │ ├── Odin Rounded - Bold.otf │ ├── Odin Rounded - Light Italic.otf │ ├── Odin Rounded - Light.otf │ ├── Odin Rounded - Regular Italic.otf │ └── Odin Rounded - Regular.otf ├── oresources │ └── minecraft │ │ └── textures │ │ └── gui │ │ └── options_background.png ├── resources │ ├── appliedenergistics2 │ │ └── textures │ │ │ └── items │ │ │ ├── material_calculation_processor.png │ │ │ └── material_calculation_processor_print.png │ ├── assets │ │ ├── bouncy_creepers │ │ │ └── sounds │ │ │ │ ├── bouncy_creeper_boing.ogg │ │ │ │ ├── bouncy_creeper_death.ogg │ │ │ │ ├── bouncy_creeper_hurt.ogg │ │ │ │ ├── bouncy_creeper_inflate.ogg │ │ │ │ └── bouncy_creeper_popping.ogg │ │ ├── cookingforblockheads │ │ │ └── compat │ │ │ │ └── horsepower.json │ │ └── fml │ │ │ └── textures │ │ │ └── gui │ │ │ └── loading_animation.gif │ ├── bouncy_creepers │ │ └── sounds │ │ │ ├── bouncy_creeper_boing.ogg │ │ │ ├── bouncy_creeper_death.ogg │ │ │ ├── bouncy_creeper_hurt.ogg │ │ │ ├── bouncy_creeper_inflate.ogg │ │ │ └── bouncy_creeper_popping.ogg │ ├── compactstorage │ │ └── textures │ │ │ └── gui │ │ │ ├── chest.png │ │ │ └── chestslots.png │ ├── contenttweaker │ │ ├── blockstates │ │ │ ├── bacon.json │ │ │ ├── compact_machine_end_wall.json │ │ │ ├── compact_machine_hunting_dimension_wall.json │ │ │ ├── compact_machine_lost_cities_wall.json │ │ │ ├── compact_machine_nether_wall.json │ │ │ ├── compact_machine_twilight_forest_wall.json │ │ │ ├── cookie_dough.json │ │ │ ├── donut.json │ │ │ ├── dust.json │ │ │ ├── materials │ │ │ │ ├── ardite_ore_minecraft_ice_packed.json │ │ │ │ ├── cobalt_ore_minecraft_ice_packed.json │ │ │ │ ├── modularium_molten.json │ │ │ │ ├── osmium_molten.json │ │ │ │ ├── quartz_ore_minecraft_ice_packed.json │ │ │ │ └── reinforced_obsidian_molten.json │ │ │ ├── mud.json │ │ │ └── sugarwater.json │ │ ├── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ │ ├── models │ │ │ └── item │ │ │ │ ├── ardite_dust.json │ │ │ │ ├── cobalt_dust.json │ │ │ │ └── cobblestone_circuit_mold.json │ │ └── textures │ │ │ ├── blocks │ │ │ ├── compact_machine_end_wall.png │ │ │ ├── compact_machine_hunting_dimension_wall.png │ │ │ ├── compact_machine_lost_cities_wall.png │ │ │ ├── compact_machine_nether_wall.png │ │ │ ├── compact_machine_twilight_forest_wall.png │ │ │ └── dust.png │ │ │ └── item │ │ │ └── cobblestone_circuit_mold.png │ ├── minecraft │ │ └── textures │ │ │ └── gui │ │ │ └── options_background.png │ ├── pack.mcmeta │ ├── sky_orchards │ │ └── blockstates │ │ │ └── ore_sapling.json │ ├── skyfactory4 │ │ └── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ └── test │ │ └── textures │ │ ├── colors │ │ ├── bedrock.png │ │ ├── black.png │ │ ├── clear_sky.png │ │ ├── cyan.png │ │ ├── dark_gray.png │ │ ├── dark_purple.png │ │ ├── green.png │ │ ├── grey.png │ │ ├── grid.png │ │ ├── light_blue.png │ │ ├── orange.png │ │ ├── purple.png │ │ ├── red.png │ │ ├── sky.png │ │ └── sky_blue.png │ │ ├── gui │ │ └── title │ │ │ └── background │ │ │ ├── alpha.png │ │ │ ├── background.png │ │ │ ├── bg.png │ │ │ ├── bg2.png │ │ │ ├── bg_full.png │ │ │ ├── button.png │ │ │ ├── lang.png │ │ │ ├── longbutton.png │ │ │ ├── midbutton.png │ │ │ ├── shortbutton.png │ │ │ ├── text.png │ │ │ └── tree.png │ │ └── skybox │ │ ├── day.png │ │ └── night.png └── scripts │ ├── contenttweaker │ ├── blocks.zs │ ├── fluids.zs │ ├── items.zs │ ├── materials │ │ ├── init.zs │ │ ├── largeScale.zs │ │ ├── misc.zs │ │ └── utils.zs │ └── postInit.zs │ └── crafttweaker │ ├── classes │ ├── init.zs │ ├── initUnifier.zs │ ├── mods │ │ ├── appliedEnergistics.zs │ │ ├── astralSorcery.zs │ │ ├── cyclic.zs │ │ ├── horsePower.zs │ │ ├── industrialForegoing.zs │ │ ├── inspirations.zs │ │ ├── integratedDynamics.zs │ │ ├── mekanism.zs │ │ ├── nuclearCraft.zs │ │ ├── practicalLogistics.zs │ │ ├── prestige.zs │ │ ├── rustic.zs │ │ └── tinkers.zs │ ├── resources │ │ ├── resource.zs │ │ ├── resourceHogType.zs │ │ └── skyOrchardsType.zs │ └── utils │ │ ├── recipeUtil.zs │ │ └── unifier.zs │ ├── craftingUtils.zs │ ├── env.dev.zs │ ├── env.production.zs │ ├── grassSeedDrop.zs │ ├── itemModifiers │ ├── burnTime.zs │ ├── hardness.zs │ ├── harvestLevel.zs │ ├── hide.zs │ ├── rename.zs │ └── tooltips.zs │ ├── modIntegrations │ ├── appliedEnergistics2.zs │ ├── bonsaitrees.zs │ ├── cyclic.zs │ ├── horsePower.zs │ ├── industrialForegoing.zs │ ├── inspirations.zs │ ├── integratedDynamics.zs │ ├── mekanism.zs │ ├── nuclearcraft.zs │ ├── practicalLogistics.zs │ ├── rustic.zs │ └── tinkers.zs │ ├── oredict │ ├── carpet.zs │ ├── cauldron.zs │ ├── leaves.zs │ ├── misc.zs │ └── mods │ │ ├── appliedEnergistics2.zs │ │ ├── industrialForegoing.zs │ │ ├── matteroverdrive.zs │ │ ├── thermalFoundation.zs │ │ └── twilightForest.zs │ ├── postInit.zs │ ├── preInit.zs │ ├── prestige.zs │ ├── recipes │ ├── furnace.zs │ ├── mods │ │ ├── animalcrops.zs │ │ ├── appliedEnergistics2.zs │ │ ├── astralSorcery.zs │ │ ├── bdsandm.zs │ │ ├── chineseworkshop.zs │ │ ├── clickMachine.zs │ │ ├── cookingForBlockheads.zs │ │ ├── cyclic.zs │ │ ├── darkutils.zs │ │ ├── deepMobLearning.zs │ │ ├── extraCells.zs │ │ ├── iChunUtil.zs │ │ ├── industrialForegoing.zs │ │ ├── inspirations.zs │ │ ├── ironJetpacks.zs │ │ ├── malisisdoors.zs │ │ ├── matterOverdrive.zs │ │ ├── mekanism.zs │ │ ├── microblockcbe.zs │ │ ├── minecraft.zs │ │ ├── mysticalAgriculture.zs │ │ ├── nuclearcraft.zs │ │ ├── parabox.zs │ │ ├── primitiveCrafting.zs │ │ ├── projecte.zs │ │ ├── resourceHogs.zs │ │ ├── rftools.zs │ │ ├── rustic.zs │ │ ├── skyOrchards.zs │ │ ├── slabMachines.zs │ │ ├── sonarcore.zs │ │ ├── statues.zs │ │ ├── tconstruct.zs │ │ ├── telepastries.zs │ │ ├── thermalFoundation.zs │ │ ├── tinyProgressions.zs │ │ ├── torchmaster.zs │ │ ├── twilightForest.zs │ │ ├── valkyrieLib.zs │ │ └── xlfoods.zs │ ├── removeAndHide.zs │ └── removeCategory.zs │ ├── resources │ ├── init.zs │ ├── resourceHogs.zs │ ├── resources.zs │ ├── skyOrchards.zs │ └── unify.zs │ ├── stages.zs │ ├── staging │ ├── containers.zs │ ├── dimensions.zs │ ├── itemsAndRecipes │ │ ├── items │ │ │ ├── amberMulch.zs │ │ │ ├── android.zs │ │ │ ├── blackMulch.zs │ │ │ ├── blueMulch.zs │ │ │ ├── blueSlimeDirt.zs │ │ │ ├── bonsaiTrees.zs │ │ │ ├── brownMulch.zs │ │ │ ├── fertileSoil.zs │ │ │ ├── megaTorch.zs │ │ │ ├── mobGrindingUtils.zs │ │ │ ├── nonPacifist.zs │ │ │ ├── orangeSlimeDirt.zs │ │ │ ├── paraboxTwo.zs │ │ │ ├── prosperityTree.zs │ │ │ ├── purpleSlimeDirt.zs │ │ │ ├── redMulch.zs │ │ │ ├── rubyMulch.zs │ │ │ ├── smeltery.zs │ │ │ ├── twilightForest.zs │ │ │ └── yellowMulch.zs │ │ ├── modId.zs │ │ └── stages.zs │ └── tooltips.zs │ └── utils.zs └── util └── localiser.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---client-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/ISSUE_TEMPLATE/---client-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---mod-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/ISSUE_TEMPLATE/---mod-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---server-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/ISSUE_TEMPLATE/---server-bug-report.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/support.yml -------------------------------------------------------------------------------- /.github/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/triage.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/README.md -------------------------------------------------------------------------------- /docs/examples/modRecipe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/examples/modRecipe.zs -------------------------------------------------------------------------------- /docs/mods/triumph/Triumph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/Triumph.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/DamageData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/DamageData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/DamageSourceData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/DamageSourceData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/DimensionData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/DimensionData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/DistanceData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/DistanceData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/EntityData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/EntityData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/ItemBlockData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/ItemBlockData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/LocationData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/LocationData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/dataObjects/PotionEffectData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/dataObjects/PotionEffectData.txt -------------------------------------------------------------------------------- /docs/mods/triumph/script/ScriptAdvancement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/script/ScriptAdvancement.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/example/example_all_rewards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/example/example_all_rewards.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/example/example_break_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/example/example_break_block.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/example/example_count.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/example/example_count.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/example/example_enter_biome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/example/example_enter_biome.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/example/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/example/root.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/adventure/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/adventure/root.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/adventure/trade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/adventure/trade.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/end/dragon_breath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/end/dragon_breath.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/end/dragon_egg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/end/dragon_egg.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/end/elytra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/end/elytra.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/end/find_end_city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/end/find_end_city.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/end/kill_dragon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/end/kill_dragon.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/end/levitate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/end/levitate.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/end/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/end/root.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/husbandry/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/husbandry/root.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/nether/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/nether/root.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/recipes/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/recipes/root.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/story/iron_tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/story/iron_tools.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/story/lava_bucket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/story/lava_bucket.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/story/mine_stone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/story/mine_stone.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/story/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/story/root.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/story/shiny_gear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/story/shiny_gear.txt -------------------------------------------------------------------------------- /docs/mods/triumph/triumph/vanilla/story/smelt_iron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/docs/mods/triumph/triumph/vanilla/story/smelt_iron.txt -------------------------------------------------------------------------------- /src/config/AE2Stuff/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/AE2Stuff/readme.txt -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/AppliedEnergistics2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/AppliedEnergistics2/AppliedEnergistics2.cfg -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/CustomRecipes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/AppliedEnergistics2/CustomRecipes.cfg -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/Facades.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/AppliedEnergistics2/Facades.cfg -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/VersionChecker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/AppliedEnergistics2/VersionChecker.cfg -------------------------------------------------------------------------------- /src/config/AppliedEnergistics2/extracells.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/AppliedEnergistics2/extracells.cfg -------------------------------------------------------------------------------- /src/config/BNBGamingCore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/BNBGamingCore.cfg -------------------------------------------------------------------------------- /src/config/Building Gadgets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Building Gadgets.cfg -------------------------------------------------------------------------------- /src/config/CustomMainMenu/mainmenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/CustomMainMenu/mainmenu.json -------------------------------------------------------------------------------- /src/config/ElevatorMod/ElevatorMod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ElevatorMod/ElevatorMod.cfg -------------------------------------------------------------------------------- /src/config/FBP/AnimBlockBlacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/FBP/AnimBlockExceptions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/FBP/FloatingMaterials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/FBP/FloatingMaterials.txt -------------------------------------------------------------------------------- /src/config/FBP/Particle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/FBP/Particle.properties -------------------------------------------------------------------------------- /src/config/FBP/ParticleBlockBlacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/FBP/ParticleBlockExceptions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/FarmingForBlockheads/Market.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/FarmingForBlockheads/Market.json -------------------------------------------------------------------------------- /src/config/Guide-API/Guide-API.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Guide-API/Guide-API.cfg -------------------------------------------------------------------------------- /src/config/LagGoggles-client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/LagGoggles-client.cfg -------------------------------------------------------------------------------- /src/config/LagGoggles-server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/LagGoggles-server.cfg -------------------------------------------------------------------------------- /src/config/MatterOverdrive/MatterOverdrive: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/MatterOverdrive/MatterOverdrive.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/MatterOverdrive/MatterOverdrive.cfg -------------------------------------------------------------------------------- /src/config/MatterOverdrive/recipes/inscriber.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/MatterOverdrive/recipes/inscriber.xml -------------------------------------------------------------------------------- /src/config/Mercurius.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Mercurius.cfg -------------------------------------------------------------------------------- /src/config/MoreOverlays.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/MoreOverlays.cfg -------------------------------------------------------------------------------- /src/config/NEI/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/NEI/client.cfg -------------------------------------------------------------------------------- /src/config/Practical-Logistics/Main-Config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Practical-Logistics/Main-Config.cfg -------------------------------------------------------------------------------- /src/config/ProjectE/ProjectE.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/ProjectE.cfg -------------------------------------------------------------------------------- /src/config/ProjectE/customConversions/ODdefaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/customConversions/ODdefaults.json -------------------------------------------------------------------------------- /src/config/ProjectE/customConversions/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/customConversions/defaults.json -------------------------------------------------------------------------------- /src/config/ProjectE/customConversions/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/customConversions/example.json -------------------------------------------------------------------------------- /src/config/ProjectE/customConversions/metals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/customConversions/metals.json -------------------------------------------------------------------------------- /src/config/ProjectE/custom_emc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/custom_emc.json -------------------------------------------------------------------------------- /src/config/ProjectE/mapping.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/mapping.cfg -------------------------------------------------------------------------------- /src/config/ProjectE/nbt_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ProjectE/nbt_whitelist.json -------------------------------------------------------------------------------- /src/config/TComplementModules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/TComplementModules.cfg -------------------------------------------------------------------------------- /src/config/TelePastries.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/TelePastries.cfg -------------------------------------------------------------------------------- /src/config/TinkerModules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/TinkerModules.cfg -------------------------------------------------------------------------------- /src/config/TinkerToolLeveling.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/TinkerToolLeveling.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Armor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Armor.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Extras.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Extras.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Food & Drinks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Food & Drinks.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Main.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Ores.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Ores.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Reborn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Reborn.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Supporters.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Supporters.cfg -------------------------------------------------------------------------------- /src/config/Tiny Progressions/Tools & Weapons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Tiny Progressions/Tools & Weapons.cfg -------------------------------------------------------------------------------- /src/config/Waddles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/Waddles.cfg -------------------------------------------------------------------------------- /src/config/WitherCrumbs/CustomWithers.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/WitherCrumbs/withercrumbs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/WitherCrumbs/withercrumbs.cfg -------------------------------------------------------------------------------- /src/config/acronym/base/General.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/acronym/base/General.cfg -------------------------------------------------------------------------------- /src/config/acronym/contenttweaker/General.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/acronym/contenttweaker/General.cfg -------------------------------------------------------------------------------- /src/config/acronym/material_system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/acronym/material_system.cfg -------------------------------------------------------------------------------- /src/config/advancementbook.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/advancementbook.cfg -------------------------------------------------------------------------------- /src/config/animalcrops.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/animalcrops.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/apotheosis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/apotheosis.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/deadly.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/deadly.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/enchantability.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/enchantability.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/enchantment_module.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/enchantment_module.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/enchantments.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/enchantments.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/garden.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/garden.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/names.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/names.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/potion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/potion.cfg -------------------------------------------------------------------------------- /src/config/apotheosis/spawner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/apotheosis/spawner.cfg -------------------------------------------------------------------------------- /src/config/appleskin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/appleskin.cfg -------------------------------------------------------------------------------- /src/config/aroma1997/aroma1997core.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/aroma1997/aromabackup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/aroma1997/aromabackup.cfg -------------------------------------------------------------------------------- /src/config/aroma1997/aromabackuprecovery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/aroma1997/aromabackuprecovery.cfg -------------------------------------------------------------------------------- /src/config/astralsorcery.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/astralsorcery.cfg -------------------------------------------------------------------------------- /src/config/astralsorcery/aevitas_ore_perk.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/astralsorcery/aevitas_ore_perk.cfg -------------------------------------------------------------------------------- /src/config/astralsorcery/amulet_enchantments.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/astralsorcery/amulet_enchantments.cfg -------------------------------------------------------------------------------- /src/config/astralsorcery/fluid_rarities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/astralsorcery/fluid_rarities.cfg -------------------------------------------------------------------------------- /src/config/astralsorcery/herdable_animals_blacklist.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/astralsorcery/herdable_animals_blacklist.cfg -------------------------------------------------------------------------------- /src/config/astralsorcery/mineralis_ritual.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/astralsorcery/mineralis_ritual.cfg -------------------------------------------------------------------------------- /src/config/astralsorcery/treasure_shrine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/astralsorcery/treasure_shrine.cfg -------------------------------------------------------------------------------- /src/config/baubles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/baubles.cfg -------------------------------------------------------------------------------- /src/config/bdsandm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bdsandm.cfg -------------------------------------------------------------------------------- /src/config/betteradvancements/betteradvancements.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/betteradvancements/betteradvancements.cfg -------------------------------------------------------------------------------- /src/config/bibliocraft.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bibliocraft.cfg -------------------------------------------------------------------------------- /src/config/bonsaitrees/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/settings.cfg -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/sky_orchard_tin001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/shapes.d/sky_orchard_tin001.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/sky_orchard_tin002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/shapes.d/sky_orchard_tin002.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/shapes.d/sky_orchard_tin003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/shapes.d/sky_orchard_tin003.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/amber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/amber.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/amberMulch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/amberMulch.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/blackMulch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/blackMulch.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/blueMulch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/blueMulch.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/brownMulch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/brownMulch.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/redMulch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/redMulch.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/rubyMulch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/rubyMulch.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/soil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/soil.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/soils.d/yellowMulch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/soils.d/yellowMulch.json -------------------------------------------------------------------------------- /src/config/bonsaitrees/types.d/apple_tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bonsaitrees/types.d/apple_tree.json -------------------------------------------------------------------------------- /src/config/bookshelf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bookshelf.cfg -------------------------------------------------------------------------------- /src/config/bouncy_creepers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/bouncy_creepers.cfg -------------------------------------------------------------------------------- /src/config/carryon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/carryon.cfg -------------------------------------------------------------------------------- /src/config/ceramics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ceramics.cfg -------------------------------------------------------------------------------- /src/config/chargers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/chargers.cfg -------------------------------------------------------------------------------- /src/config/charset/charset.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/charset/charset.cfg -------------------------------------------------------------------------------- /src/config/charset/ids.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | entity { 4 | I:barrelCart=1 5 | } 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/config/charset/module/lib.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/charset/module/lib.cfg -------------------------------------------------------------------------------- /src/config/charset/module/storage.barrels.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/charset/module/storage.barrels.cfg -------------------------------------------------------------------------------- /src/config/charset/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/charset/modules.cfg -------------------------------------------------------------------------------- /src/config/chisel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/chisel.cfg -------------------------------------------------------------------------------- /src/config/chiselsandbits.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/chiselsandbits.cfg -------------------------------------------------------------------------------- /src/config/chiselsandbits_clipboard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/chiselsandbits_clipboard.cfg -------------------------------------------------------------------------------- /src/config/clickmachine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/clickmachine.cfg -------------------------------------------------------------------------------- /src/config/clienttweaks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/clienttweaks.cfg -------------------------------------------------------------------------------- /src/config/codechicken/supporters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/codechicken/supporters.json -------------------------------------------------------------------------------- /src/config/codechicken/supporters.marker: -------------------------------------------------------------------------------- 1 | 1529092882344 -------------------------------------------------------------------------------- /src/config/codechickenlib.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/codechickenlib.cfg -------------------------------------------------------------------------------- /src/config/cofh/core/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/core/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/core/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/core/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/core/friends.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/cofh/thermalcultivation/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermalcultivation/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalcultivation/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermalcultivation/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermaldynamics/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermaldynamics/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermaldynamics/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermaldynamics/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermaldynamics/cover_blacklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermaldynamics/cover_blacklist.json -------------------------------------------------------------------------------- /src/config/cofh/thermalfoundation/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermalfoundation/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalfoundation/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermalfoundation/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalfoundation/lexicon-whitelist.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermalfoundation/lexicon-whitelist.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalinnovation/client.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermalinnovation/client.cfg -------------------------------------------------------------------------------- /src/config/cofh/thermalinnovation/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/thermalinnovation/common.cfg -------------------------------------------------------------------------------- /src/config/cofh/world/00_minecraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/world/00_minecraft.json -------------------------------------------------------------------------------- /src/config/cofh/world/01_thermalfoundation_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/world/01_thermalfoundation_ores.json -------------------------------------------------------------------------------- /src/config/cofh/world/02_thermalfoundation_oil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/world/02_thermalfoundation_oil.json -------------------------------------------------------------------------------- /src/config/cofh/world/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cofh/world/config.cfg -------------------------------------------------------------------------------- /src/config/colouredtooltips.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/colouredtooltips.cfg -------------------------------------------------------------------------------- /src/config/commoncapabilities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/commoncapabilities.cfg -------------------------------------------------------------------------------- /src/config/compactdrawers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/compactdrawers.cfg -------------------------------------------------------------------------------- /src/config/compactmachines3/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/compactmachines3/settings.cfg -------------------------------------------------------------------------------- /src/config/compactstorage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/compactstorage.cfg -------------------------------------------------------------------------------- /src/config/conarm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/conarm.cfg -------------------------------------------------------------------------------- /src/config/cookingforblockheads.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cookingforblockheads.cfg -------------------------------------------------------------------------------- /src/config/ctm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ctm.cfg -------------------------------------------------------------------------------- /src/config/culinaryconstruct.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/culinaryconstruct.cfg -------------------------------------------------------------------------------- /src/config/customfov.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/customfov.cfg -------------------------------------------------------------------------------- /src/config/cyclic_ores.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cyclic_ores.cfg -------------------------------------------------------------------------------- /src/config/cyclicmagic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cyclicmagic.cfg -------------------------------------------------------------------------------- /src/config/cyclopscore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/cyclopscore.cfg -------------------------------------------------------------------------------- /src/config/darkutils.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/darkutils.cfg -------------------------------------------------------------------------------- /src/config/deepmoblearning.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/deepmoblearning.cfg -------------------------------------------------------------------------------- /src/config/defaultoptions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/defaultoptions.cfg -------------------------------------------------------------------------------- /src/config/defaultoptions/keybindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/defaultoptions/keybindings.txt -------------------------------------------------------------------------------- /src/config/defaultoptions/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/defaultoptions/options.txt -------------------------------------------------------------------------------- /src/config/elevatorid.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/elevatorid.cfg -------------------------------------------------------------------------------- /src/config/enchdesc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/enchdesc.cfg -------------------------------------------------------------------------------- /src/config/endercore/cropconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/endercore/cropconfig.json -------------------------------------------------------------------------------- /src/config/endercore/endercore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/endercore/endercore.cfg -------------------------------------------------------------------------------- /src/config/endercrop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/endercrop.cfg -------------------------------------------------------------------------------- /src/config/enderstorage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/enderstorage.cfg -------------------------------------------------------------------------------- /src/config/enderutilities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/enderutilities.cfg -------------------------------------------------------------------------------- /src/config/extendedcrafting.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/extendedcrafting.cfg -------------------------------------------------------------------------------- /src/config/farmingforblockheads.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/farmingforblockheads.cfg -------------------------------------------------------------------------------- /src/config/fastbench.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/fastbench.cfg -------------------------------------------------------------------------------- /src/config/fastfurnace.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/fastfurnace.cfg -------------------------------------------------------------------------------- /src/config/findme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/findme.cfg -------------------------------------------------------------------------------- /src/config/flux_networks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/flux_networks.cfg -------------------------------------------------------------------------------- /src/config/foamfix.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/foamfix.cfg -------------------------------------------------------------------------------- /src/config/forge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/forge.cfg -------------------------------------------------------------------------------- /src/config/forgeChunkLoading.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/forgeChunkLoading.cfg -------------------------------------------------------------------------------- /src/config/forgivingvoid.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/forgivingvoid.cfg -------------------------------------------------------------------------------- /src/config/gamestages.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/gamestages.cfg -------------------------------------------------------------------------------- /src/config/headcrumbs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/headcrumbs.cfg -------------------------------------------------------------------------------- /src/config/horsepower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/horsepower.cfg -------------------------------------------------------------------------------- /src/config/huntingdim/huntingdim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/huntingdim/huntingdim.cfg -------------------------------------------------------------------------------- /src/config/huntingdim/world_generator_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/huntingdim/world_generator_settings.json -------------------------------------------------------------------------------- /src/config/ichunutil.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ichunutil.cfg -------------------------------------------------------------------------------- /src/config/ichunutil_keybinds.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ichunutil_keybinds.cfg -------------------------------------------------------------------------------- /src/config/igwmod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/igwmod.cfg -------------------------------------------------------------------------------- /src/config/incontrol/experience.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/config/incontrol/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/incontrol/loot.json -------------------------------------------------------------------------------- /src/config/incontrol/main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/incontrol/main.cfg -------------------------------------------------------------------------------- /src/config/incontrol/potentialspawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/incontrol/potentialspawn.json -------------------------------------------------------------------------------- /src/config/incontrol/spawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/incontrol/spawn.json -------------------------------------------------------------------------------- /src/config/incontrol/summonaid.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/config/industrialforegoing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/industrialforegoing.cfg -------------------------------------------------------------------------------- /src/config/inspirations.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/inspirations.cfg -------------------------------------------------------------------------------- /src/config/inspirationsModules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/inspirationsModules.cfg -------------------------------------------------------------------------------- /src/config/integrateddynamics.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/integrateddynamics.cfg -------------------------------------------------------------------------------- /src/config/integrateddynamicscompat.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/integrateddynamicscompat.cfg -------------------------------------------------------------------------------- /src/config/integratedtunnels.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/integratedtunnels.cfg -------------------------------------------------------------------------------- /src/config/integratedtunnelscompat.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/integratedtunnelscompat.cfg -------------------------------------------------------------------------------- /src/config/inventorysorter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/inventorysorter.cfg -------------------------------------------------------------------------------- /src/config/ironjetpacks/ironjetpacks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ironjetpacks/ironjetpacks.cfg -------------------------------------------------------------------------------- /src/config/ironjetpacks/jetpacks/creative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ironjetpacks/jetpacks/creative.json -------------------------------------------------------------------------------- /src/config/ironjetpacks/jetpacks/electrum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ironjetpacks/jetpacks/electrum.json -------------------------------------------------------------------------------- /src/config/ironjetpacks/jetpacks/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ironjetpacks/jetpacks/iron.json -------------------------------------------------------------------------------- /src/config/ironjetpacks/jetpacks/platinum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ironjetpacks/jetpacks/platinum.json -------------------------------------------------------------------------------- /src/config/ironjetpacks/jetpacks/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ironjetpacks/jetpacks/steel.json -------------------------------------------------------------------------------- /src/config/ironjetpacks/jetpacks/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ironjetpacks/jetpacks/stone.json -------------------------------------------------------------------------------- /src/config/itemstages.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/itemstages.cfg -------------------------------------------------------------------------------- /src/config/jei/itemBlacklist.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/jei/itemBlacklist.cfg -------------------------------------------------------------------------------- /src/config/jei/jei.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/jei/jei.cfg -------------------------------------------------------------------------------- /src/config/jei/searchColors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/jei/searchColors.cfg -------------------------------------------------------------------------------- /src/config/journeymap_ModInfo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/journeymap_ModInfo.cfg -------------------------------------------------------------------------------- /src/config/journeymap_server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/journeymap_server.cfg -------------------------------------------------------------------------------- /src/config/kleeslabs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/kleeslabs.cfg -------------------------------------------------------------------------------- /src/config/laser_drill_ores/default_ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/laser_drill_ores/default_ores.json -------------------------------------------------------------------------------- /src/config/laser_drill_ores/oredict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/laser_drill_ores/oredict.json -------------------------------------------------------------------------------- /src/config/loadingscreens/LoadingScreens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/loadingscreens/LoadingScreens.txt -------------------------------------------------------------------------------- /src/config/lostcities/general.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/general.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_ancient.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_ancient.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_atlantis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_atlantis.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_bio_wasteland.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_bio_wasteland.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_biosphere.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_biosphere.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_cavern.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_cavern.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_chisel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_chisel.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_default.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_floating.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_floating.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_nodamage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_nodamage.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_onlycities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_onlycities.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_rarecities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_rarecities.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_realistic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_realistic.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_safe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_safe.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_space.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_space.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_tallbuildings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_tallbuildings.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_wasteland.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_wasteland.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_water_empty.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_water_empty.cfg -------------------------------------------------------------------------------- /src/config/lostcities/profile_waterbubbles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/lostcities/profile_waterbubbles.cfg -------------------------------------------------------------------------------- /src/config/malisiscore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/malisiscore.cfg -------------------------------------------------------------------------------- /src/config/malisisdoors.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/malisisdoors.cfg -------------------------------------------------------------------------------- /src/config/mcjtylib.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mcjtylib.cfg -------------------------------------------------------------------------------- /src/config/mekanism.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mekanism.cfg -------------------------------------------------------------------------------- /src/config/mekanism/BoxBlacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mekanism/BoxBlacklist.txt -------------------------------------------------------------------------------- /src/config/microblocks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/microblocks.cfg -------------------------------------------------------------------------------- /src/config/morecauldrons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/morecauldrons.cfg -------------------------------------------------------------------------------- /src/config/morpheus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/morpheus.cfg -------------------------------------------------------------------------------- /src/config/morphtool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/morphtool.cfg -------------------------------------------------------------------------------- /src/config/mputils/addons/mpbasic/mpbasic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mputils/addons/mpbasic/mpbasic.cfg -------------------------------------------------------------------------------- /src/config/mputils/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mputils/changelog.txt -------------------------------------------------------------------------------- /src/config/mputils/infopanel/example/page1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mputils/infopanel/example/page1.txt -------------------------------------------------------------------------------- /src/config/mputils/infopanel/example/page2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mputils/infopanel/example/page2.txt -------------------------------------------------------------------------------- /src/config/mputils/infopanel/example/page3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mputils/infopanel/example/page3.txt -------------------------------------------------------------------------------- /src/config/mputils/infopanel/example/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mputils/infopanel/example/welcome.json -------------------------------------------------------------------------------- /src/config/mputils/mputils.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mputils/mputils.cfg -------------------------------------------------------------------------------- /src/config/multipart.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/multipart.cfg -------------------------------------------------------------------------------- /src/config/mystcraft/balance.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mystcraft/balance.cfg -------------------------------------------------------------------------------- /src/config/mystcraft/core.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mystcraft/core.cfg -------------------------------------------------------------------------------- /src/config/mystcraft/instabilities.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mystcraft/instabilities.cfg -------------------------------------------------------------------------------- /src/config/mystcraft/symbols.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mystcraft/symbols.cfg -------------------------------------------------------------------------------- /src/config/mysticalagradditions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mysticalagradditions.cfg -------------------------------------------------------------------------------- /src/config/mysticalagriculture.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mysticalagriculture.cfg -------------------------------------------------------------------------------- /src/config/mysticalagriculture_recipes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/mysticalagriculture_recipes.cfg -------------------------------------------------------------------------------- /src/config/naturescompass.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/naturescompass.cfg -------------------------------------------------------------------------------- /src/config/neat.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/neat.cfg -------------------------------------------------------------------------------- /src/config/nuclearcraft.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/nuclearcraft.cfg -------------------------------------------------------------------------------- /src/config/ocxnetdriver.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ocxnetdriver.cfg -------------------------------------------------------------------------------- /src/config/ogdragon/dragonloot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ogdragon/dragonloot.json -------------------------------------------------------------------------------- /src/config/ogdragon/ogdragon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ogdragon/ogdragon.cfg -------------------------------------------------------------------------------- /src/config/opencomputers/default.recipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/opencomputers/default.recipes -------------------------------------------------------------------------------- /src/config/opencomputers/gregtech.recipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/opencomputers/gregtech.recipes -------------------------------------------------------------------------------- /src/config/opencomputers/hardmode.recipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/opencomputers/hardmode.recipes -------------------------------------------------------------------------------- /src/config/opencomputers/peaceful.recipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/opencomputers/peaceful.recipes -------------------------------------------------------------------------------- /src/config/opencomputers/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/opencomputers/settings.conf -------------------------------------------------------------------------------- /src/config/opencomputers/user.recipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/opencomputers/user.recipes -------------------------------------------------------------------------------- /src/config/oreexcavation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/oreexcavation.cfg -------------------------------------------------------------------------------- /src/config/oreexcavation_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/oreexcavation_groups.json -------------------------------------------------------------------------------- /src/config/oreexcavation_overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/oreexcavation_overrides.json -------------------------------------------------------------------------------- /src/config/oreexcavation_shapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/oreexcavation_shapes.json -------------------------------------------------------------------------------- /src/config/overpoweredarmorbar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/overpoweredarmorbar.cfg -------------------------------------------------------------------------------- /src/config/parabox.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/parabox.cfg -------------------------------------------------------------------------------- /src/config/patchouli.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/patchouli.cfg -------------------------------------------------------------------------------- /src/config/pdp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/pdp.cfg -------------------------------------------------------------------------------- /src/config/phosphor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/phosphor.json -------------------------------------------------------------------------------- /src/config/pickletweaks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/pickletweaks.cfg -------------------------------------------------------------------------------- /src/config/pipemaster/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/pipemaster/settings.cfg -------------------------------------------------------------------------------- /src/config/placebo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/placebo.cfg -------------------------------------------------------------------------------- /src/config/portalgun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/portalgun.cfg -------------------------------------------------------------------------------- /src/config/prestige.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/prestige.cfg -------------------------------------------------------------------------------- /src/config/prestige/backup_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/prestige/backup_file.json -------------------------------------------------------------------------------- /src/config/prestige/rewards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/prestige/rewards.json -------------------------------------------------------------------------------- /src/config/primitivecrafting.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/primitivecrafting.cfg -------------------------------------------------------------------------------- /src/config/randomworldname.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/randomworldname.cfg -------------------------------------------------------------------------------- /src/config/rangedpumps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/rangedpumps.cfg -------------------------------------------------------------------------------- /src/config/realfilingcabinet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/realfilingcabinet.cfg -------------------------------------------------------------------------------- /src/config/reborncore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/reborncore.cfg -------------------------------------------------------------------------------- /src/config/resize/resize.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resize/resize.cfg -------------------------------------------------------------------------------- /src/config/resourcehogs/resourcehogs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/resourcehogs.cfg -------------------------------------------------------------------------------- /src/config/resourcehogs/types/aquamarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/aquamarine.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/ardite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/ardite.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/bone.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/boron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/boron.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/bronze.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/clay.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/coal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/coal.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/cobalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/cobalt.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/cobblestone.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/copper.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/diamond.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/dilithium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/dilithium.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/dirt.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/electrum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/electrum.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/emerald.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/ender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/ender.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/glass.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/glowstone.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/gold.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/gravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/gravel.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/invar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/invar.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/iron.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/ironbars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/ironbars.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/lapis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/lapis.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/lead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/lead.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/lithium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/lithium.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/magnesium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/magnesium.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/manyullyn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/manyullyn.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/netherrack.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/nickel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/nickel.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/obsidian.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/osmium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/osmium.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/platinum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/platinum.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/prismarine.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/quartz.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/redstone.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/sand.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/sapphire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/sapphire.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/seared_brick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/seared_brick.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/silver.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/soul_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/soul_sand.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/steel.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/thorium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/thorium.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/tin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/tin.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/tritanium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/tritanium.json -------------------------------------------------------------------------------- /src/config/resourcehogs/types/uranium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/resourcehogs/types/uranium.json -------------------------------------------------------------------------------- /src/config/rftools/rftoolspower.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/rftools/rftoolspower.cfg -------------------------------------------------------------------------------- /src/config/rustic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/rustic.cfg -------------------------------------------------------------------------------- /src/config/sasit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/sasit.cfg -------------------------------------------------------------------------------- /src/config/simplegenerators/generators/soul/fuels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/simplegenerators/generators/soul/fuels.json -------------------------------------------------------------------------------- /src/config/simplegenerators/main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/simplegenerators/main.cfg -------------------------------------------------------------------------------- /src/config/simpletomb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/simpletomb.cfg -------------------------------------------------------------------------------- /src/config/sky_orchards.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/sky_orchards.cfg -------------------------------------------------------------------------------- /src/config/skybonsais/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/skybonsais/settings.cfg -------------------------------------------------------------------------------- /src/config/skygrid.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/skygrid.cfg -------------------------------------------------------------------------------- /src/config/skygrid/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/skygrid/end.json -------------------------------------------------------------------------------- /src/config/skygrid/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/skygrid/loot.json -------------------------------------------------------------------------------- /src/config/skygrid/nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/skygrid/nether.json -------------------------------------------------------------------------------- /src/config/skygrid/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/skygrid/overworld.json -------------------------------------------------------------------------------- /src/config/slabmachines.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/slabmachines.cfg -------------------------------------------------------------------------------- /src/config/smoothfont/smoothfont.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/smoothfont/smoothfont.cfg -------------------------------------------------------------------------------- /src/config/snad.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/snad.cfg -------------------------------------------------------------------------------- /src/config/splash.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/splash.properties -------------------------------------------------------------------------------- /src/config/stackup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/stackup.cfg -------------------------------------------------------------------------------- /src/config/statues.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/statues.cfg -------------------------------------------------------------------------------- /src/config/stg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/stg.cfg -------------------------------------------------------------------------------- /src/config/storagedrawers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/storagedrawers.cfg -------------------------------------------------------------------------------- /src/config/storagenetwork.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/storagenetwork.cfg -------------------------------------------------------------------------------- /src/config/supersoundmuffler.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/supersoundmuffler.cfg -------------------------------------------------------------------------------- /src/config/surge.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/surge.cfg -------------------------------------------------------------------------------- /src/config/sync.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/sync.cfg -------------------------------------------------------------------------------- /src/config/tcomplement.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/tcomplement.cfg -------------------------------------------------------------------------------- /src/config/tconstruct.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/tconstruct.cfg -------------------------------------------------------------------------------- /src/config/teslacorelib.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/teslacorelib.cfg -------------------------------------------------------------------------------- /src/config/tickprofiler.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/tickprofiler.cfg -------------------------------------------------------------------------------- /src/config/tips.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/tips.cfg -------------------------------------------------------------------------------- /src/config/toastcontrol.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/toastcontrol.cfg -------------------------------------------------------------------------------- /src/config/togetherforever.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/togetherforever.cfg -------------------------------------------------------------------------------- /src/config/topography/BnB2/Icy Cell Nether.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/BnB2/Icy Cell Nether.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/astral_sorcery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/astral_sorcery.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/bedrock_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/bedrock_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/bedrock_floor_and_ceiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/bedrock_floor_and_ceiling.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/cave_dimension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/cave_dimension.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/classic_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/classic_mode.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/data/unlocks.txt: -------------------------------------------------------------------------------- 1 | unlocks.txt 2 | -------------------------------------------------------------------------------- /src/config/topography/SF4/diamonds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/diamonds.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_chunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_chunk.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_cobblestone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_cobblestone.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_cobwebs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_cobwebs.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_gelid_cryotheum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_gelid_cryotheum.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_lava_ocean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_lava_ocean.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_no_skylight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_no_skylight.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_pyrotheum_ocean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_pyrotheum_ocean.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_silverfish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_silverfish.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_sludge_ocean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_sludge_ocean.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_tnt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_tnt.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/dirt_tree_water_ocean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/dirt_tree_water_ocean.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/end/end_bedrock_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/end/end_bedrock_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/end/end_chunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/end/end_chunk.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/end/end_compact_machines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/end/end_compact_machines.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/end/end_stone_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/end/end_stone_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/glass_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/glass_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/hardcore_no_skylight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/hardcore_no_skylight.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/hardcore_skylight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/hardcore_skylight.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/lava_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/lava_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_caves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_caves.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_cell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_cell.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_chunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_chunk.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_ender.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_ender.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_fortress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_fortress.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_hardcore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_hardcore.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_hedge_maze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_hedge_maze.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_pyrotheum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_pyrotheum.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_sludge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_sludge.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_stone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_stone.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_stone_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_stone_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_sunken.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_sunken.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_tnt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_tnt.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/nether/nether_water.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/nether/nether_water.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/overworld_large_tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/overworld_large_tree.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/pacifist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/pacifist.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/project_e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/project_e.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/resonant_ender_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/resonant_ender_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/sky_crash_factory_landing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/sky_crash_factory_landing.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/stone_cage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/stone_cage.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/testing_world.txt: -------------------------------------------------------------------------------- 1 | setSpawnStructure("stonetest") -------------------------------------------------------------------------------- /src/config/topography/SF4/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/tutorial.txt -------------------------------------------------------------------------------- /src/config/topography/SF4/village.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/SF4/village.txt -------------------------------------------------------------------------------- /src/config/topography/Sky Islands/basic_sky_islands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/Sky Islands/basic_sky_islands.txt -------------------------------------------------------------------------------- /src/config/topography/Topography.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/Topography.txt -------------------------------------------------------------------------------- /src/config/topography/images/Amplified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Amplified.png -------------------------------------------------------------------------------- /src/config/topography/images/AstralSorcery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/AstralSorcery.png -------------------------------------------------------------------------------- /src/config/topography/images/Bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Bedrock.png -------------------------------------------------------------------------------- /src/config/topography/images/BedrockChunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/BedrockChunk.png -------------------------------------------------------------------------------- /src/config/topography/images/CaveDimension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/CaveDimension.png -------------------------------------------------------------------------------- /src/config/topography/images/Chunkmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Chunkmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/Cobblestonemk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Cobblestonemk2.png -------------------------------------------------------------------------------- /src/config/topography/images/Cobwebmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Cobwebmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/CompactMachines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/CompactMachines.png -------------------------------------------------------------------------------- /src/config/topography/images/CrashLanding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/CrashLanding.png -------------------------------------------------------------------------------- /src/config/topography/images/Cryotheummk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Cryotheummk2.png -------------------------------------------------------------------------------- /src/config/topography/images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Default.png -------------------------------------------------------------------------------- /src/config/topography/images/EncasedStonemk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/EncasedStonemk2.png -------------------------------------------------------------------------------- /src/config/topography/images/EnderCage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/EnderCage.png -------------------------------------------------------------------------------- /src/config/topography/images/Flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Flat.png -------------------------------------------------------------------------------- /src/config/topography/images/GlassLavaIslandsmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/GlassLavaIslandsmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/HardcoreNoLightmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/HardcoreNoLightmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/HardcoreSkylightmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/HardcoreSkylightmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/LargeBiomes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/LargeBiomes.png -------------------------------------------------------------------------------- /src/config/topography/images/LavaCage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/LavaCage.png -------------------------------------------------------------------------------- /src/config/topography/images/Lavamk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Lavamk2.png -------------------------------------------------------------------------------- /src/config/topography/images/LostCities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/LostCities.png -------------------------------------------------------------------------------- /src/config/topography/images/NoSkylightmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/NoSkylightmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/ProjectEmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/ProjectEmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/Pyrotheummk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Pyrotheummk2.png -------------------------------------------------------------------------------- /src/config/topography/images/ResonantEndermk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/ResonantEndermk2.png -------------------------------------------------------------------------------- /src/config/topography/images/ResourceIslandsmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/ResourceIslandsmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/SF4mk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/SF4mk2.png -------------------------------------------------------------------------------- /src/config/topography/images/SkyFactreemk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/SkyFactreemk2.png -------------------------------------------------------------------------------- /src/config/topography/images/SkyGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/SkyGrid.png -------------------------------------------------------------------------------- /src/config/topography/images/SkyIslandsmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/SkyIslandsmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/Sludgemk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Sludgemk2.png -------------------------------------------------------------------------------- /src/config/topography/images/Stonemk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Stonemk2.png -------------------------------------------------------------------------------- /src/config/topography/images/TNTmk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/TNTmk2.png -------------------------------------------------------------------------------- /src/config/topography/images/Tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Tutorial.png -------------------------------------------------------------------------------- /src/config/topography/images/Villagemk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Villagemk3.png -------------------------------------------------------------------------------- /src/config/topography/images/WaterCage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/WaterCage.png -------------------------------------------------------------------------------- /src/config/topography/images/Watermk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/images/Watermk2.png -------------------------------------------------------------------------------- /src/config/topography/structures/astralsorcery.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/astralsorcery.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/basic tree.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/basic tree.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/bedrockcage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/bedrockcage.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/bedrockcageend.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/bedrockcageend.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/bedrockcagev2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/bedrockcagev2.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/chunk_dirt_tree.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/chunk_dirt_tree.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/compactmachinesend.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/compactmachinesend.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/crashedpod.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/crashedpod.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/diamonds.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/diamonds.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/dirt_tree.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/dirt_tree.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/dungeon.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/dungeon.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/endcage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/endcage.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/endchuck.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/endchuck.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/glasscage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/glasscage.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/hardcoretree.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/hardcoretree.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/hedgemaze2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/hedgemaze2.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/hogwarts.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/hogwarts.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/nethercage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/nethercage.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/netherchuck.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/netherchuck.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/netherstonecage.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/netherstonecage.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/projecte.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/projecte.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/stonetest.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/stonetest.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/tutorial.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/tutorial.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/twilighttree.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/twilighttree.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/twilighttree2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/twilighttree2.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/village.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/village.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/villagemk3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/villagemk3.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/villagetest.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/villagetest.nbt -------------------------------------------------------------------------------- /src/config/topography/structures/villagev2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/topography/structures/villagev2.nbt -------------------------------------------------------------------------------- /src/config/torchmaster.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/torchmaster.cfg -------------------------------------------------------------------------------- /src/config/totemic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/totemic.cfg -------------------------------------------------------------------------------- /src/config/translocators.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/translocators.cfg -------------------------------------------------------------------------------- /src/config/treegrowingsimulator.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/treegrowingsimulator.cfg -------------------------------------------------------------------------------- /src/config/triumph/Triumph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/Triumph.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/bedrock_world_start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/bedrock_world_start.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/classic_mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/classic_mode.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/compact_machines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/compact_machines.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/default_world_ore.txt: -------------------------------------------------------------------------------- 1 | gamestage add @p default_ores -------------------------------------------------------------------------------- /src/config/triumph/functions/difficulty_normal.txt: -------------------------------------------------------------------------------- 1 | difficulty 2 -------------------------------------------------------------------------------- /src/config/triumph/functions/difficulty_peaceful.txt: -------------------------------------------------------------------------------- 1 | difficulty 0 -------------------------------------------------------------------------------- /src/config/triumph/functions/dragon_loot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/dragon_loot.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/forgiving_void_disable.txt: -------------------------------------------------------------------------------- 1 | gamestage silentremove @p forgiving_void -------------------------------------------------------------------------------- /src/config/triumph/functions/forgiving_void_enable.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p forgiving_void -------------------------------------------------------------------------------- /src/config/triumph/functions/give_cake.txt: -------------------------------------------------------------------------------- 1 | give @p telepastries:overworld_cake -------------------------------------------------------------------------------- /src/config/triumph/functions/lost_cities.txt: -------------------------------------------------------------------------------- 1 | gamestage add @p lost_cities -------------------------------------------------------------------------------- /src/config/triumph/functions/non_pacifist.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p non_pacifist -------------------------------------------------------------------------------- /src/config/triumph/functions/pacifist_lost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/pacifist_lost.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/pacifist_start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/pacifist_start.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/prestige_add.txt: -------------------------------------------------------------------------------- 1 | prestige add @p 1 -------------------------------------------------------------------------------- /src/config/triumph/functions/prestige_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/prestige_notify.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/project_e.txt: -------------------------------------------------------------------------------- 1 | gamestage add @p project_e -------------------------------------------------------------------------------- /src/config/triumph/functions/sky_islands_start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/sky_islands_start.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/skygrid_start.txt: -------------------------------------------------------------------------------- 1 | gamestage silentadd @p skygrid -------------------------------------------------------------------------------- /src/config/triumph/functions/start_compact_machines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/start_compact_machines.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/start_standard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/start_standard.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/start_tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/start_tutorial.txt -------------------------------------------------------------------------------- /src/config/triumph/functions/startingitems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/functions/startingitems.txt -------------------------------------------------------------------------------- /src/config/triumph/script/amplified/amplified/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/amplified/amplified/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/compactmachines/test/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/compactmachines/test/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/default/default/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/default/default/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/hardcore/hardcore/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/hardcore/hardcore/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/hardcore/hardcore/survive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/hardcore/hardcore/survive.txt -------------------------------------------------------------------------------- /src/config/triumph/script/prestige/prestige/clock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/prestige/prestige/clock.txt -------------------------------------------------------------------------------- /src/config/triumph/script/prestige/prestige/parabox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/prestige/prestige/parabox.txt -------------------------------------------------------------------------------- /src/config/triumph/script/prestige/prestige/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/prestige/prestige/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/projecte/projecte/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/projecte/projecte/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/acorn/dirt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/acorn/dirt.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/amber/gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/amber/gold.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/amber/iron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/amber/iron.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/amber/lead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/amber/lead.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/amber/silver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/amber/silver.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/amber/tin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/amber/tin.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/cauldron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/cauldron.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/clay_bucket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/clay_bucket.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/coal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/coal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/cobblestone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/cobblestone.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/complete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/complete.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/crushing_tub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/crushing_tub.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/diamond.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/diamond.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/dirt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/dirt.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/drying_rack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/drying_rack.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/green_slimy_dirt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/green_slimy_dirt.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/iron_bucket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/iron_bucket.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/iron_ingot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/iron_ingot.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/lava.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/lava.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/lavasource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/lavasource.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/nonpacifist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/nonpacifist.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/obsidian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/obsidian.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/prestige_notify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/prestige_notify.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/resourcehogs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/resourcehogs.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/bacon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/bacon.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/bone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/bone.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/clay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/clay.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/coal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/coal.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/diamond.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/diamond.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/dirt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/dirt.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/donut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/donut.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/gold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/gold.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/gravel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/gravel.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/iron.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/iron.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/lapis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/lapis.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/lead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/lead.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/redstone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/redstone.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/sand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/sand.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/silver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/silver.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/slime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/slime.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sapling/tin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sapling/tin.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/slabs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/slabs.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/sleep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/sleep.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/stone_crook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/stone_crook.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/string.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/twerk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/twerk.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/water.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/water.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/watersource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/watersource.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age1/wooden_crook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age1/wooden_crook.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_enhancement/cast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_enhancement/cast.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_enhancement/paxel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_enhancement/paxel.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_enhancement/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_enhancement/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_enhancement/tank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_enhancement/tank.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_enhancement/yoyo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_enhancement/yoyo.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_exploration/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_exploration/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/bluemulch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/bluemulch.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/bonsai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/bonsai.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/complete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/complete.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/cowjar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/cowjar.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/hydrogel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/hydrogel.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/market.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/market.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/mattock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/mattock.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/mobswab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/mobswab.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/redmulch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/redmulch.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/rubymulch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/rubymulch.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/spawnegg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/spawnegg.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_farming/sprinkler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_farming/sprinkler.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/autoclicker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/autoclicker.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/charger1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/charger1.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/charger2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/charger2.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/charger3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/charger3.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/complete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/complete.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/deeplearner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/deeplearner.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/dehydrator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/dehydrator.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/froster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/froster.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/ingotformer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/ingotformer.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/melter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/melter.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_power/treadmill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_power/treadmill.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_storage/complete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_storage/complete.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_storage/drivebay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_storage/drivebay.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_storage/hopper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_storage/hopper.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_storage/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_storage/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/sf4/age_storage/upper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/sf4/age_storage/upper.txt -------------------------------------------------------------------------------- /src/config/triumph/script/skygrid/skygrid/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/skygrid/skygrid/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/superflat/superflat/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/superflat/superflat/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/tutorial/tutorial/oakwood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/tutorial/tutorial/oakwood.txt -------------------------------------------------------------------------------- /src/config/triumph/script/tutorial/tutorial/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/tutorial/tutorial/root.txt -------------------------------------------------------------------------------- /src/config/triumph/script/twilightforest/hydra_chop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/triumph/script/twilightforest/hydra_chop.txt -------------------------------------------------------------------------------- /src/config/twilightforest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/twilightforest.cfg -------------------------------------------------------------------------------- /src/config/twitchcrumbs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/twitchcrumbs.cfg -------------------------------------------------------------------------------- /src/config/unloader.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/unloader.cfg -------------------------------------------------------------------------------- /src/config/valkyrielib/main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/valkyrielib/main.cfg -------------------------------------------------------------------------------- /src/config/vanillafix.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/vanillafix.cfg -------------------------------------------------------------------------------- /src/config/vc/vc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/vc/vc.cfg -------------------------------------------------------------------------------- /src/config/waila/theme/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/waila/theme/dark.json -------------------------------------------------------------------------------- /src/config/waila/theme/vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/waila/theme/vanilla.json -------------------------------------------------------------------------------- /src/config/waila/waila.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/waila/waila.cfg -------------------------------------------------------------------------------- /src/config/walljump.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/walljump.cfg -------------------------------------------------------------------------------- /src/config/wawla.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/wawla.cfg -------------------------------------------------------------------------------- /src/config/weirdinggadget.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/weirdinggadget.cfg -------------------------------------------------------------------------------- /src/config/wopper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/wopper.cfg -------------------------------------------------------------------------------- /src/config/worldstripper.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/worldstripper.cfg -------------------------------------------------------------------------------- /src/config/worldutils.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/worldutils.cfg -------------------------------------------------------------------------------- /src/config/xlfoodmod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/xlfoodmod.cfg -------------------------------------------------------------------------------- /src/config/xnet/xnet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/xnet/xnet.cfg -------------------------------------------------------------------------------- /src/config/ynot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/ynot.cfg -------------------------------------------------------------------------------- /src/config/yoyos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/config/yoyos.cfg -------------------------------------------------------------------------------- /src/fontfiles/Odin Rounded - Bold Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/fontfiles/Odin Rounded - Bold Italic.otf -------------------------------------------------------------------------------- /src/fontfiles/Odin Rounded - Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/fontfiles/Odin Rounded - Bold.otf -------------------------------------------------------------------------------- /src/fontfiles/Odin Rounded - Light Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/fontfiles/Odin Rounded - Light Italic.otf -------------------------------------------------------------------------------- /src/fontfiles/Odin Rounded - Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/fontfiles/Odin Rounded - Light.otf -------------------------------------------------------------------------------- /src/fontfiles/Odin Rounded - Regular Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/fontfiles/Odin Rounded - Regular Italic.otf -------------------------------------------------------------------------------- /src/fontfiles/Odin Rounded - Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/fontfiles/Odin Rounded - Regular.otf -------------------------------------------------------------------------------- /src/resources/compactstorage/textures/gui/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/compactstorage/textures/gui/chest.png -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/bacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/contenttweaker/blockstates/bacon.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/donut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/contenttweaker/blockstates/donut.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/contenttweaker/blockstates/dust.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/blockstates/mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/contenttweaker/blockstates/mud.json -------------------------------------------------------------------------------- /src/resources/contenttweaker/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/contenttweaker/lang/en_us.lang -------------------------------------------------------------------------------- /src/resources/contenttweaker/lang/zh_cn.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/contenttweaker/lang/zh_cn.lang -------------------------------------------------------------------------------- /src/resources/contenttweaker/textures/blocks/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/contenttweaker/textures/blocks/dust.png -------------------------------------------------------------------------------- /src/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/pack.mcmeta -------------------------------------------------------------------------------- /src/resources/sky_orchards/blockstates/ore_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/sky_orchards/blockstates/ore_sapling.json -------------------------------------------------------------------------------- /src/resources/skyfactory4/lang/en_us.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/skyfactory4/lang/en_us.lang -------------------------------------------------------------------------------- /src/resources/skyfactory4/lang/zh_cn.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/skyfactory4/lang/zh_cn.lang -------------------------------------------------------------------------------- /src/resources/test/textures/colors/bedrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/bedrock.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/black.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/clear_sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/clear_sky.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/cyan.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/dark_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/dark_gray.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/dark_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/dark_purple.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/green.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/grey.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/grid.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/light_blue.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/orange.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/purple.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/red.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/sky.png -------------------------------------------------------------------------------- /src/resources/test/textures/colors/sky_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/colors/sky_blue.png -------------------------------------------------------------------------------- /src/resources/test/textures/gui/title/background/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/gui/title/background/bg.png -------------------------------------------------------------------------------- /src/resources/test/textures/skybox/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/skybox/day.png -------------------------------------------------------------------------------- /src/resources/test/textures/skybox/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/resources/test/textures/skybox/night.png -------------------------------------------------------------------------------- /src/scripts/contenttweaker/blocks.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/blocks.zs -------------------------------------------------------------------------------- /src/scripts/contenttweaker/fluids.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/fluids.zs -------------------------------------------------------------------------------- /src/scripts/contenttweaker/items.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/items.zs -------------------------------------------------------------------------------- /src/scripts/contenttweaker/materials/init.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/materials/init.zs -------------------------------------------------------------------------------- /src/scripts/contenttweaker/materials/largeScale.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/materials/largeScale.zs -------------------------------------------------------------------------------- /src/scripts/contenttweaker/materials/misc.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/materials/misc.zs -------------------------------------------------------------------------------- /src/scripts/contenttweaker/materials/utils.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/materials/utils.zs -------------------------------------------------------------------------------- /src/scripts/contenttweaker/postInit.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/contenttweaker/postInit.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/init.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/init.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/initUnifier.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/initUnifier.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/astralSorcery.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/astralSorcery.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/cyclic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/cyclic.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/horsePower.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/horsePower.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/inspirations.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/inspirations.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/mekanism.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/mekanism.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/nuclearCraft.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/nuclearCraft.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/prestige.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/prestige.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/rustic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/rustic.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/mods/tinkers.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/mods/tinkers.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/resources/resource.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/resources/resource.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/utils/recipeUtil.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/utils/recipeUtil.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/classes/utils/unifier.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/classes/utils/unifier.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/craftingUtils.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/craftingUtils.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/env.dev.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/env.dev.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/env.production.zs: -------------------------------------------------------------------------------- 1 | #ikwid 2 | -------------------------------------------------------------------------------- /src/scripts/crafttweaker/grassSeedDrop.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/grassSeedDrop.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/itemModifiers/burnTime.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/itemModifiers/burnTime.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/itemModifiers/hardness.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/itemModifiers/hardness.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/itemModifiers/harvestLevel.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/itemModifiers/harvestLevel.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/itemModifiers/hide.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/itemModifiers/hide.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/itemModifiers/rename.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/itemModifiers/rename.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/itemModifiers/tooltips.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/itemModifiers/tooltips.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/modIntegrations/bonsaitrees.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/modIntegrations/bonsaitrees.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/modIntegrations/cyclic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/modIntegrations/cyclic.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/modIntegrations/horsePower.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/modIntegrations/horsePower.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/modIntegrations/mekanism.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/modIntegrations/mekanism.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/modIntegrations/rustic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/modIntegrations/rustic.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/modIntegrations/tinkers.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/modIntegrations/tinkers.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/oredict/carpet.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/oredict/carpet.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/oredict/cauldron.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/oredict/cauldron.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/oredict/leaves.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/oredict/leaves.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/oredict/misc.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/oredict/misc.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/oredict/mods/twilightForest.zs: -------------------------------------------------------------------------------- 1 | #priority 2700 2 | 3 | /* 4 | SkyFactory 4 Twilight Forest OreDict Script. 5 | */ 6 | 7 | -------------------------------------------------------------------------------- /src/scripts/crafttweaker/postInit.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/postInit.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/preInit.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/preInit.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/prestige.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/prestige.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/furnace.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/furnace.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/animalcrops.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/animalcrops.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/astralSorcery.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/astralSorcery.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/bdsandm.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/bdsandm.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/clickMachine.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/clickMachine.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/cyclic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/cyclic.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/darkutils.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/darkutils.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/extraCells.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/extraCells.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/iChunUtil.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/iChunUtil.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/inspirations.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/inspirations.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/ironJetpacks.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/ironJetpacks.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/malisisdoors.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/malisisdoors.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/mekanism.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/mekanism.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/microblockcbe.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/microblockcbe.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/minecraft.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/minecraft.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/nuclearcraft.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/nuclearcraft.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/parabox.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/parabox.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/primitiveCrafting.zs: -------------------------------------------------------------------------------- 1 | // 2 | 3 | -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/projecte.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/projecte.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/resourceHogs.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/resourceHogs.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/rftools.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/rftools.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/rustic.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/rustic.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/skyOrchards.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/skyOrchards.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/slabMachines.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/slabMachines.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/sonarcore.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/sonarcore.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/statues.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/statues.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/tconstruct.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/tconstruct.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/telepastries.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/telepastries.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/torchmaster.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/torchmaster.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/twilightForest.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/twilightForest.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/valkyrieLib.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/valkyrieLib.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/mods/xlfoods.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/mods/xlfoods.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/removeAndHide.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/removeAndHide.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/recipes/removeCategory.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/recipes/removeCategory.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/resources/init.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/resources/init.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/resources/resourceHogs.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/resources/resourceHogs.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/resources/resources.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/resources/resources.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/resources/skyOrchards.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/resources/skyOrchards.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/resources/unify.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/resources/unify.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/stages.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/stages.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/staging/containers.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/staging/containers.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/staging/dimensions.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/staging/dimensions.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/staging/tooltips.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/staging/tooltips.zs -------------------------------------------------------------------------------- /src/scripts/crafttweaker/utils.zs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/src/scripts/crafttweaker/utils.zs -------------------------------------------------------------------------------- /util/localiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkPacks/SkyFactory-4/HEAD/util/localiser.py --------------------------------------------------------------------------------