├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── quest-report.md │ └── task_board.md └── workflows │ ├── deploy-pages.yml │ └── release.yml ├── .gitignore ├── CODEOWNERS ├── Clueless.png ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── LICENSE ├── README.md ├── content │ ├── AE2 │ │ ├── Changes │ │ │ ├── coming-soon.md │ │ │ ├── crafting.md │ │ │ ├── export_crafts.md │ │ │ ├── for-devs.md │ │ │ ├── patterns.md │ │ │ └── qol.md │ │ └── index.md │ ├── Gameplay │ │ ├── Language And Lore │ │ │ └── CommonAbbreviations.md │ │ ├── Mechanics │ │ │ ├── AirQuality.md │ │ │ └── Temperature.md │ │ └── index.md │ ├── assets │ │ ├── ae2 │ │ │ ├── crafting │ │ │ │ ├── auto_complete_card.png │ │ │ │ ├── chat.png │ │ │ │ ├── craftconfirm.png │ │ │ │ ├── crafting.png │ │ │ │ ├── example_1.png │ │ │ │ ├── example_2.png │ │ │ │ ├── example_3.png │ │ │ │ ├── example_4.png │ │ │ │ ├── finish_chat.png │ │ │ │ ├── finish_toast.png │ │ │ │ ├── highlight.png │ │ │ │ ├── highlighted.png │ │ │ │ ├── modify-patterns.png │ │ │ │ ├── percentage.png │ │ │ │ ├── resume.png │ │ │ │ ├── setamount.png │ │ │ │ ├── singularity.png │ │ │ │ ├── singularity_bytes.png │ │ │ │ └── suspend.png │ │ │ ├── misc │ │ │ │ ├── alt_craft_amounts.png │ │ │ │ ├── controllersize.png │ │ │ │ ├── export_plan.png │ │ │ │ ├── export_status.png │ │ │ │ ├── followcrafts.png │ │ │ │ ├── numberformat.png │ │ │ │ ├── registry_sort.png │ │ │ │ ├── startwithfollow.png │ │ │ │ └── tooltip_search.png │ │ │ └── pattern │ │ │ │ ├── crafting_pattern.png │ │ │ │ ├── pattern_base.png │ │ │ │ ├── pattern_box.png │ │ │ │ ├── pattern_box_floating.png │ │ │ │ ├── pattern_fancy.png │ │ │ │ ├── processing_pattern.png │ │ │ │ ├── smithing_table_pattern.png │ │ │ │ ├── stackable.png │ │ │ │ └── stonecutting_pattern.png │ │ ├── favicon.png │ │ ├── logo.png │ │ ├── prism1.png │ │ ├── prism2.png │ │ ├── prism3.png │ │ ├── prism4.png │ │ └── prism5.jpg │ ├── index.md │ └── stylesheets │ │ └── extra.css ├── mkdocs.yml └── requirements.txt ├── manifest.json ├── modlist.html ├── overrides ├── config │ ├── CoroUtil │ │ └── General.toml │ ├── DistantHorizons.toml │ ├── Hexerei-client.toml │ ├── Hexerei-common.toml │ ├── HologramPanel │ │ ├── client.toml │ │ ├── plugins │ │ │ └── hologram_panel_build_in.toml │ │ └── style.toml │ ├── MouseTweaks.cfg │ ├── NoChatReports │ │ ├── NCR-Client.json │ │ ├── NCR-Common.json │ │ ├── NCR-Encryption.json │ │ ├── NCR-ServerPreferences.json │ │ └── README.md │ ├── ProjectRed.cfg │ ├── SeasonHUD-client.toml │ ├── ad_astra-client.jsonc │ ├── ad_astra.jsonc │ ├── advanced_ae-common.toml │ ├── ae2 │ │ ├── client.json │ │ ├── client.json.bak │ │ └── common.json │ ├── ae2ct-client.toml │ ├── aether-client.toml │ ├── aether-common.toml │ ├── aether │ │ ├── aether_customizations.txt │ │ └── sun_altar_whitelist.json │ ├── aiimprovements-common.toml │ ├── apotheosis │ │ ├── adventure.cfg │ │ ├── apotheosis.cfg │ │ ├── ench.cfg │ │ ├── enchantments.cfg │ │ ├── garden.cfg │ │ ├── names.cfg │ │ ├── potion.cfg │ │ ├── spawner.cfg │ │ └── village.cfg │ ├── appleskin-client.toml │ ├── architects_palette-common.toml │ ├── ars_nouveau-client.toml │ ├── ars_nouveau-common.toml │ ├── ars_nouveau-server.toml │ ├── ars_nouveau │ │ ├── burst.toml │ │ ├── glyph_accelerate.toml │ │ ├── glyph_amplify.toml │ │ ├── glyph_animate_block.toml │ │ ├── glyph_aoe.toml │ │ ├── glyph_blink.toml │ │ ├── glyph_bounce.toml │ │ ├── glyph_break.toml │ │ ├── glyph_cold_snap.toml │ │ ├── glyph_conjure_water.toml │ │ ├── glyph_craft.toml │ │ ├── glyph_crush.toml │ │ ├── glyph_cut.toml │ │ ├── glyph_dampen.toml │ │ ├── glyph_decelerate.toml │ │ ├── glyph_delay.toml │ │ ├── glyph_dispel.toml │ │ ├── glyph_duration_down.toml │ │ ├── glyph_ender_inventory.toml │ │ ├── glyph_evaporate.toml │ │ ├── glyph_exchange.toml │ │ ├── glyph_explosion.toml │ │ ├── glyph_extend_time.toml │ │ ├── glyph_extract.toml │ │ ├── glyph_fangs.toml │ │ ├── glyph_fell.toml │ │ ├── glyph_firework.toml │ │ ├── glyph_flare.toml │ │ ├── glyph_fortune.toml │ │ ├── glyph_freeze.toml │ │ ├── glyph_glide.toml │ │ ├── glyph_gravity.toml │ │ ├── glyph_grow.toml │ │ ├── glyph_gust.toml │ │ ├── glyph_harm.toml │ │ ├── glyph_harvest.toml │ │ ├── glyph_heal.toml │ │ ├── glyph_hex.toml │ │ ├── glyph_ignite.toml │ │ ├── glyph_infuse.toml │ │ ├── glyph_intangible.toml │ │ ├── glyph_interact.toml │ │ ├── glyph_invisibility.toml │ │ ├── glyph_launch.toml │ │ ├── glyph_leap.toml │ │ ├── glyph_light.toml │ │ ├── glyph_lightning.toml │ │ ├── glyph_linger.toml │ │ ├── glyph_name.toml │ │ ├── glyph_orbit.toml │ │ ├── glyph_phantom_block.toml │ │ ├── glyph_pickup.toml │ │ ├── glyph_pierce.toml │ │ ├── glyph_place_block.toml │ │ ├── glyph_projectile.toml │ │ ├── glyph_pull.toml │ │ ├── glyph_randomize.toml │ │ ├── glyph_redstone_signal.toml │ │ ├── glyph_rotate.toml │ │ ├── glyph_rune.toml │ │ ├── glyph_self.toml │ │ ├── glyph_sense_magic.toml │ │ ├── glyph_sensitive.toml │ │ ├── glyph_slowfall.toml │ │ ├── glyph_smelt.toml │ │ ├── glyph_snare.toml │ │ ├── glyph_split.toml │ │ ├── glyph_summon_decoy.toml │ │ ├── glyph_summon_steed.toml │ │ ├── glyph_summon_undead.toml │ │ ├── glyph_summon_vex.toml │ │ ├── glyph_summon_wolves.toml │ │ ├── glyph_toss.toml │ │ ├── glyph_touch.toml │ │ ├── glyph_underfoot.toml │ │ ├── glyph_wall.toml │ │ ├── glyph_wind_shear.toml │ │ ├── glyph_wither.toml │ │ ├── reset.toml │ │ ├── rewind.toml │ │ └── wololo.toml │ ├── ars_ocultas │ │ └── base-common.toml │ ├── arseng-common.toml │ ├── attributeslib.cfg │ ├── balm-client.toml │ ├── balm-common.toml │ ├── basicdiscordrichpresence-client.toml │ ├── betterchunkloading.json │ ├── bettercombat │ │ ├── client.json5 │ │ ├── fallback_compatibility.json │ │ └── server.json5 │ ├── betterdeserttemples-forge-1_20.toml │ ├── betterdeserttemples │ │ ├── README.txt │ │ └── forge-1_20 │ │ │ ├── README.txt │ │ │ ├── armorstands.json │ │ │ └── itemframes.json │ ├── betterdungeons-forge-1_20.toml │ ├── betterendisland-forge-1_20.toml │ ├── betterfortresses-forge-1_20.toml │ ├── betterfortresses │ │ ├── README.txt │ │ └── forge-1_20 │ │ │ ├── README.txt │ │ │ └── itemframes.json │ ├── betterfpsdist.json │ ├── betterjungletemples-forge-1_20.toml │ ├── bettermineshafts-forge-1_20.toml │ ├── betteroceanmonuments-forge-1_20.toml │ ├── betterstrongholds-forge-1_20.toml │ ├── betterstrongholds │ │ ├── README.txt │ │ └── forge-1_20 │ │ │ ├── README.txt │ │ │ ├── armorstands.json │ │ │ ├── itemframes.json │ │ │ ├── ores.json │ │ │ └── rareblocks.json │ ├── betterwitchhuts-forge-1_20.toml │ ├── bhc-common.toml │ ├── bhc │ │ └── drops.json │ ├── biomesoplenty │ │ ├── biome_toggles.json │ │ ├── gameplay.toml │ │ └── generation.toml │ ├── biomeswevegone │ │ ├── mob_spawn.json │ │ ├── trades.json │ │ └── world_generation.json5 │ ├── blasmatech-common.toml │ ├── bloodmagic-client.toml │ ├── bloodmagic-common.toml │ ├── botania-client.toml │ ├── botania-common.toml │ ├── brute_force_rendering_culling-client.toml │ ├── buildinggadgets2-common.toml │ ├── carryon-client.toml │ ├── carryon-common.toml │ ├── cavedust.toml │ ├── ccl.cfg │ ├── chloride-client.json │ ├── chunksending.json │ ├── clickmachine.cfg │ ├── client-fields.json │ ├── colorfulhearts.toml │ ├── comforts-server.toml │ ├── commoncapabilities-common.toml │ ├── configuration-options.json │ ├── connectivity.json │ ├── constructionwand-client.toml │ ├── corgilib │ │ ├── announcement_config.json5 │ │ └── announcement_store.json │ ├── cosmeticarmorreworked-client.toml │ ├── cosmeticarmorreworked-common.toml │ ├── cosmos-portals-common.toml │ ├── crackerslib-client.toml │ ├── craftingstation-client.toml │ ├── crash_assistant │ │ ├── config.toml │ │ ├── lang │ │ │ ├── README.md │ │ │ ├── en_us.json │ │ │ ├── es_es.json │ │ │ ├── it_it.json │ │ │ ├── ru_ru.json │ │ │ └── zh_cn.json │ │ ├── modlist.json │ │ └── problematic_mods_config.json │ ├── create-client.toml │ ├── create-common.toml │ ├── createlowheated-common.toml │ ├── cristellib │ │ ├── minecraftED.json5 │ │ └── minecraftP.json5 │ ├── croptopia │ │ └── croptopia_v3.conf │ ├── cull-less-leaves.json │ ├── cumulus_menus-client.toml │ ├── cupboard.json │ ├── curios-client.toml │ ├── curios-common.toml │ ├── custom-micromaterials.cfg │ ├── cyclopscore-common.toml │ ├── deep_aether-client.toml │ ├── deep_aether-common.toml │ ├── delightful-common.toml │ ├── diet-client.toml │ ├── diet-server.toml │ ├── ding.toml │ ├── dragonfight.json │ ├── dummmmmmy-client.toml │ ├── dummmmmmy-common.toml │ ├── dynamic_fps.json │ ├── e4mc │ │ └── e4mc.toml │ ├── effortlessbuilding-client.toml │ ├── effortlessbuilding-common.toml │ ├── embeddium++.toml │ ├── embeddium-fingerprint.json │ ├── embeddium-mixins.properties │ ├── embeddium-options.json │ ├── embeddium-shaders.properties │ ├── embers-client.toml │ ├── embers-common.toml │ ├── emi.css │ ├── emi_loot_config.toml │ ├── emitrades.json5 │ ├── enderchests-client.toml │ ├── enderchests.toml │ ├── endermanoverhaul-client.jsonc │ ├── endermanoverhaul.jsonc │ ├── endertanks-client.toml │ ├── endertanks.toml │ ├── endrem.toml │ ├── enigmaticgraves-common.toml │ ├── entity_model_features.json │ ├── entity_texture_features.json │ ├── entityculling.json │ ├── epicfight-client.toml │ ├── epicfight.toml │ ├── etf_warnings.json │ ├── euphoria_patcher.properties │ ├── expanded_ecosphere │ │ ├── config.json5 │ │ └── replace_biomes.json5 │ ├── expatternprovider-common.toml │ ├── experienceobelisk-common.toml │ ├── explorify │ │ ├── structure_settings.json5 │ │ └── structure_toggles.json5 │ ├── extremesoundmuffler-client.toml │ ├── fancymenu │ │ ├── assets │ │ │ └── fmenu │ │ │ │ ├── 0.6.0-version-banner.png │ │ │ │ ├── 0.7.0-version-banner.png │ │ │ │ ├── 0.8.0-version-banner.png │ │ │ │ ├── accesibility-default.png │ │ │ │ ├── accesibility-select.png │ │ │ │ ├── act1.png │ │ │ │ ├── act2.png │ │ │ │ ├── act3.png │ │ │ │ ├── background.png │ │ │ │ ├── button-default.png │ │ │ │ ├── button-exit-selected.png │ │ │ │ ├── button-select.png │ │ │ │ ├── frontiers16x.icns │ │ │ │ ├── frontiers16x.png │ │ │ │ ├── frontiers32x.png │ │ │ │ ├── frontiers_logo_detailed.png │ │ │ │ ├── frontiers_new.png │ │ │ │ ├── lang-default.png │ │ │ │ ├── lang-select.png │ │ │ │ ├── norma2d.png │ │ │ │ ├── splash.txt │ │ │ │ ├── untitled-theme.ogg │ │ │ │ └── uuuhlogo.png │ │ ├── audio_element_controller_metas.json │ │ ├── config.txt │ │ ├── custom_gui_screens.txt │ │ ├── customizablemenus.txt │ │ ├── customization │ │ │ ├── drippy_loading_overlay_layout.txt │ │ │ ├── frontiers_new.txt │ │ │ ├── frontiersmm.txt │ │ │ ├── mod-menu.txt │ │ │ ├── multiplayer-menu.txt │ │ │ ├── options-audio.txt │ │ │ ├── options-menu.txt │ │ │ └── singleplayer-menu.txt │ │ ├── extensions │ │ │ └── fmaudio │ │ │ │ ├── config.cfg │ │ │ │ └── locals │ │ │ │ └── en_us.local │ │ ├── layout_editor │ │ │ └── widgets │ │ │ │ └── element_layer_control.lewidget │ │ ├── legacy_checklist.txt │ │ ├── locals │ │ │ ├── de_de.local │ │ │ ├── en_us.local │ │ │ ├── pl_pl.local │ │ │ ├── pt_br.local │ │ │ ├── ru_ru.local │ │ │ ├── uk_ua.local │ │ │ └── zh_cn.local │ │ ├── menu_identifiers.db │ │ ├── options.txt │ │ ├── slideshows │ │ │ └── loadingScreen │ │ │ │ ├── images │ │ │ │ ├── image_1.png │ │ │ │ ├── image_10.png │ │ │ │ ├── image_11.png │ │ │ │ ├── image_12.png │ │ │ │ ├── image_13.png │ │ │ │ ├── image_2.png │ │ │ │ ├── image_3.png │ │ │ │ ├── image_4.png │ │ │ │ ├── image_5.png │ │ │ │ ├── image_6.png │ │ │ │ ├── image_7.png │ │ │ │ ├── image_8.png │ │ │ │ └── image_9.png │ │ │ │ └── properties.txt │ │ ├── ui_themes │ │ │ ├── dark.json │ │ │ └── light.json │ │ └── user_variables.db │ ├── farmersdelight-client.toml │ ├── farmersdelight-common.toml │ ├── farsight.json │ ├── fastsuite.cfg │ ├── ferritecore-mixin.toml │ ├── findme.json │ ├── flywheel-client.toml │ ├── fml.toml │ ├── forestry-client.toml │ ├── forge-client.toml │ ├── forgematica.json │ ├── framedblocks-client.toml │ ├── framedblocks-common.toml │ ├── ftbbackups2.json │ ├── ftbqoptimizer.snbt │ ├── ftbquests │ │ └── quests │ │ │ ├── chapter_groups.snbt │ │ │ ├── chapters │ │ │ ├── a_crack_in_the_sky_aether.snbt │ │ │ ├── a_moment_fractured__luna.snbt │ │ │ ├── acceptance.snbt │ │ │ ├── all_or_nothing_now.snbt │ │ │ ├── blindly_followed.snbt │ │ │ ├── burning_the_veil_iv.snbt │ │ │ ├── digital_roots_ae2_basic.snbt │ │ │ ├── dominance.snbt │ │ │ ├── enlightenment.snbt │ │ │ ├── eternal_reward.snbt │ │ │ ├── exoplanet_03s9__earth.snbt │ │ │ ├── exoplanet_04s9__mars.snbt │ │ │ ├── eye_of_harmony.snbt │ │ │ ├── fast_as_light.snbt │ │ │ ├── forged_in_galefury.snbt │ │ │ ├── fpower_and_you.snbt │ │ │ ├── freshly_forged_souls.snbt │ │ │ ├── general_tiers.snbt │ │ │ ├── hatred.snbt │ │ │ ├── infinity_archive.snbt │ │ │ ├── maximum_output.snbt │ │ │ ├── maximum_temperature.snbt │ │ │ ├── mercy.snbt │ │ │ ├── navigation_error__log_1_hv.snbt │ │ │ ├── navigation_online.snbt │ │ │ ├── questlogic.snbt │ │ │ ├── regret.snbt │ │ │ ├── rising_pressure_new.snbt │ │ │ ├── safe_travels__ev.snbt │ │ │ ├── singularity_zero.snbt │ │ │ ├── solar_dominance.snbt │ │ │ ├── star_housing_calculators.snbt │ │ │ ├── starclass_simulators.snbt │ │ │ ├── store_placeholder.snbt │ │ │ ├── the_busy_bee.snbt │ │ │ ├── the_elements_of_frontiers.snbt │ │ │ ├── the_oracle_tipler.snbt │ │ │ ├── turn_on_the_lights__dev.snbt │ │ │ ├── unity.snbt │ │ │ ├── useful_baubles.snbt │ │ │ ├── wishful_thinking.snbt │ │ │ └── worth_every_ingot.snbt │ │ │ ├── data.snbt │ │ │ └── reward_tables │ │ │ ├── bwg_saplings.snbt │ │ │ ├── cosmetics.snbt │ │ │ ├── hammer.snbt │ │ │ ├── light_lunch.snbt │ │ │ ├── music_discs.snbt │ │ │ └── saplings.snbt │ ├── ftbxmodcompat.snbt │ ├── functionalstorage │ │ ├── functionalstorage-client.toml │ │ └── functionalstorage-common.toml │ ├── fzzy_config │ │ └── keybinds.toml │ ├── globalgamerules-common.toml │ ├── gm_construct-common.toml │ ├── gregiceng.yaml │ ├── gtceu.yaml │ ├── gtmutils.yaml │ ├── guideme.toml │ ├── ichunutil │ │ ├── ichunutil-client.toml │ │ └── themes │ │ │ ├── aztec.json │ │ │ ├── blue&black.json │ │ │ ├── blue&orange.json │ │ │ ├── default.json │ │ │ ├── grassgreen.json │ │ │ ├── green&black.json │ │ │ ├── lazygray.json │ │ │ ├── monogeneric.json │ │ │ ├── nightblack.json │ │ │ ├── red&black.json │ │ │ ├── skyblue.json │ │ │ └── whitelight.json │ ├── immediatelyfast.json │ ├── immersivelanterns-client.toml │ ├── integrateddynamics-common.toml │ ├── integrateddynamicscompat-common.toml │ ├── inventorysorter-client.toml │ ├── ironfurnaces-client.toml │ ├── ironfurnaces.toml │ ├── itemcollectors-common.toml │ ├── jade │ │ ├── hide-blocks.json │ │ ├── hide-entities.json │ │ ├── jade.json │ │ ├── plugins.json │ │ └── sort-order.json │ ├── jei │ │ ├── blacklist.cfg │ │ ├── ingredient-list-mod-sort-order.ini │ │ ├── ingredient-list-type-sort-order.ini │ │ ├── jei-client.ini │ │ ├── jei-colors.ini │ │ ├── jei-debug.ini │ │ ├── jei-mod-id-format.ini │ │ └── recipe-category-sort-order.ini │ ├── jmi-client.toml │ ├── konkrete │ │ └── locals │ │ │ ├── de_de.local │ │ │ ├── en_us.local │ │ │ ├── pl_pl.local │ │ │ └── pt_br.local │ ├── legendarysurvivaloverhaul │ │ ├── legendarysurvivaloverhaul-client.toml │ │ └── legendarysurvivaloverhaul-common.toml │ ├── letmedespawn.json │ ├── lithium.properties │ ├── littletiles-client.json │ ├── littletiles.json │ ├── lodestone-client.toml │ ├── logbegone.toml │ ├── lootr-client.toml │ ├── lootr-common.toml │ ├── mae2-common.toml │ ├── mae2a-common.toml │ ├── mafglib.json │ ├── malum-client.toml │ ├── malum-common.toml │ ├── mantle-client.toml │ ├── measurements-client.toml │ ├── megacells.json │ ├── merequester-common.toml │ ├── mobtimizations │ │ ├── features-customization.toml │ │ └── features.toml │ ├── modernfix-common.toml │ ├── modernfix-mixins.properties │ ├── modnametooltip-client.toml │ ├── modonomicon-client.toml │ ├── moonlight-client.toml │ ├── moonlight-common.toml │ ├── morered-client.toml │ ├── naturescompass-client.toml │ ├── naturescompass-common.toml │ ├── nerb.yaml │ ├── nomoportals-common.toml │ ├── observable.json │ ├── occultism-client.toml │ ├── oculus.properties │ ├── okzoomer-client.toml │ ├── out_of_sight-client.toml │ ├── overloadedarmorbar-client.toml │ ├── palladium-config.json │ ├── paraglider-common.toml │ ├── paraglider-player-states.toml │ ├── parcool-client.toml │ ├── patchouli-client.toml │ ├── polymorph-integrations.toml │ ├── ponder-client.toml │ ├── prettyrain.json5 │ ├── questsadditions-client.toml │ ├── recipeessentials.json │ ├── rehooked-client.toml │ ├── renderscale.json5 │ ├── resourceful-config-web.json │ ├── restrictedportals-common.toml │ ├── sdrp-common.json │ ├── sereneseasons │ │ ├── fertility.toml │ │ └── seasons.toml │ ├── serverconfigupdater-common.toml │ ├── shetiphiancore-client.toml │ ├── shetiphiancore.toml │ ├── shimmer-client.toml │ ├── showcaseitem-common.toml │ ├── shrink-common.toml │ ├── sidebar_buttons.json │ ├── simpleclouds-client.toml │ ├── simpleclouds-common.toml │ ├── simplyswords_extra │ │ ├── backupconfig.json │ │ └── loot_config.json5 │ ├── simplyswords_main │ │ ├── gem_effects.json5 │ │ ├── general.json5 │ │ ├── loot.json5 │ │ ├── runic_effects.json5 │ │ ├── status_effects.json5 │ │ ├── unique_effects.json5 │ │ └── weapon_attributes.json5 │ ├── smoothchunk.json │ ├── sodiumdynamiclights-client.toml │ ├── sodiumextras-client.toml │ ├── solonion-client.json │ ├── solonion.json │ ├── sophisticatedbackpacks-common.toml │ ├── sophisticatedcore-client.toml │ ├── sophisticatedcore-common.toml │ ├── sophisticatedstorage-client.toml │ ├── sophisticatedstorage-common.toml │ ├── sound_physics_remastered │ │ ├── allowed_sounds.properties │ │ ├── occlusion.properties │ │ ├── reflectivity.properties │ │ └── soundphysics.properties │ ├── spark │ │ ├── activity.json │ │ └── config.json │ ├── supplementaries-client.toml │ ├── supplementaries-common.toml │ ├── tconstruct-client.toml │ ├── tconstruct-common.toml │ ├── tectonic.json │ ├── tempad-client.jsonc │ ├── tempad.jsonc │ ├── terrablender.toml │ ├── thinair-common.toml │ ├── tinkerslevellingaddon-client.toml │ ├── tips.json │ ├── titanium │ │ ├── titanium-tags.toml │ │ └── titanium.toml │ ├── toms_storage-common.toml │ ├── toolbelt-client.toml │ ├── toolbelt-common.toml │ ├── torchmaster.toml │ ├── trashcans-common.toml │ ├── travelanchors │ │ ├── client.json5 │ │ └── common.json5 │ ├── trofers │ │ └── general.json5 │ ├── ulvcovm-common.toml │ ├── undergarden-client.toml │ ├── undergarden-common.toml │ ├── usefulbackpacks-common.toml │ ├── waterframes-client.toml │ ├── watut-client.toml │ ├── watut-common.toml │ ├── watut-item-arm-adjustments.json │ ├── watut-server.toml │ ├── waves-common.toml │ ├── waystones-common.toml │ └── wfscaveoverhaul.cfg ├── defaultconfigs │ ├── aether-client.toml │ ├── aether-common.toml │ ├── aether-server.toml │ ├── carryon-common.toml │ ├── coldsweat │ │ ├── entity_settings.toml │ │ ├── item_settings.toml │ │ ├── main.toml │ │ └── world_settings.toml │ ├── create-server.toml │ ├── darkmodeeverywhere-client.toml │ ├── effortlessbuilding-common.toml │ ├── ftbchunks │ │ ├── client-config.snbt │ │ └── ftbchunks-world.snbt │ ├── ftbessentials-server.snbt │ ├── ftblibrary │ │ └── ftblibrary-client.snbt │ ├── ftbqoptimizer.snbt │ ├── ftbquests │ │ └── client-config.snbt │ ├── ftbultimine │ │ ├── ftbultimine-client.snbt │ │ └── ftbultimine-server.snbt │ ├── ftbxmodcompat │ │ └── ftbxmodcompat.snbt │ ├── globalgamerules-common.toml │ ├── integrateddynamics-common.toml │ ├── noflyzone-server.toml │ ├── nomoportals-common.toml │ ├── occultism-server.toml │ ├── paraglider-common.toml │ ├── paraglider-player-states.toml │ ├── paraglider-server.toml │ ├── parcool-client.toml │ ├── parcool-server.toml │ ├── restrictedportals-common.toml │ ├── sereneseasons-server.toml │ ├── sereneseasons │ │ └── seasons.toml │ ├── sophisticatedbackpacks-server.toml │ ├── sophisticatedstorage-server.toml │ ├── supplementaries-client.toml │ ├── supplementaries-common.toml │ ├── thinair-common.toml │ ├── tinkerslevellingaddon-server.toml │ └── toms_storage-server.toml ├── kubejs │ ├── README.txt │ ├── assets │ │ ├── ad_astra │ │ │ └── textures │ │ │ │ └── entity │ │ │ │ └── rocket │ │ │ │ └── tier_1_rocket.png │ │ ├── apotheosis │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ │ ├── models │ │ │ │ └── item │ │ │ │ │ └── gems │ │ │ │ │ └── core │ │ │ │ │ ├── ember.json │ │ │ │ │ ├── frost.json │ │ │ │ │ └── malignant.json │ │ │ └── textures │ │ │ │ └── items │ │ │ │ └── gems │ │ │ │ └── core │ │ │ │ ├── ember.png │ │ │ │ ├── frost.png │ │ │ │ └── malignant.png │ │ ├── aquamirae │ │ │ └── item_skins │ │ │ │ ├── coral_lance.json │ │ │ │ ├── dagger_of_greed.json │ │ │ │ ├── divider.json │ │ │ │ ├── fin_cutter.json │ │ │ │ ├── poisoned_blade.json │ │ │ │ ├── remnants_saber.json │ │ │ │ ├── sweet_lance.json │ │ │ │ ├── terrible_sword.json │ │ │ │ └── whisper_of_the_abyss.json │ │ ├── blasmatech │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ ├── botania │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ ├── cosmiccore │ │ │ ├── lang │ │ │ │ └── zh_cn.json │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── antiblock_black.png │ │ │ │ ├── antiblock_black_s.png │ │ │ │ ├── antiblock_blue.png │ │ │ │ ├── antiblock_blue_s.png │ │ │ │ ├── antiblock_brown.png │ │ │ │ ├── antiblock_brown_s.png │ │ │ │ ├── antiblock_cyan.png │ │ │ │ ├── antiblock_cyan_s.png │ │ │ │ ├── antiblock_dark_green.png │ │ │ │ ├── antiblock_dark_green_s.png │ │ │ │ ├── antiblock_gray.png │ │ │ │ ├── antiblock_gray_s.png │ │ │ │ ├── antiblock_green.png │ │ │ │ ├── antiblock_green_s.png │ │ │ │ ├── antiblock_light_blue.png │ │ │ │ ├── antiblock_light_blue_s.png │ │ │ │ ├── antiblock_light_gray.png │ │ │ │ ├── antiblock_light_gray_s.png │ │ │ │ ├── antiblock_lime.png │ │ │ │ ├── antiblock_magenta.png │ │ │ │ ├── antiblock_magenta_s.png │ │ │ │ ├── antiblock_orange.png │ │ │ │ ├── antiblock_orange_s.png │ │ │ │ ├── antiblock_pink.png │ │ │ │ ├── antiblock_pink_s.png │ │ │ │ ├── antiblock_purple.png │ │ │ │ ├── antiblock_purple_s.png │ │ │ │ ├── antiblock_red.png │ │ │ │ ├── antiblock_red_s.png │ │ │ │ ├── antiblock_white.png │ │ │ │ ├── antiblock_white_s.png │ │ │ │ ├── antiblock_yellow.png │ │ │ │ ├── antiblock_yellow_s.png │ │ │ │ └── casings │ │ │ │ │ └── coils │ │ │ │ │ ├── prismatic_tungstensteel.png │ │ │ │ │ ├── prismatic_tungstensteel.png.mcmeta │ │ │ │ │ ├── prismatic_tungstensteel_bloom.png │ │ │ │ │ ├── prismatic_tungstensteel_bloom.png.mcmeta │ │ │ │ │ ├── prismatic_tungstensteel_bloom_ctm.png │ │ │ │ │ ├── prismatic_tungstensteel_bloom_ctm.png.mcmeta │ │ │ │ │ ├── prismatic_tungstensteel_ctm.png │ │ │ │ │ └── prismatic_tungstensteel_ctm.png.mcmeta │ │ │ │ └── questimages │ │ │ │ ├── firststeps │ │ │ │ ├── bannerwide.png │ │ │ │ ├── firstbackground.png │ │ │ │ └── frontiers.png │ │ │ │ └── miscicons │ │ │ │ └── wingedborder.png │ │ ├── diet │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ ├── emi │ │ │ └── category │ │ │ │ └── properties │ │ │ │ └── emi.json │ │ ├── frontiers │ │ │ ├── lang │ │ │ │ └── zh_cn.json │ │ │ ├── planet_renderers │ │ │ │ ├── sun.json │ │ │ │ └── sun_orbit.json │ │ │ ├── textures │ │ │ │ └── questimages │ │ │ │ │ ├── firststeps │ │ │ │ │ ├── bannerwide.png │ │ │ │ │ ├── firstbackground.png │ │ │ │ │ ├── frontiers.png │ │ │ │ │ ├── frontiers16x.png │ │ │ │ │ └── frontiers32x.png │ │ │ │ │ ├── miscicons │ │ │ │ │ ├── a.png │ │ │ │ │ ├── b.png │ │ │ │ │ ├── blank_borders.png │ │ │ │ │ ├── c.png │ │ │ │ │ ├── cosmic.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── ev.png │ │ │ │ │ ├── fin.png │ │ │ │ │ ├── frontiersdefault.png │ │ │ │ │ ├── gear_and_baubles.png │ │ │ │ │ ├── hv.png │ │ │ │ │ ├── iv.png │ │ │ │ │ ├── luv.png │ │ │ │ │ ├── lv.png │ │ │ │ │ ├── max_1.png │ │ │ │ │ ├── max_2.png │ │ │ │ │ ├── mv.png │ │ │ │ │ ├── opv.png │ │ │ │ │ ├── steam.png │ │ │ │ │ ├── story-title.png │ │ │ │ │ ├── table.png │ │ │ │ │ ├── tessarae.png │ │ │ │ │ ├── uev.png │ │ │ │ │ ├── uhv.png │ │ │ │ │ ├── uiv.png │ │ │ │ │ ├── uv.png │ │ │ │ │ ├── uxv.png │ │ │ │ │ ├── wingedborder.png │ │ │ │ │ └── zpm.png │ │ │ │ │ └── questimages │ │ │ │ │ ├── emberactivator.png │ │ │ │ │ └── pressurerefinery.png │ │ │ └── tips │ │ │ │ ├── carry.json │ │ │ │ ├── ccore.json │ │ │ │ ├── ghost2.json │ │ │ │ ├── ghost3.json │ │ │ │ ├── hammer.json │ │ │ │ ├── love.json │ │ │ │ ├── ocean.json │ │ │ │ ├── prisoner.json │ │ │ │ ├── respirator.json │ │ │ │ ├── soup.json │ │ │ │ ├── sun_tier.json │ │ │ │ ├── temp.json │ │ │ │ ├── tip_template.json.disable │ │ │ │ └── warden.json │ │ ├── functionalstorage │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ │ └── textures │ │ │ │ └── item │ │ │ │ └── gold_upgrade.png │ │ ├── gateways │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ ├── gtceu │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ │ ├── models │ │ │ │ └── item │ │ │ │ │ └── material_sets │ │ │ │ │ ├── mana │ │ │ │ │ └── ingot.json │ │ │ │ │ ├── prisma │ │ │ │ │ ├── gem.json │ │ │ │ │ └── ingot.json │ │ │ │ │ ├── starry │ │ │ │ │ └── ingot.json │ │ │ │ │ └── utherium │ │ │ │ │ └── gem.json │ │ │ ├── textures │ │ │ │ ├── block │ │ │ │ │ ├── casings │ │ │ │ │ │ ├── coils │ │ │ │ │ │ │ ├── prismatic_tungsten_coil.png │ │ │ │ │ │ │ ├── prismatic_tungsten_coil.png.mcmeta │ │ │ │ │ │ │ ├── prismatic_tungsten_coil_bloom.png │ │ │ │ │ │ │ ├── prismatic_tungsten_coil_bloom.png.mcmeta │ │ │ │ │ │ │ ├── prismatic_tungsten_coil_bloom_ctm.png │ │ │ │ │ │ │ ├── prismatic_tungsten_coil_bloom_ctm.png.mcmeta │ │ │ │ │ │ │ ├── prismatic_tungsten_coil_ctm.png │ │ │ │ │ │ │ └── prismatic_tungsten_coil_ctm.png.mcmeta │ │ │ │ │ │ ├── high_temperature_fission_casing.png │ │ │ │ │ │ ├── high_temperature_fission_casing_ctm.png │ │ │ │ │ │ ├── high_temperature_fission_casing_ctm.png.mcmeta │ │ │ │ │ │ ├── solid │ │ │ │ │ │ │ ├── machine_casing_bronze_plated_bricks.png │ │ │ │ │ │ │ ├── machine_casing_bronze_plated_bricks.png.mcmeta │ │ │ │ │ │ │ └── machine_casing_bronze_plated_bricks_ctm.png │ │ │ │ │ │ ├── steam │ │ │ │ │ │ │ ├── bricked_bronze │ │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ └── bricked_steel │ │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ └── voltage │ │ │ │ │ │ │ ├── ev │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ ├── hv │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ ├── iv │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ ├── luv │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ ├── lv │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ ├── mv │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ ├── uev │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ ├── uhv │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── bottom.png.mcmeta │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ ├── side.png.mcmeta │ │ │ │ │ │ │ ├── top.png │ │ │ │ │ │ │ └── top.png.mcmeta │ │ │ │ │ │ │ ├── uv │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ │ │ └── zpm │ │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── fluids │ │ │ │ │ │ ├── fluid.absolute_primordial_resin.png │ │ │ │ │ │ ├── fluid.absolute_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.abyss_grease.png │ │ │ │ │ │ ├── fluid.abyss_grease.png.mcmeta │ │ │ │ │ │ ├── fluid.aether_air.png │ │ │ │ │ │ ├── fluid.aether_air.png.mcmeta │ │ │ │ │ │ ├── fluid.alpha_primordial_resin.png │ │ │ │ │ │ ├── fluid.alpha_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.argon_honey.png │ │ │ │ │ │ ├── fluid.argon_honey.png.mcmeta │ │ │ │ │ │ ├── fluid.ashdew_steam.png │ │ │ │ │ │ ├── fluid.ashdew_steam.png.mcmeta │ │ │ │ │ │ ├── fluid.astraline_corrosion_agent.png │ │ │ │ │ │ ├── fluid.astraline_corrosion_agent.png.mcmeta │ │ │ │ │ │ ├── fluid.astraline_corrosion_agent_old.png │ │ │ │ │ │ ├── fluid.astraline_prismatic_solution.png │ │ │ │ │ │ ├── fluid.astraline_prismatic_solution.png.mcmeta │ │ │ │ │ │ ├── fluid.awakened_cinder_gas.png │ │ │ │ │ │ ├── fluid.awakened_cinder_gas.png.mcmeta │ │ │ │ │ │ ├── fluid.blank.png │ │ │ │ │ │ ├── fluid.cinder_gas.png │ │ │ │ │ │ ├── fluid.cinder_gas.png.mcmeta │ │ │ │ │ │ ├── fluid.citrus_polymer.png │ │ │ │ │ │ ├── fluid.citrus_polymer.png.mcmeta │ │ │ │ │ │ ├── fluid.citrus_polymer_honey.png │ │ │ │ │ │ ├── fluid.citrus_polymer_honey.png.mcmeta │ │ │ │ │ │ ├── fluid.crude_source_oils.png │ │ │ │ │ │ ├── fluid.crude_source_oils.png.mcmeta │ │ │ │ │ │ ├── fluid.dense_primordial_resin.png │ │ │ │ │ │ ├── fluid.dense_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.dew_light.png │ │ │ │ │ │ ├── fluid.dew_light.png.mcmeta │ │ │ │ │ │ ├── fluid.excited_hadalite.png │ │ │ │ │ │ ├── fluid.excited_hadalite.png.mcmeta │ │ │ │ │ │ ├── fluid.extracted_tau.png │ │ │ │ │ │ ├── fluid.extracted_tau.png.mcmeta │ │ │ │ │ │ ├── fluid.genesis_resin.png │ │ │ │ │ │ ├── fluid.genesis_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.grading_fluid_1.png │ │ │ │ │ │ ├── fluid.grading_fluid_1.png.mcmeta │ │ │ │ │ │ ├── fluid.grading_fluid_2.png │ │ │ │ │ │ ├── fluid.grading_fluid_2.png.mcmeta │ │ │ │ │ │ ├── fluid.grading_fluid_3.png │ │ │ │ │ │ ├── fluid.grading_fluid_3.png.mcmeta │ │ │ │ │ │ ├── fluid.grading_fluid_4.png │ │ │ │ │ │ ├── fluid.grading_fluid_4.png.mcmeta │ │ │ │ │ │ ├── fluid.grading_fluid_5.png │ │ │ │ │ │ ├── fluid.grading_fluid_5.png.mcmeta │ │ │ │ │ │ ├── fluid.grading_fluid_6.png │ │ │ │ │ │ ├── fluid.grading_fluid_6.png.mcmeta │ │ │ │ │ │ ├── fluid.grading_fluid_7.png │ │ │ │ │ │ ├── fluid.grading_fluid_7.png.mcmeta │ │ │ │ │ │ ├── fluid.hadalite_sludge.png │ │ │ │ │ │ ├── fluid.hadalite_sludge.png.mcmeta │ │ │ │ │ │ ├── fluid.heated_sodium_hydroxide_bauxite.png │ │ │ │ │ │ ├── fluid.heated_sodium_hydroxide_bauxite.png.mcmeta │ │ │ │ │ │ ├── fluid.heavy_aerocloud_seltzer.png │ │ │ │ │ │ ├── fluid.heavy_aerocloud_seltzer.png.mcmeta │ │ │ │ │ │ ├── fluid.heavy_primordial_resin.png │ │ │ │ │ │ ├── fluid.heavy_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.holmium_rubidium_colloid.png │ │ │ │ │ │ ├── fluid.holmium_rubidium_colloid.png.mcmeta │ │ │ │ │ │ ├── fluid.holmium_slush_mixture.png │ │ │ │ │ │ ├── fluid.holmium_slush_mixture.png.mcmeta │ │ │ │ │ │ ├── fluid.holmium_solution.png │ │ │ │ │ │ ├── fluid.holmium_solution.png.mcmeta │ │ │ │ │ │ ├── fluid.hydrogen_honey.png │ │ │ │ │ │ ├── fluid.hydrogen_honey.png.mcmeta │ │ │ │ │ │ ├── fluid.hydrogensilesquioxane.png │ │ │ │ │ │ ├── fluid.hydrogensilesquioxane.png.mcmeta │ │ │ │ │ │ ├── fluid.ichorvein_primordial_resin.png │ │ │ │ │ │ ├── fluid.ichorvein_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.inert_cinder_gas.png │ │ │ │ │ │ ├── fluid.inert_cinder_gas.png.mcmeta │ │ │ │ │ │ ├── fluid.infernal_rosin_emulsion.png │ │ │ │ │ │ ├── fluid.infernal_rosin_emulsion.png.mcmeta │ │ │ │ │ │ ├── fluid.infernal_yeast_froth.png │ │ │ │ │ │ ├── fluid.infernal_yeast_froth.png.mcmeta │ │ │ │ │ │ ├── fluid.liquid_shadows.png │ │ │ │ │ │ ├── fluid.liquid_shadows.png.mcmeta │ │ │ │ │ │ ├── fluid.lofty_primordial_resin.png │ │ │ │ │ │ ├── fluid.lofty_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.luminite.png │ │ │ │ │ │ ├── fluid.luminite.png.mcmeta │ │ │ │ │ │ ├── fluid.naquahine_superfuel_mk_one.png │ │ │ │ │ │ ├── fluid.naquahine_superfuel_mk_one.png.mcmeta │ │ │ │ │ │ ├── fluid.naquahine_superfuel_mk_three.png │ │ │ │ │ │ ├── fluid.naquahine_superfuel_mk_three.png.mcmeta │ │ │ │ │ │ ├── fluid.naquahine_superfuel_mk_two.png │ │ │ │ │ │ ├── fluid.naquahine_superfuel_mk_two.png.mcmeta │ │ │ │ │ │ ├── fluid.nether_bioslurry.png │ │ │ │ │ │ ├── fluid.nether_bioslurry.png.mcmeta │ │ │ │ │ │ ├── fluid.nitrogen_honey.png │ │ │ │ │ │ ├── fluid.nitrogen_honey.png.mcmeta │ │ │ │ │ │ ├── fluid.omega_primordial_resin.png │ │ │ │ │ │ ├── fluid.omega_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.one_dash_octanol.png │ │ │ │ │ │ ├── fluid.one_dash_octanol.png.mcmeta │ │ │ │ │ │ ├── fluid.oscillating_primordial_resin.png │ │ │ │ │ │ ├── fluid.oscillating_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.ourofluid.png │ │ │ │ │ │ ├── fluid.ourofluid.png.mcmeta │ │ │ │ │ │ ├── fluid.oxygen_honey.png │ │ │ │ │ │ ├── fluid.oxygen_honey.png.mcmeta │ │ │ │ │ │ ├── fluid.primordial_oil.png │ │ │ │ │ │ ├── fluid.primordial_oil.png.mcmeta │ │ │ │ │ │ ├── fluid.prisma.png │ │ │ │ │ │ ├── fluid.prisma.png.mcmeta │ │ │ │ │ │ ├── fluid.prisma_doped_raw_naquahine.png │ │ │ │ │ │ ├── fluid.prisma_doped_raw_naquahine.png.mcmeta │ │ │ │ │ │ ├── fluid.pure_cinder_gas.png │ │ │ │ │ │ ├── fluid.pure_cinder_gas.png.mcmeta │ │ │ │ │ │ ├── fluid.red_mud.png │ │ │ │ │ │ ├── fluid.red_mud.png.mcmeta │ │ │ │ │ │ ├── fluid.rose_polymer.png │ │ │ │ │ │ ├── fluid.rose_polymer.png.mcmeta │ │ │ │ │ │ ├── fluid.rose_polymer_honey.png │ │ │ │ │ │ ├── fluid.rose_polymer_honey.png.mcmeta │ │ │ │ │ │ ├── fluid.rubidine_froth.png │ │ │ │ │ │ ├── fluid.rubidine_froth.png.mcmeta │ │ │ │ │ │ ├── fluid.shaded_bedrock_oil.png │ │ │ │ │ │ ├── fluid.shaded_bedrock_oil.png.mcmeta │ │ │ │ │ │ ├── fluid.shadow_pitch.png │ │ │ │ │ │ ├── fluid.shadow_pitch.png.mcmeta │ │ │ │ │ │ ├── fluid.shadow_tar.png │ │ │ │ │ │ ├── fluid.shadow_tar.png.mcmeta │ │ │ │ │ │ ├── fluid.slick_primordial_resin.png │ │ │ │ │ │ ├── fluid.slick_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.smoldering_cinder_brew.png │ │ │ │ │ │ ├── fluid.smoldering_cinder_brew.png.mcmeta │ │ │ │ │ │ ├── fluid.smoldering_steam.png │ │ │ │ │ │ ├── fluid.smoldering_steam.png.mcmeta │ │ │ │ │ │ ├── fluid.sodium_carbonate_solution.png │ │ │ │ │ │ ├── fluid.sodium_carbonate_solution.png.mcmeta │ │ │ │ │ │ ├── fluid.sodium_chromate_solution.png │ │ │ │ │ │ ├── fluid.sodium_chromate_solution.png.mcmeta │ │ │ │ │ │ ├── fluid.sodium_dichromate_solution.png │ │ │ │ │ │ ├── fluid.sodium_dichromate_solution.png.mcmeta │ │ │ │ │ │ ├── fluid.sodium_hydroxide_bauxite.png │ │ │ │ │ │ ├── fluid.sodium_hydroxide_bauxite.png.mcmeta │ │ │ │ │ │ ├── fluid.source_enhanced_bio_fuel.png │ │ │ │ │ │ ├── fluid.source_enhanced_bio_fuel.png.mcmeta │ │ │ │ │ │ ├── fluid.source_oils.png │ │ │ │ │ │ ├── fluid.source_oils.png.mcmeta │ │ │ │ │ │ ├── fluid.sparkling_hadalite.png │ │ │ │ │ │ ├── fluid.sparkling_hadalite.png.mcmeta │ │ │ │ │ │ ├── fluid.stardust_infused_gasoline.png │ │ │ │ │ │ ├── fluid.stardust_infused_gasoline.png.mcmeta │ │ │ │ │ │ ├── fluid.stardust_old.png │ │ │ │ │ │ ├── fluid.starlight.png │ │ │ │ │ │ ├── fluid.starlight.png.mcmeta │ │ │ │ │ │ ├── fluid.starry_fuel_mixture.png │ │ │ │ │ │ ├── fluid.starry_fuel_mixture.png.mcmeta │ │ │ │ │ │ ├── fluid.tau_oil.png │ │ │ │ │ │ ├── fluid.tau_oil.png.mcmeta │ │ │ │ │ │ ├── fluid.thick_primordial_resin.png │ │ │ │ │ │ ├── fluid.thick_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.thunder_boosted_source_diesel.png │ │ │ │ │ │ ├── fluid.thunder_boosted_source_diesel.png.mcmeta │ │ │ │ │ │ ├── fluid.thundering_aerocloud_solution.png │ │ │ │ │ │ ├── fluid.thundering_aerocloud_solution.png.mcmeta │ │ │ │ │ │ ├── fluid.thundering_mana.png │ │ │ │ │ │ ├── fluid.thundering_mana.png.mcmeta │ │ │ │ │ │ ├── fluid.trichlorosilane.png │ │ │ │ │ │ ├── fluid.trichlorosilane.png.mcmeta │ │ │ │ │ │ ├── fluid.triethylaluminium.png │ │ │ │ │ │ ├── fluid.triethylaluminium.png.mcmeta │ │ │ │ │ │ ├── fluid.trioctylaluminium.png │ │ │ │ │ │ ├── fluid.trioctylaluminium.png.mcmeta │ │ │ │ │ │ ├── fluid.twin_primordial_resin.png │ │ │ │ │ │ ├── fluid.twin_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.twisting_primordial_resin.png │ │ │ │ │ │ ├── fluid.twisting_primordial_resin.png.mcmeta │ │ │ │ │ │ ├── fluid.varible_taranium_slush.png │ │ │ │ │ │ ├── fluid.varible_taranium_slush.png.mcmeta │ │ │ │ │ │ ├── fluid.veltharic_slough.png │ │ │ │ │ │ ├── fluid.veltharic_slough.png.mcmeta │ │ │ │ │ │ ├── fluid.void_tar.png │ │ │ │ │ │ ├── fluid.void_tar.png.mcmeta │ │ │ │ │ │ ├── fluid.waxy_polymer.png │ │ │ │ │ │ ├── fluid.waxy_polymer.png.mcmeta │ │ │ │ │ │ ├── fluid.waxy_polymer_honey.png │ │ │ │ │ │ ├── fluid.waxy_polymer_honey.png.mcmeta │ │ │ │ │ │ ├── fluid_thundering_aerocloud_solution.png │ │ │ │ │ │ ├── fluid_thundering_aerocloud_solution.png.mcmeta │ │ │ │ │ │ ├── plasma.tau.png │ │ │ │ │ │ └── plasma.tau.png.mcmeta │ │ │ │ │ ├── machines │ │ │ │ │ │ ├── fake_meteor │ │ │ │ │ │ │ ├── overlay_back.png │ │ │ │ │ │ │ ├── overlay_bottom.png │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_side.png │ │ │ │ │ │ │ └── overlay_top.png │ │ │ │ │ │ ├── fake_wireless │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_front.png.mcmeta │ │ │ │ │ │ │ ├── overlay_front.zip │ │ │ │ │ │ │ ├── overlay_front_emissive.png │ │ │ │ │ │ │ ├── overlay_front_emissive.png.mcmeta │ │ │ │ │ │ │ ├── overlay_front_gray.png │ │ │ │ │ │ │ └── overlay_front_old.png │ │ │ │ │ │ ├── flora_nurturer │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_front_active.png │ │ │ │ │ │ │ └── overlay_front_active_emissive.png │ │ │ │ │ │ ├── fryer │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_front_active.png │ │ │ │ │ │ │ ├── overlay_front_active_emissive.png │ │ │ │ │ │ │ ├── overlay_top.png │ │ │ │ │ │ │ ├── overlay_top_active.png │ │ │ │ │ │ │ ├── overlay_top_active_emissive.png │ │ │ │ │ │ │ └── overlay_top_emissive.png │ │ │ │ │ │ ├── mana_fluidizer │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_front_active.png │ │ │ │ │ │ │ └── overlay_front_active.png.mcmeta │ │ │ │ │ │ ├── masonry_oven │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_front_active.png │ │ │ │ │ │ │ └── overlay_front_active_emissive.png │ │ │ │ │ │ ├── naquadah │ │ │ │ │ │ │ ├── overlay_side.png │ │ │ │ │ │ │ ├── overlay_side_active.png │ │ │ │ │ │ │ ├── overlay_top.png │ │ │ │ │ │ │ └── overlay_top_active.png │ │ │ │ │ │ ├── nether_catalyzer │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_front_active.png │ │ │ │ │ │ │ ├── overlay_front_active.png.mcmeta │ │ │ │ │ │ │ ├── overlay_front_active_emissive.png │ │ │ │ │ │ │ ├── overlay_front_active_emissive.png.mcmeta │ │ │ │ │ │ │ ├── overlay_side.png │ │ │ │ │ │ │ └── overlay_side_active.png │ │ │ │ │ │ └── spooling_machine │ │ │ │ │ │ │ ├── overlay_front.png │ │ │ │ │ │ │ ├── overlay_front_active.png │ │ │ │ │ │ │ ├── overlay_front_active.png.mcmeta │ │ │ │ │ │ │ ├── overlay_front_active_emissive.png │ │ │ │ │ │ │ ├── overlay_front_active_emissive.png.mcmeta │ │ │ │ │ │ │ ├── overlay_top.png │ │ │ │ │ │ │ ├── overlay_top_active.png │ │ │ │ │ │ │ ├── overlay_top_activeemissive.png │ │ │ │ │ │ │ └── overlay_top_emissive.png │ │ │ │ │ └── material_sets │ │ │ │ │ │ ├── fluid_a │ │ │ │ │ │ ├── fluid.png │ │ │ │ │ │ └── fluid.png.mcmeta │ │ │ │ │ │ ├── fluid_b │ │ │ │ │ │ ├── fluid.png │ │ │ │ │ │ └── fluid.png.mcmeta │ │ │ │ │ │ └── fluid_c │ │ │ │ │ │ └── fluid.png │ │ │ │ ├── gui │ │ │ │ │ └── overlay │ │ │ │ │ │ └── progress_bar_distillation_tower_bubbles.png │ │ │ │ └── item │ │ │ │ │ └── material_sets │ │ │ │ │ ├── mana │ │ │ │ │ ├── ingot.png │ │ │ │ │ ├── ingot_overlay.png │ │ │ │ │ └── ingot_secondary.png │ │ │ │ │ ├── prisma │ │ │ │ │ ├── gem.png │ │ │ │ │ └── gem.png.mcmeta │ │ │ │ │ ├── starry │ │ │ │ │ ├── ingot.png │ │ │ │ │ ├── ingot.png.mcmeta │ │ │ │ │ ├── ingot_overlay.png │ │ │ │ │ ├── ingot_secondary.png │ │ │ │ │ └── ingot_secondary.png.mcmeta │ │ │ │ │ └── utherium │ │ │ │ │ └── gem.png │ │ │ └── ui │ │ │ │ ├── progress_heavy.png │ │ │ │ ├── progress_heavy_active.png │ │ │ │ └── recipe_type │ │ │ │ ├── arcane_crucible.rtui │ │ │ │ ├── celestial_bore.rtui │ │ │ │ ├── dawn_forge.rtui │ │ │ │ ├── fake_meteor.rtui │ │ │ │ ├── fake_meteor_ritual.rtui │ │ │ │ ├── heavy_assembler.rtui │ │ │ │ ├── hemophagic_transfuser.rtui │ │ │ │ ├── industrial_chemvat.rtui │ │ │ │ ├── industrial_stoneworks.rtui │ │ │ │ ├── mana_engraver.rtui │ │ │ │ ├── orbital_forge.rtui │ │ │ │ ├── orbital_forge_abs.rtui │ │ │ │ ├── plasmite_forge.rtui │ │ │ │ └── void_miner.rtui │ │ ├── ironfurnaces │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ │ └── textures │ │ │ │ └── block │ │ │ │ ├── gold_furnace_front.png │ │ │ │ ├── gold_furnace_front_blast.png │ │ │ │ ├── gold_furnace_front_on.png │ │ │ │ ├── gold_furnace_front_on_blast.png │ │ │ │ ├── gold_furnace_front_on_blast.png.mcmeta │ │ │ │ ├── gold_furnace_front_on_smoke.png │ │ │ │ ├── gold_furnace_front_on_smoke.png.mcmeta │ │ │ │ ├── gold_furnace_front_smoke.png │ │ │ │ ├── gold_furnace_side.png │ │ │ │ └── gold_furnace_top_smoke.png │ │ ├── kubejs │ │ │ ├── models │ │ │ │ ├── block │ │ │ │ │ └── casings │ │ │ │ │ │ └── high_temperature_fission_casing.json │ │ │ │ └── item │ │ │ │ │ └── high_temperature_fission_casing.json │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ └── casings │ │ │ │ │ ├── high_temperature_fission_casing.png │ │ │ │ │ ├── high_temperature_fission_casing_ctm.png │ │ │ │ │ ├── high_temperature_fission_casing_ctm.png.mcmeta │ │ │ │ │ ├── highly_conductive_fission_casing.png │ │ │ │ │ ├── highly_conductive_fission_casing_ctm.png │ │ │ │ │ └── highly_conductive_fission_casing_ctm.png.mcmeta │ │ │ │ └── item │ │ │ │ ├── apprenticebloodorb_frame.png │ │ │ │ ├── archmagebloodorb_frame.png │ │ │ │ ├── balls_old.png │ │ │ │ ├── carbon_ethersteel_lattice.png │ │ │ │ ├── chromatically_doped_nether_star_boule.png │ │ │ │ ├── cosmic_meatballs.png │ │ │ │ ├── cosmic_meatballs.png.mcmeta │ │ │ │ ├── crystal_chiplet_prepared_wrapping.png │ │ │ │ ├── dust.png │ │ │ │ ├── embraced_luminite_ingot.png │ │ │ │ ├── example_item.png │ │ │ │ ├── heavy_neutron_filter.png │ │ │ │ ├── magebloom.png │ │ │ │ ├── magicianbloodorb_frame.png │ │ │ │ ├── mana_deposited_wafer.png │ │ │ │ ├── masterbloodorb_frame.png │ │ │ │ ├── mechanical_entropinnyum.png │ │ │ │ ├── mechanical_kekimurus.png │ │ │ │ ├── mechanical_munchdew.png │ │ │ │ ├── mechanical_rafflowsia.png │ │ │ │ ├── mechanical_rosa_arcana.png │ │ │ │ ├── mechanical_thermalily.png │ │ │ │ ├── nano_cpu_mask.png │ │ │ │ ├── nano_respirator.png │ │ │ │ ├── naquadria_resonantion_charge.png │ │ │ │ ├── neutronium_lattice.png │ │ │ │ ├── osmiridium_engine.png │ │ │ │ ├── osmiridium_fin.png │ │ │ │ ├── osmiridium_nose_cone.png │ │ │ │ ├── prepared_nano_cpu_wafer.png │ │ │ │ ├── prepared_quantum_cpu_wafer.png │ │ │ │ ├── prismatic_lens.png │ │ │ │ ├── prismatic_lens.png.mcmeta │ │ │ │ ├── quantum_cpu_mask.png │ │ │ │ ├── reinforced_respirator.png │ │ │ │ ├── resplendent_sylvan_nanolattice.png │ │ │ │ ├── rocket_nose_cone.png │ │ │ │ ├── seal_shards.png │ │ │ │ ├── seal_shards.png.mcmeta │ │ │ │ ├── shredded_magebloom.png │ │ │ │ ├── spooled_terraweave.png │ │ │ │ ├── steel_engine.png │ │ │ │ ├── steel_tank.png │ │ │ │ ├── t1_rocket_plating.png │ │ │ │ ├── t2_rocket_plating.png │ │ │ │ ├── taranium_resonantion_charge.png │ │ │ │ ├── terraweave_cloth.png │ │ │ │ ├── thundering_mana_deposited_wafer.png │ │ │ │ ├── trinavine_engine.png │ │ │ │ ├── trinavine_fin.png │ │ │ │ ├── trinavine_nose_cone.png │ │ │ │ ├── trinavine_tank.png │ │ │ │ ├── undergarden_dim.png │ │ │ │ ├── washed_magebloom.png │ │ │ │ ├── welded_rocket_plating.png │ │ │ │ ├── welded_rocket_plating_mk2.png │ │ │ │ ├── wrapped_slate_tier_2.png │ │ │ │ ├── wrapped_slate_tier_3.png │ │ │ │ ├── wrapped_slate_tier_4.png │ │ │ │ └── wrapped_slate_tier_5.png │ │ ├── mae2 │ │ │ └── textures │ │ │ │ └── block │ │ │ │ └── crafting │ │ │ │ ├── 16m_storage.png │ │ │ │ ├── 16m_storage_light.png │ │ │ │ ├── 16m_storage_light.png.mcmeta │ │ │ │ ├── 16x_accelerator.png │ │ │ │ ├── 16x_accelerator_light.png │ │ │ │ ├── 1m_storage.png │ │ │ │ ├── 1m_storage_light.png │ │ │ │ ├── 1m_storage_light.png.mcmeta │ │ │ │ ├── 256m_storage.png │ │ │ │ ├── 256m_storage_light.png │ │ │ │ ├── 256m_storage_light.png.mcmeta │ │ │ │ ├── 256x_accelerator.png │ │ │ │ ├── 256x_accelerator_light.png │ │ │ │ ├── 256x_accelerator_light.png.mcmeta │ │ │ │ ├── 4m_storage.png │ │ │ │ ├── 4m_storage_light.png │ │ │ │ ├── 4m_storage_light.png.mcmeta │ │ │ │ ├── 4x_accelerator.png │ │ │ │ ├── 4x_accelerator_light.png │ │ │ │ ├── 64m_storage.png │ │ │ │ ├── 64m_storage_light.png │ │ │ │ ├── 64m_storage_light.png.mcmeta │ │ │ │ ├── 64x_accelerator.png │ │ │ │ ├── 64x_accelerator_light.png │ │ │ │ ├── accelerator.png │ │ │ │ ├── accelerator_light.png │ │ │ │ ├── light_base.png │ │ │ │ ├── monitor.png │ │ │ │ ├── monitor_base.png │ │ │ │ ├── ring_corner.png │ │ │ │ ├── ring_side_hor.png │ │ │ │ ├── ring_side_ver.png │ │ │ │ ├── unit.png │ │ │ │ └── unit_base.png │ │ ├── malum │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ │ ├── sounds │ │ │ │ └── curiosities │ │ │ │ │ └── soul_ward │ │ │ │ │ ├── grow1.ogg │ │ │ │ │ ├── grow2.ogg │ │ │ │ │ ├── grow3.ogg │ │ │ │ │ └── grow4.ogg │ │ │ └── textures │ │ │ │ └── item │ │ │ │ └── crude_scythe.png │ │ ├── occultism │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ ├── ponderjs_generated │ │ │ └── lang │ │ │ │ └── en_us.json │ │ ├── quests │ │ │ └── lang │ │ │ │ └── zh_cn.json │ │ ├── simplyswords │ │ │ └── item_skins │ │ │ │ ├── arcanethyst.json │ │ │ │ ├── awakened_lichblade.json │ │ │ │ ├── bramblethorn.json │ │ │ │ ├── brimstone_claymore.json │ │ │ │ ├── diamond_chakram.json │ │ │ │ ├── diamond_claymore.json │ │ │ │ ├── diamond_cutlass.json │ │ │ │ ├── diamond_glaive.json │ │ │ │ ├── diamond_greataxe.json │ │ │ │ ├── diamond_greathammer.json │ │ │ │ ├── diamond_halberd.json │ │ │ │ ├── diamond_katana.json │ │ │ │ ├── diamond_longsword.json │ │ │ │ ├── diamond_rapier.json │ │ │ │ ├── diamond_sai.json │ │ │ │ ├── diamond_scythe.json │ │ │ │ ├── diamond_spear.json │ │ │ │ ├── diamond_twinblade.json │ │ │ │ ├── diamond_warglaive.json │ │ │ │ ├── dormant_relic.json │ │ │ │ ├── emberblade.json │ │ │ │ ├── emberlash.json │ │ │ │ ├── frostfall.json │ │ │ │ ├── gold_chakram.json │ │ │ │ ├── gold_claymore.json │ │ │ │ ├── gold_cutlass.json │ │ │ │ ├── gold_glaive.json │ │ │ │ ├── gold_greataxe.json │ │ │ │ ├── gold_greathammer.json │ │ │ │ ├── gold_halberd.json │ │ │ │ ├── gold_katana.json │ │ │ │ ├── gold_longsword.json │ │ │ │ ├── gold_rapier.json │ │ │ │ ├── gold_sai.json │ │ │ │ ├── gold_scythe.json │ │ │ │ ├── gold_spear.json │ │ │ │ ├── gold_twinblade.json │ │ │ │ ├── gold_warglaive.json │ │ │ │ ├── harbinger.json │ │ │ │ ├── hearthflame.json │ │ │ │ ├── hiveheart.json │ │ │ │ ├── icewhisper.json │ │ │ │ ├── iron_chakram.json │ │ │ │ ├── iron_claymore.json │ │ │ │ ├── iron_cutlass.json │ │ │ │ ├── iron_glaive.json │ │ │ │ ├── iron_greataxe.json │ │ │ │ ├── iron_greathammer.json │ │ │ │ ├── iron_halberd.json │ │ │ │ ├── iron_katana.json │ │ │ │ ├── iron_longsword.json │ │ │ │ ├── iron_rapier.json │ │ │ │ ├── iron_sai.json │ │ │ │ ├── iron_scythe.json │ │ │ │ ├── iron_spear.json │ │ │ │ ├── iron_twinblade.json │ │ │ │ ├── iron_warglaive.json │ │ │ │ ├── livyatan.json │ │ │ │ ├── mjolnir.json │ │ │ │ ├── molten_edge.json │ │ │ │ ├── netherite_chakram.json │ │ │ │ ├── netherite_claymore.json │ │ │ │ ├── netherite_cutlass.json │ │ │ │ ├── netherite_glaive.json │ │ │ │ ├── netherite_greataxe.json │ │ │ │ ├── netherite_greathammer.json │ │ │ │ ├── netherite_halberd.json │ │ │ │ ├── netherite_katana.json │ │ │ │ ├── netherite_longsword.json │ │ │ │ ├── netherite_rapier.json │ │ │ │ ├── netherite_sai.json │ │ │ │ ├── netherite_scythe.json │ │ │ │ ├── netherite_spear.json │ │ │ │ ├── netherite_twinblade.json │ │ │ │ ├── netherite_warglaive.json │ │ │ │ ├── righteous_relic.json │ │ │ │ ├── runic_chakram.json │ │ │ │ ├── runic_claymore.json │ │ │ │ ├── runic_cutlass.json │ │ │ │ ├── runic_glaive.json │ │ │ │ ├── runic_greataxe.json │ │ │ │ ├── runic_greathammer.json │ │ │ │ ├── runic_halberd.json │ │ │ │ ├── runic_katana.json │ │ │ │ ├── runic_longsword.json │ │ │ │ ├── runic_rapier.json │ │ │ │ ├── runic_sai.json │ │ │ │ ├── runic_scythe.json │ │ │ │ ├── runic_spear.json │ │ │ │ ├── runic_twinblade.json │ │ │ │ ├── runic_warglaive.json │ │ │ │ ├── shadowsting.json │ │ │ │ ├── slumbering_lichblade.json │ │ │ │ ├── soulkeeper.json │ │ │ │ ├── soulpyre.json │ │ │ │ ├── soulrender.json │ │ │ │ ├── soulstealer.json │ │ │ │ ├── stars_edge.json │ │ │ │ ├── stormbringer.json │ │ │ │ ├── storms_edge.json │ │ │ │ ├── sunfire.json │ │ │ │ ├── sword_on_a_stick.json │ │ │ │ ├── tainted_relic.json │ │ │ │ ├── thunderbrand.json │ │ │ │ ├── toxic_longsword.json │ │ │ │ ├── twisted_blade.json │ │ │ │ ├── waking_lichblade.json │ │ │ │ ├── watcher_claymore.json │ │ │ │ ├── watching_warglaive.json │ │ │ │ ├── waxweaver.json │ │ │ │ ├── whisperwind.json │ │ │ │ └── wickpiercer.json │ │ ├── sophisticatedbackpacks │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ │ └── textures │ │ │ │ └── block │ │ │ │ ├── gold_clips.png │ │ │ │ └── iron_clips.png │ │ ├── sophisticatedstorage │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── gold_barrel_bottom.png │ │ │ │ ├── gold_barrel_side.png │ │ │ │ ├── gold_barrel_top.png │ │ │ │ ├── iron_barrel_bottom.png │ │ │ │ ├── iron_barrel_side.png │ │ │ │ └── iron_barrel_top.png │ │ │ │ ├── entity │ │ │ │ └── chest │ │ │ │ │ ├── gold_tier.png │ │ │ │ │ ├── iron_tier.png │ │ │ │ │ ├── left_gold_tier.png │ │ │ │ │ ├── left_iron_tier.png │ │ │ │ │ ├── right_gold_tier.png │ │ │ │ │ └── right_iron_tier.png │ │ │ │ └── item │ │ │ │ ├── basic_to_iron_tier_upgrade.png │ │ │ │ ├── gold_to_diamond_tier_upgrade.png │ │ │ │ └── iron_to_gold_tier_upgrade.png │ │ ├── supplementaries │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ ├── tconstruct │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── zh_cn.json │ │ └── thinair │ │ │ └── lang │ │ │ ├── en_us.json │ │ │ └── zh_cn.json │ ├── client_scripts │ │ ├── SDRP.js │ │ ├── ToolTips.js │ │ └── example.js │ ├── config │ │ ├── client.properties │ │ ├── common.properties │ │ └── probejs.json │ ├── data │ │ ├── ad_astra │ │ │ ├── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ │ └── dimensions │ │ │ │ │ ├── earth_orbit.json │ │ │ │ │ └── venus.json │ │ │ ├── planets │ │ │ │ ├── sun.json │ │ │ │ └── sun_orbit.json │ │ │ ├── recipes │ │ │ │ └── space_station │ │ │ │ │ └── solar_system │ │ │ │ │ └── sun_orbit_space_station.json │ │ │ └── tags │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── has_structure │ │ │ │ └── oil_well.json │ │ ├── ae2 │ │ │ └── tags │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── has_meteorites.json │ │ ├── aether │ │ │ ├── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ │ ├── dimensions │ │ │ │ │ └── the_aether.json │ │ │ │ │ └── items │ │ │ │ │ └── ambrosium_torch.json │ │ │ └── leveling_settings │ │ │ │ └── dimensions │ │ │ │ └── the_aether.json │ │ ├── apotheosis │ │ │ ├── affix_loot_entries │ │ │ │ └── turtle_helmet.json │ │ │ ├── affixes │ │ │ │ ├── armor │ │ │ │ │ ├── attribute │ │ │ │ │ │ ├── aquatic.json │ │ │ │ │ │ ├── blessed.json │ │ │ │ │ │ ├── elastic.json │ │ │ │ │ │ ├── fortunate.json │ │ │ │ │ │ ├── gravitational.json │ │ │ │ │ │ ├── ironforged.json │ │ │ │ │ │ ├── robust.json │ │ │ │ │ │ ├── soul_recharge.json │ │ │ │ │ │ ├── soul_ward.json │ │ │ │ │ │ ├── spiritual.json │ │ │ │ │ │ ├── stalwart.json │ │ │ │ │ │ ├── steel_touched.json │ │ │ │ │ │ ├── windswept.json │ │ │ │ │ │ └── winged.json │ │ │ │ │ ├── dmg_reduction │ │ │ │ │ │ ├── blast_forged.json │ │ │ │ │ │ ├── blockading.json │ │ │ │ │ │ ├── dwarven.json │ │ │ │ │ │ ├── feathery.json │ │ │ │ │ │ └── runed.json │ │ │ │ │ └── mob_effect │ │ │ │ │ │ ├── blinding.json │ │ │ │ │ │ ├── bolstering.json │ │ │ │ │ │ ├── bursting.json │ │ │ │ │ │ ├── nimble.json │ │ │ │ │ │ └── revitalizing.json │ │ │ │ ├── breaker │ │ │ │ │ ├── attribute │ │ │ │ │ │ ├── destructive.json │ │ │ │ │ │ ├── experienced.json │ │ │ │ │ │ ├── lengthy.json │ │ │ │ │ │ └── lucky.json │ │ │ │ │ ├── mob_effect │ │ │ │ │ │ ├── spelunkers.json │ │ │ │ │ │ └── swift.json │ │ │ │ │ └── special │ │ │ │ │ │ ├── enlightened.json │ │ │ │ │ │ ├── omnetic.json │ │ │ │ │ │ └── radial.json │ │ │ │ ├── heavy_weapon │ │ │ │ │ ├── attribute │ │ │ │ │ │ ├── annihilating.json │ │ │ │ │ │ ├── berserking.json │ │ │ │ │ │ ├── decimating.json │ │ │ │ │ │ ├── forceful.json │ │ │ │ │ │ ├── giant_slaying.json │ │ │ │ │ │ ├── murderous.json │ │ │ │ │ │ ├── nullifying.json │ │ │ │ │ │ └── shredding.json │ │ │ │ │ ├── mob_effect │ │ │ │ │ │ ├── bloodletting.json │ │ │ │ │ │ └── caustic.json │ │ │ │ │ └── special │ │ │ │ │ │ ├── cleaving.json │ │ │ │ │ │ └── executing.json │ │ │ │ ├── ranged │ │ │ │ │ ├── attribute │ │ │ │ │ │ ├── agile.json │ │ │ │ │ │ ├── elven.json │ │ │ │ │ │ ├── streamlined.json │ │ │ │ │ │ └── windswept.json │ │ │ │ │ ├── mob_effect │ │ │ │ │ │ ├── acidic.json │ │ │ │ │ │ ├── ensnaring.json │ │ │ │ │ │ ├── fleeting.json │ │ │ │ │ │ ├── grievous.json │ │ │ │ │ │ ├── ivy_laced.json │ │ │ │ │ │ ├── satanic.json │ │ │ │ │ │ └── shulkers.json │ │ │ │ │ └── special │ │ │ │ │ │ ├── magical.json │ │ │ │ │ │ └── spectral.json │ │ │ │ ├── shield │ │ │ │ │ ├── attribute │ │ │ │ │ │ ├── ironforged.json │ │ │ │ │ │ ├── stalwart.json │ │ │ │ │ │ └── steel_touched.json │ │ │ │ │ ├── mob_effect │ │ │ │ │ │ ├── devilish.json │ │ │ │ │ │ ├── venomous.json │ │ │ │ │ │ └── withering.json │ │ │ │ │ └── special │ │ │ │ │ │ ├── catalyzing.json │ │ │ │ │ │ ├── psychic.json │ │ │ │ │ │ └── retreating.json │ │ │ │ └── sword │ │ │ │ │ ├── attribute │ │ │ │ │ ├── elongated.json │ │ │ │ │ ├── glacial.json │ │ │ │ │ ├── graceful.json │ │ │ │ │ ├── infernal.json │ │ │ │ │ ├── intricate.json │ │ │ │ │ ├── lacerating.json │ │ │ │ │ ├── piercing.json │ │ │ │ │ ├── spellbreaking.json │ │ │ │ │ ├── vampiric.json │ │ │ │ │ └── violent.json │ │ │ │ │ ├── mob_effect │ │ │ │ │ ├── elusive.json │ │ │ │ │ ├── sophisticated.json │ │ │ │ │ └── weakening.json │ │ │ │ │ └── special │ │ │ │ │ ├── festive.json │ │ │ │ │ └── thunderstruck.json │ │ │ ├── gems │ │ │ │ ├── core │ │ │ │ │ ├── ballast.json │ │ │ │ │ ├── brawlers.json │ │ │ │ │ ├── breach.json │ │ │ │ │ ├── combatant.json │ │ │ │ │ ├── ember.json │ │ │ │ │ ├── frost.json │ │ │ │ │ ├── guardian.json │ │ │ │ │ ├── lightning.json │ │ │ │ │ ├── lunar.json │ │ │ │ │ ├── malignant.json │ │ │ │ │ ├── mana_core.json │ │ │ │ │ ├── mana_heart.json │ │ │ │ │ ├── samurai.json │ │ │ │ │ ├── slipstream.json │ │ │ │ │ ├── solar.json │ │ │ │ │ ├── splendor.json │ │ │ │ │ ├── tyrannical.json │ │ │ │ │ └── warlord.json │ │ │ │ ├── overworld │ │ │ │ │ ├── earth.json │ │ │ │ │ └── royalty.json │ │ │ │ ├── the_nether │ │ │ │ │ ├── blood_lord.json │ │ │ │ │ └── inferno.json │ │ │ │ └── twilight │ │ │ │ │ ├── forest.json │ │ │ │ │ └── queen.json │ │ │ ├── rarities │ │ │ │ ├── common.json │ │ │ │ ├── epic.json │ │ │ │ ├── mythic.json │ │ │ │ ├── rare.json │ │ │ │ └── uncommon.json │ │ │ ├── recipes │ │ │ │ ├── reforging │ │ │ │ │ ├── common.json │ │ │ │ │ ├── epic.json │ │ │ │ │ ├── mythic.json │ │ │ │ │ ├── rare.json │ │ │ │ │ └── uncommon.json │ │ │ │ ├── salvaging │ │ │ │ │ ├── ancient_gem_dust.json │ │ │ │ │ ├── common_gem_dust.json │ │ │ │ │ ├── common_material.json │ │ │ │ │ ├── diamond_horse_armor.json │ │ │ │ │ ├── epic_gem_dust.json │ │ │ │ │ ├── epic_material.json │ │ │ │ │ ├── golden_horse_armor.json │ │ │ │ │ ├── mythic_gem_dust.json │ │ │ │ │ ├── mythic_material.json │ │ │ │ │ ├── rare_gem_dust.json │ │ │ │ │ ├── rare_material.json │ │ │ │ │ ├── uncommon_gem_dust.json │ │ │ │ │ └── uncommon_material.json │ │ │ │ └── spawner │ │ │ │ │ ├── baby.json │ │ │ │ │ ├── baby_inverted.json │ │ │ │ │ ├── ignore_conditions.json │ │ │ │ │ ├── ignore_conditions_inverted.json │ │ │ │ │ ├── ignore_light.json │ │ │ │ │ ├── ignore_light_inverted.json │ │ │ │ │ ├── ignore_players.json │ │ │ │ │ ├── ignore_players_inverted.json │ │ │ │ │ ├── max_delay.json │ │ │ │ │ ├── max_delay_inverted.json │ │ │ │ │ ├── max_nearby.json │ │ │ │ │ ├── max_nearby_inverted.json │ │ │ │ │ ├── min_delay.json │ │ │ │ │ ├── min_delay_inverted.json │ │ │ │ │ ├── no_ai.json │ │ │ │ │ ├── no_ai_inverted.json │ │ │ │ │ ├── player_range.json │ │ │ │ │ ├── player_range_inverted.json │ │ │ │ │ ├── redstone_control.json │ │ │ │ │ ├── redstone_control_inverted.json │ │ │ │ │ ├── silent.json │ │ │ │ │ ├── silent_inverted.json │ │ │ │ │ ├── spawn_count.json │ │ │ │ │ ├── spawn_count_inverted.json │ │ │ │ │ ├── spawn_range.json │ │ │ │ │ └── spawn_range_inverted.json │ │ │ ├── tags │ │ │ │ └── worldgen │ │ │ │ │ └── biome │ │ │ │ │ ├── tower_leaf.json │ │ │ │ │ ├── tower_main.json │ │ │ │ │ ├── tower_sand.json │ │ │ │ │ └── tower_spruce.json │ │ │ ├── wanderer_trades │ │ │ │ ├── affix │ │ │ │ │ ├── diamond_epic.json │ │ │ │ │ ├── iron_rare.json │ │ │ │ │ └── ironwood_rare.json │ │ │ │ ├── arachnids_fear.json │ │ │ │ ├── beacon.json │ │ │ │ ├── blaze_powder.json │ │ │ │ ├── bonesplitter.json │ │ │ │ ├── captive_dreams.json │ │ │ │ ├── diamond.json │ │ │ │ ├── diamond_horse_armor.json │ │ │ │ ├── enchanted_golden_apple.json │ │ │ │ ├── eternal_vigilance.json │ │ │ │ ├── eye_of_ender.json │ │ │ │ ├── gold_ingot.json │ │ │ │ ├── golden_horse_armor.json │ │ │ │ ├── greatplate_of_eternity.json │ │ │ │ ├── iron_horse_armor.json │ │ │ │ ├── iron_ingot.json │ │ │ │ ├── prismarine_shard.json │ │ │ │ ├── rune_forged_greaves.json │ │ │ │ ├── saddle.json │ │ │ │ ├── skeleton_skull.json │ │ │ │ ├── stonebreaker.json │ │ │ │ ├── thunder_forged_legguards.json │ │ │ │ ├── timeworn_visage.json │ │ │ │ ├── totem_of_undying.json │ │ │ │ ├── treecapitator.json │ │ │ │ ├── wither_skeleton_skull.json │ │ │ │ └── zombie_head.json │ │ │ └── worldgen │ │ │ │ ├── placed_feature │ │ │ │ ├── rogue_spawner.json │ │ │ │ └── rogue_spawner_deep.json │ │ │ │ └── structure_set │ │ │ │ ├── tower_leaf.json │ │ │ │ ├── tower_main.json │ │ │ │ ├── tower_sand.json │ │ │ │ └── tower_spruce.json │ │ ├── architects_palette │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── items │ │ │ │ └── nether_brass_torch.json │ │ ├── ars_nouveau │ │ │ ├── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ │ └── consumables │ │ │ │ │ └── frostaya_pod.json │ │ │ └── loot_modifiers │ │ │ │ └── dungeon_loot.json │ │ ├── arsdelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── frostaya_hornbeer.json │ │ │ │ ├── frostaya_mutton.json │ │ │ │ ├── frostaya_pie_slice.json │ │ │ │ ├── frostaya_tea.json │ │ │ │ ├── neutralized_frostaya_jam.json │ │ │ │ └── wilden_stew.json │ │ ├── barbequesdelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── blocks │ │ │ │ └── grill.json │ │ ├── biomeswevegone │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── aloe_vera_juice.json │ │ │ │ ├── aloe_vera_shake.json │ │ │ │ └── white_puffball_stew.json │ │ ├── bloodmagic │ │ │ └── recipes │ │ │ │ └── meteor │ │ │ │ └── stone.json │ │ ├── botania │ │ │ ├── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ │ └── items │ │ │ │ │ ├── manaweave_boots.json │ │ │ │ │ ├── manaweave_chestplate.json │ │ │ │ │ ├── manaweave_helmet.json │ │ │ │ │ └── manaweave_leggings.json │ │ │ └── leveling_settings │ │ │ │ └── entities │ │ │ │ └── doppleganger.json │ │ ├── cosmiccore │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ ├── blocks │ │ │ │ ├── causal_fabric_coil_block.json │ │ │ │ ├── living_igniclad_coil_block.json │ │ │ │ ├── naquadric_superalloy_coil_block.json │ │ │ │ ├── prismatic_tungstensteel_coil_block.json │ │ │ │ ├── programable_matter_coil_block.json │ │ │ │ ├── psionic_galvorn_coil_block.json │ │ │ │ ├── reinforced_trinavine_coil_block.json │ │ │ │ ├── resonant_virtue_meld_coil_block.json │ │ │ │ └── shimmering_neutronium_coil_block.json │ │ │ │ └── items │ │ │ │ ├── sanguine_warptech_boots.json │ │ │ │ ├── sanguine_warptech_chestplate.json │ │ │ │ ├── sanguine_warptech_helmet.json │ │ │ │ ├── sanguine_warptech_leggings.json │ │ │ │ ├── space_advanced_nanomuscle_chestplate.json │ │ │ │ ├── space_advanced_quarktech_chestplate.json │ │ │ │ ├── space_nanomuscle_chestplate.json │ │ │ │ └── space_quarktech_chestplate.json │ │ ├── crabbersdelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── bisque.json │ │ │ │ ├── clam_chowder.json │ │ │ │ ├── seafood_gumbo.json │ │ │ │ └── shrimp_fried_rice.json │ │ ├── croptopia │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── apple_juice.json │ │ │ │ ├── banana_smoothie.json │ │ │ │ ├── chocolate_ice_cream.json │ │ │ │ ├── cranberry_juice.json │ │ │ │ ├── fruit_smoothie.json │ │ │ │ ├── grape_juice.json │ │ │ │ ├── kale_smoothie.json │ │ │ │ ├── mango_ice_cream.json │ │ │ │ ├── melon_juice.json │ │ │ │ ├── orange_juice.json │ │ │ │ ├── pecan_ice_cream.json │ │ │ │ ├── pineapple_juice.json │ │ │ │ ├── rum_raisin_ice_cream.json │ │ │ │ ├── saguaro_juice.json │ │ │ │ ├── strawberry_ice_cream.json │ │ │ │ ├── strawberry_smoothie.json │ │ │ │ ├── tomato_juice.json │ │ │ │ └── vanilla_ice_cream.json │ │ ├── culturaldelights │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── hearty_salad.json │ │ │ │ └── spicy_curry.json │ │ ├── deep_aether │ │ │ └── structures │ │ │ │ └── lake_oasis.nbt │ │ ├── delightful │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── berry_matcha_latte.json │ │ │ │ ├── cactus_soup.json │ │ │ │ ├── cantaloupe_popsicle.json │ │ │ │ ├── cantaloupe_slice.json │ │ │ │ ├── lavender_tea.json │ │ │ │ ├── matcha_ice_cream.json │ │ │ │ ├── matcha_milkshake.json │ │ │ │ ├── salmonberry_ice_cream.json │ │ │ │ ├── salmonberry_milkshake.json │ │ │ │ ├── source_berry_ice_cream.json │ │ │ │ └── source_berry_milkshake.json │ │ ├── diet_mana │ │ │ └── diet │ │ │ │ ├── groups │ │ │ │ └── mana.json │ │ │ │ └── suites │ │ │ │ └── builtin.json │ │ ├── diet_psi │ │ │ └── diet │ │ │ │ ├── groups │ │ │ │ └── psi.json │ │ │ │ └── suites │ │ │ │ └── builtin.json │ │ ├── embers │ │ │ └── recipes │ │ │ │ ├── melting │ │ │ │ ├── gears │ │ │ │ │ ├── aluminum.json │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── constantan.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── dawnstone.json │ │ │ │ │ ├── electrum.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── invar.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── nickel.json │ │ │ │ │ ├── platinum.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ │ ├── ingots │ │ │ │ │ ├── aluminum.json │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── constantan.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── dawnstone.json │ │ │ │ │ ├── electrum.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── invar.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── nickel.json │ │ │ │ │ ├── platinum.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ │ ├── nuggets │ │ │ │ │ ├── aluminum.json │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── constantan.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── dawnstone.json │ │ │ │ │ ├── electrum.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── invar.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── nickel.json │ │ │ │ │ ├── platinum.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ │ ├── ores │ │ │ │ │ ├── aluminum_iron.json │ │ │ │ │ ├── copper_gold.json │ │ │ │ │ ├── gold_silver.json │ │ │ │ │ ├── iron_aluminum.json │ │ │ │ │ ├── iron_copper.json │ │ │ │ │ ├── iron_nickel.json │ │ │ │ │ ├── lead_silver.json │ │ │ │ │ ├── nickel_iron.json │ │ │ │ │ ├── platinum_gold.json │ │ │ │ │ ├── silver_lead.json │ │ │ │ │ ├── tin_lead.json │ │ │ │ │ ├── uranium_lead.json │ │ │ │ │ ├── zinc_iron.json │ │ │ │ │ └── zinc_tin.json │ │ │ │ ├── plates │ │ │ │ │ ├── aluminum.json │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── constantan.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── dawnstone.json │ │ │ │ │ ├── electrum.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── invar.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── nickel.json │ │ │ │ │ ├── platinum.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ │ ├── raw_materials │ │ │ │ │ ├── aluminum_iron.json │ │ │ │ │ ├── copper_gold.json │ │ │ │ │ ├── gold_silver.json │ │ │ │ │ ├── iron_aluminum.json │ │ │ │ │ ├── iron_copper.json │ │ │ │ │ ├── iron_nickel.json │ │ │ │ │ ├── lead_silver.json │ │ │ │ │ ├── nickel_iron.json │ │ │ │ │ ├── platinum_gold.json │ │ │ │ │ ├── silver_lead.json │ │ │ │ │ ├── tin_lead.json │ │ │ │ │ ├── uranium_lead.json │ │ │ │ │ ├── zinc_iron.json │ │ │ │ │ └── zinc_tin.json │ │ │ │ ├── snow_melting.json │ │ │ │ ├── soul_crude.json │ │ │ │ └── storage_blocks │ │ │ │ │ ├── aluminum.json │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── constantan.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── dawnstone.json │ │ │ │ │ ├── electrum.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── invar.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── nickel.json │ │ │ │ │ ├── platinum.json │ │ │ │ │ ├── raw_aluminum_iron.json │ │ │ │ │ ├── raw_copper_gold.json │ │ │ │ │ ├── raw_gold_silver.json │ │ │ │ │ ├── raw_iron_aluminum.json │ │ │ │ │ ├── raw_iron_copper.json │ │ │ │ │ ├── raw_iron_nickel.json │ │ │ │ │ ├── raw_lead_silver.json │ │ │ │ │ ├── raw_nickel_iron.json │ │ │ │ │ ├── raw_platinum_gold.json │ │ │ │ │ ├── raw_silver_lead.json │ │ │ │ │ ├── raw_tin_lead.json │ │ │ │ │ ├── raw_uranium_lead.json │ │ │ │ │ ├── raw_zinc_iron.json │ │ │ │ │ ├── raw_zinc_tin.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ └── zinc.json │ │ │ │ ├── mixing │ │ │ │ ├── dwarven_oil.json │ │ │ │ ├── dwarven_oil_steam.json │ │ │ │ ├── molten_brass.json │ │ │ │ ├── molten_bronze.json │ │ │ │ ├── molten_constantan.json │ │ │ │ ├── molten_dawnstone.json │ │ │ │ ├── molten_electrum.json │ │ │ │ └── molten_invar.json │ │ │ │ └── stamping │ │ │ │ ├── ash.json │ │ │ │ ├── blaze_powder.json │ │ │ │ ├── copper_aspectus.json │ │ │ │ ├── dawnstone_aspectus.json │ │ │ │ ├── ember_grit.json │ │ │ │ ├── ember_shard.json │ │ │ │ ├── gears │ │ │ │ ├── aluminum.json │ │ │ │ ├── brass.json │ │ │ │ ├── bronze.json │ │ │ │ ├── constantan.json │ │ │ │ ├── copper.json │ │ │ │ ├── dawnstone.json │ │ │ │ ├── electrum.json │ │ │ │ ├── gold.json │ │ │ │ ├── invar.json │ │ │ │ ├── iron.json │ │ │ │ ├── lead.json │ │ │ │ ├── nickel.json │ │ │ │ ├── platinum.json │ │ │ │ ├── silver.json │ │ │ │ ├── tin.json │ │ │ │ ├── uranium.json │ │ │ │ └── zinc.json │ │ │ │ ├── ingots │ │ │ │ ├── aluminum.json │ │ │ │ ├── brass.json │ │ │ │ ├── bronze.json │ │ │ │ ├── constantan.json │ │ │ │ ├── copper.json │ │ │ │ ├── dawnstone.json │ │ │ │ ├── electrum.json │ │ │ │ ├── gold.json │ │ │ │ ├── invar.json │ │ │ │ ├── iron.json │ │ │ │ ├── lead.json │ │ │ │ ├── nickel.json │ │ │ │ ├── platinum.json │ │ │ │ ├── silver.json │ │ │ │ ├── tin.json │ │ │ │ ├── uranium.json │ │ │ │ └── zinc.json │ │ │ │ ├── iron_aspectus.json │ │ │ │ ├── lead_aspectus.json │ │ │ │ ├── nuggets │ │ │ │ ├── aluminum.json │ │ │ │ ├── brass.json │ │ │ │ ├── bronze.json │ │ │ │ ├── constantan.json │ │ │ │ ├── copper.json │ │ │ │ ├── dawnstone.json │ │ │ │ ├── electrum.json │ │ │ │ ├── gold.json │ │ │ │ ├── invar.json │ │ │ │ ├── iron.json │ │ │ │ ├── lead.json │ │ │ │ ├── nickel.json │ │ │ │ ├── platinum.json │ │ │ │ ├── silver.json │ │ │ │ ├── tin.json │ │ │ │ ├── uranium.json │ │ │ │ └── zinc.json │ │ │ │ ├── plates │ │ │ │ ├── aluminum.json │ │ │ │ ├── brass.json │ │ │ │ ├── bronze.json │ │ │ │ ├── constantan.json │ │ │ │ ├── copper.json │ │ │ │ ├── dawnstone.json │ │ │ │ ├── electrum.json │ │ │ │ ├── gold.json │ │ │ │ ├── invar.json │ │ │ │ ├── iron.json │ │ │ │ ├── lead.json │ │ │ │ ├── nickel.json │ │ │ │ ├── platinum.json │ │ │ │ ├── silver.json │ │ │ │ ├── tin.json │ │ │ │ ├── uranium.json │ │ │ │ └── zinc.json │ │ │ │ ├── sand.json │ │ │ │ └── silver_aspectus.json │ │ ├── epicfight │ │ │ └── aquamirae │ │ │ │ └── capabilities │ │ │ │ └── weapons │ │ │ │ ├── coral_lance.json │ │ │ │ ├── dagger_of_greed.json │ │ │ │ ├── divider.json │ │ │ │ ├── fin_cutter.json │ │ │ │ ├── poisoned_blade.json │ │ │ │ ├── remnants_saber.json │ │ │ │ ├── sweet_lance.json │ │ │ │ ├── terrible_sword.json │ │ │ │ └── whisper_of_the_abyss.json │ │ ├── evilcraft │ │ │ └── loot_modifiers │ │ │ │ ├── inject_box_of_eternal_closure_chests.json │ │ │ │ ├── inject_condensed_blood_chests.json │ │ │ │ └── inject_origins_of_darkness_chests.json │ │ ├── farmersdelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── dumplings.json │ │ │ │ ├── fruit_salad.json │ │ │ │ ├── glow_berry_custard.json │ │ │ │ ├── melon_juice.json │ │ │ │ └── melon_popsicle.json │ │ ├── framedblocks │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── items │ │ │ │ ├── framed_soul_torch.json │ │ │ │ └── framed_torch.json │ │ ├── frontiers │ │ │ ├── dimension │ │ │ │ ├── sun.json │ │ │ │ ├── sun_orbit.json │ │ │ │ └── the_deep_below.json │ │ │ ├── dimension_type │ │ │ │ ├── sun.json │ │ │ │ ├── sun_orbit.json │ │ │ │ └── the_deep_below.json │ │ │ ├── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ │ └── dimensions │ │ │ │ │ ├── sun.json │ │ │ │ │ └── sun_orbit.json │ │ │ ├── trofers │ │ │ │ ├── coils │ │ │ │ │ ├── causal.json │ │ │ │ │ ├── cupro.json │ │ │ │ │ ├── galvorn.json │ │ │ │ │ ├── igniclad.json │ │ │ │ │ ├── kanthal.json │ │ │ │ │ ├── naqsuperalloy.json │ │ │ │ │ ├── nichrome.json │ │ │ │ │ ├── pifew.json │ │ │ │ │ ├── program.json │ │ │ │ │ ├── shimmering.json │ │ │ │ │ ├── trinavine.json │ │ │ │ │ └── virtue.json │ │ │ │ ├── materials │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── ethersteel.json │ │ │ │ │ ├── manasteel.json │ │ │ │ │ ├── neutronite.json │ │ │ │ │ ├── rhodiumplated.json │ │ │ │ │ ├── steel.json │ │ │ │ │ ├── utherium.json │ │ │ │ │ └── virtue.json │ │ │ │ ├── misc │ │ │ │ │ └── aether.json │ │ │ │ └── multi │ │ │ │ │ ├── assemblyline.json │ │ │ │ │ ├── coke_oven.json │ │ │ │ │ ├── ebf.json │ │ │ │ │ ├── fusion.json │ │ │ │ │ └── pbf.json │ │ │ └── worldgen │ │ │ │ ├── biome │ │ │ │ └── the_deep_below.json │ │ │ │ └── noise_settings │ │ │ │ └── the_deep_below.json │ │ ├── gtceu │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ ├── blocks │ │ │ │ ├── BROKEY │ │ │ │ │ ├── coke_oven.json │ │ │ │ │ ├── hp_steam_alloy_smelter.json │ │ │ │ │ ├── hp_steam_bender.json │ │ │ │ │ ├── hp_steam_extractor.json │ │ │ │ │ ├── hp_steam_forge_hammer.json │ │ │ │ │ ├── hp_steam_furnace.json │ │ │ │ │ ├── hp_steam_liquid_boiler.json │ │ │ │ │ ├── hp_steam_macerator.json │ │ │ │ │ ├── hp_steam_miner.json │ │ │ │ │ ├── hp_steam_rock_crusher.json │ │ │ │ │ ├── hp_steam_solar_boiler.json │ │ │ │ │ ├── hp_steam_solid_boiler.json │ │ │ │ │ ├── hp_steam_wiremill.json │ │ │ │ │ ├── lp_steam_alloy_smelter.json │ │ │ │ │ ├── lp_steam_extractor.json │ │ │ │ │ ├── lp_steam_forge_hammer.json │ │ │ │ │ ├── lp_steam_furnace.json │ │ │ │ │ ├── lp_steam_liquid_boiler.json │ │ │ │ │ ├── lp_steam_macerator.json │ │ │ │ │ ├── lp_steam_miner.json │ │ │ │ │ ├── lp_steam_rock_crusher.json │ │ │ │ │ ├── lp_steam_solar_boiler.json │ │ │ │ │ ├── lp_steam_solid_boiler.json │ │ │ │ │ ├── lp_steam_wiremill.json │ │ │ │ │ └── primitive_blast_furnace.json │ │ │ │ ├── cupronickel_coil_block.json │ │ │ │ ├── kanthal_coil_block.json │ │ │ │ └── nichrome_coil_block.json │ │ │ │ └── items │ │ │ │ ├── advanced_nanomuscle_chestplate.json │ │ │ │ ├── advanced_quarktech_chestplate.json │ │ │ │ ├── nanomuscle_boots.json │ │ │ │ ├── nanomuscle_chestplate.json │ │ │ │ ├── nanomuscle_helmet.json │ │ │ │ ├── nanomuscle_leggings.json │ │ │ │ ├── quarktech_boots.json │ │ │ │ ├── quarktech_chestplate.json │ │ │ │ ├── quarktech_helmet.json │ │ │ │ └── quarktech_leggings.json │ │ ├── ironfurnaces │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── blocks │ │ │ │ ├── copper_furnace.json │ │ │ │ ├── diamond_furnace.json │ │ │ │ ├── emerald_furnace.json │ │ │ │ ├── gold_furnace.json │ │ │ │ ├── iron_furnace.json │ │ │ │ ├── netherite_furnace.json │ │ │ │ ├── obsidian_furnace.json │ │ │ │ └── silver_furnace.json │ │ ├── largemeals │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── mushroom_pot_pie.json │ │ │ │ ├── potato_soup.json │ │ │ │ ├── pufferfish_broth.json │ │ │ │ ├── red_soup.json │ │ │ │ ├── sweet_berry_custard.json │ │ │ │ └── tomato_egg_soup.json │ │ ├── legendarysurvivaloverhaul │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── apple_juice.json │ │ │ │ ├── beetroot_juice.json │ │ │ │ ├── cactus_juice.json │ │ │ │ ├── carrot_juice.json │ │ │ │ ├── chorus_juice.json │ │ │ │ ├── glistering_melon_juice.json │ │ │ │ ├── golden_apple_juice.json │ │ │ │ ├── golden_carrot_juice.json │ │ │ │ ├── melon_juice.json │ │ │ │ └── pumpkin_juice.json │ │ ├── malum │ │ │ ├── recipes │ │ │ │ └── tconstruct │ │ │ │ │ └── smeltery │ │ │ │ │ └── melting │ │ │ │ │ ├── aluminum_node.json │ │ │ │ │ ├── cobalt_node.json │ │ │ │ │ ├── copper_node.json │ │ │ │ │ ├── gold_node.json │ │ │ │ │ ├── iron_node.json │ │ │ │ │ ├── lead_node.json │ │ │ │ │ ├── nickel_node.json │ │ │ │ │ ├── osmium_node.json │ │ │ │ │ ├── silver_node.json │ │ │ │ │ ├── tin_node.json │ │ │ │ │ ├── uranium_node.json │ │ │ │ │ └── zinc_node.json │ │ │ └── worldgen │ │ │ │ ├── configured_feature │ │ │ │ └── quartz_geode.json │ │ │ │ └── placed_feature │ │ │ │ └── quartz_geode.json │ │ ├── minecraft │ │ │ └── structures │ │ │ │ └── village │ │ │ │ ├── desert │ │ │ │ └── town_centers │ │ │ │ │ ├── desert_meeting_point_1.nbt │ │ │ │ │ ├── desert_meeting_point_2.nbt │ │ │ │ │ └── desert_meeting_point_3.nbt │ │ │ │ ├── plains │ │ │ │ └── town_centers │ │ │ │ │ ├── plains_fountain_01.nbt │ │ │ │ │ ├── plains_meeting_point_1.nbt │ │ │ │ │ ├── plains_meeting_point_2.nbt │ │ │ │ │ └── plains_meeting_point_3.nbt │ │ │ │ ├── savanna │ │ │ │ └── town_centers │ │ │ │ │ ├── savanna_meeting_point_1.nbt │ │ │ │ │ ├── savanna_meeting_point_2.nbt │ │ │ │ │ ├── savanna_meeting_point_3.nbt │ │ │ │ │ └── savanna_meeting_point_4.nbt │ │ │ │ ├── snowy │ │ │ │ └── town_centers │ │ │ │ │ ├── snowy_meeting_point_1.nbt │ │ │ │ │ ├── snowy_meeting_point_2.nbt │ │ │ │ │ └── snowy_meeting_point_3.nbt │ │ │ │ └── taiga │ │ │ │ └── town_centers │ │ │ │ ├── taiga_meeting_point_1.nbt │ │ │ │ └── taiga_meeting_point_2.nbt │ │ ├── nethersdelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ ├── blocks │ │ │ │ ├── blackstone_blast_furnace.json │ │ │ │ ├── blackstone_furnace.json │ │ │ │ ├── blackstone_stove.json │ │ │ │ └── nether_brick_smoker.json │ │ │ │ ├── consumables │ │ │ │ ├── grilled_strider.json │ │ │ │ ├── magma_gelatin.json │ │ │ │ ├── nether_skewer.json │ │ │ │ ├── plate_of_stuffed_hoglin_ham.json │ │ │ │ ├── plate_of_stuffed_hoglin_roast.json │ │ │ │ ├── plate_of_stuffed_hoglin_snout.json │ │ │ │ ├── propelpearl.json │ │ │ │ └── strider_moss_stew.json │ │ │ │ └── items │ │ │ │ └── propelpearl_torch.json │ │ ├── occultism │ │ │ ├── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ │ ├── blocks │ │ │ │ │ └── spirit_campfire.json │ │ │ │ │ └── items │ │ │ │ │ └── spirit_torch.json │ │ │ └── modonomicon │ │ │ │ ├── books │ │ │ │ └── dictionary_of_spirits │ │ │ │ │ └── entries │ │ │ │ │ └── pentacles │ │ │ │ │ ├── fusion_ritual.json │ │ │ │ │ └── runing_ritual.json │ │ │ │ └── multiblocks │ │ │ │ ├── basic_fusion.json │ │ │ │ └── rune_ritual.json │ │ ├── oceanic_delight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── caesar_salad.json │ │ │ │ ├── fish_egg_noodle_soup.json │ │ │ │ ├── glow_squid_stew.json │ │ │ │ ├── nautilus_juice.json │ │ │ │ ├── nautlius_juice.json │ │ │ │ ├── potato_salad.json │ │ │ │ ├── pufferfish_stew.json │ │ │ │ ├── sea_grape_juice.json │ │ │ │ ├── sea_grape_shake.json │ │ │ │ ├── sea_pickle_slices.json │ │ │ │ ├── sea_salad.json │ │ │ │ ├── shrimp_stew.json │ │ │ │ └── steamed_beef.json │ │ ├── pneumaticcraft │ │ │ └── loot_tables │ │ │ │ └── custom │ │ │ │ ├── common_dungeon_loot.json │ │ │ │ ├── rare_dungeon_loot.json │ │ │ │ └── uncommon_dungeon_loot.json │ │ ├── seeddelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ └── cherry_ice_cream.json │ │ ├── silentsdelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── consumables │ │ │ │ ├── heartburger.json │ │ │ │ ├── hearty_salad.json │ │ │ │ ├── minced_warden_heart.json │ │ │ │ ├── plate_of_warden_heart.json │ │ │ │ ├── sculk_catalyst_pie_slice.json │ │ │ │ ├── sculk_shrieker_shake.json │ │ │ │ ├── warden_heart.json │ │ │ │ └── warden_heart_patty.json │ │ ├── simplyswords │ │ │ └── capabilities │ │ │ │ └── weapons │ │ │ │ ├── arcanethyst.json │ │ │ │ ├── awakened_lichblade.json │ │ │ │ ├── brimstone_claymore.json │ │ │ │ ├── diamond_chakram.json │ │ │ │ ├── diamond_claymore.json │ │ │ │ ├── diamond_cutlass.json │ │ │ │ ├── diamond_glaive.json │ │ │ │ ├── diamond_greataxe.json │ │ │ │ ├── diamond_greathammer.json │ │ │ │ ├── diamond_halberd.json │ │ │ │ ├── diamond_katana.json │ │ │ │ ├── diamond_longsword.json │ │ │ │ ├── diamond_rapier.json │ │ │ │ ├── diamond_sai.json │ │ │ │ ├── diamond_scythe.json │ │ │ │ ├── diamond_spear.json │ │ │ │ ├── diamond_twinblade.json │ │ │ │ ├── diamond_warglaive.json │ │ │ │ ├── dormant_relic.json │ │ │ │ ├── emberblade.json │ │ │ │ ├── emberlash.json │ │ │ │ ├── frostfall.json │ │ │ │ ├── gold_chakram.json │ │ │ │ ├── gold_claymore.json │ │ │ │ ├── gold_cutlass.json │ │ │ │ ├── gold_glaive.json │ │ │ │ ├── gold_greataxe.json │ │ │ │ ├── gold_greathammer.json │ │ │ │ ├── gold_halberd.json │ │ │ │ ├── gold_katana.json │ │ │ │ ├── gold_longsword.json │ │ │ │ ├── gold_rapier.json │ │ │ │ ├── gold_sai.json │ │ │ │ ├── gold_scythe.json │ │ │ │ ├── gold_spear.json │ │ │ │ ├── gold_twinblade.json │ │ │ │ ├── gold_warglaive.json │ │ │ │ ├── harbinger.json │ │ │ │ ├── hearthflame.json │ │ │ │ ├── hiveheart.json │ │ │ │ ├── icewhisper.json │ │ │ │ ├── iron_chakram.json │ │ │ │ ├── iron_claymore.json │ │ │ │ ├── iron_cutlass.json │ │ │ │ ├── iron_glaive.json │ │ │ │ ├── iron_greataxe.json │ │ │ │ ├── iron_greathammer.json │ │ │ │ ├── iron_halberd.json │ │ │ │ ├── iron_katana.json │ │ │ │ ├── iron_longsword.json │ │ │ │ ├── iron_rapier.json │ │ │ │ ├── iron_sai.json │ │ │ │ ├── iron_scythe.json │ │ │ │ ├── iron_spear.json │ │ │ │ ├── iron_twinblade.json │ │ │ │ ├── iron_warglaive.json │ │ │ │ ├── livyatan.json │ │ │ │ ├── mjolnir.json │ │ │ │ ├── molten_edge.json │ │ │ │ ├── netherite_chakram.json │ │ │ │ ├── netherite_claymore.json │ │ │ │ ├── netherite_cutlass.json │ │ │ │ ├── netherite_glaive.json │ │ │ │ ├── netherite_greataxe.json │ │ │ │ ├── netherite_greathammer.json │ │ │ │ ├── netherite_halberd.json │ │ │ │ ├── netherite_katana.json │ │ │ │ ├── netherite_longsword.json │ │ │ │ ├── netherite_rapier.json │ │ │ │ ├── netherite_sai.json │ │ │ │ ├── netherite_scythe.json │ │ │ │ ├── netherite_spear.json │ │ │ │ ├── netherite_twinblade.json │ │ │ │ ├── netherite_warglaive.json │ │ │ │ ├── righteous_relic.json │ │ │ │ ├── runic_chakram.json │ │ │ │ ├── runic_claymore.json │ │ │ │ ├── runic_cutlass.json │ │ │ │ ├── runic_glaive.json │ │ │ │ ├── runic_greataxe.json │ │ │ │ ├── runic_greathammer.json │ │ │ │ ├── runic_halberd.json │ │ │ │ ├── runic_katana.json │ │ │ │ ├── runic_longsword.json │ │ │ │ ├── runic_rapier.json │ │ │ │ ├── runic_sai.json │ │ │ │ ├── runic_scythe.json │ │ │ │ ├── runic_spear.json │ │ │ │ ├── runic_twinblade.json │ │ │ │ ├── runic_warglaive.json │ │ │ │ ├── shadowsting.json │ │ │ │ ├── slumbering_lichblade.json │ │ │ │ ├── soulkeeper.json │ │ │ │ ├── soulpyre.json │ │ │ │ ├── soulrender.json │ │ │ │ ├── soulstealer.json │ │ │ │ ├── stars_edge.json │ │ │ │ ├── stormbringer.json │ │ │ │ ├── storms_edge.json │ │ │ │ ├── sunfire.json │ │ │ │ ├── tainted_relic.json │ │ │ │ ├── thunderbrand.json │ │ │ │ ├── toxic_longsword.json │ │ │ │ ├── twisted_blade.json │ │ │ │ ├── waking_lichblade.json │ │ │ │ ├── watcher_claymore.json │ │ │ │ ├── watching_warglaive.json │ │ │ │ ├── waxweaver.json │ │ │ │ ├── whisperwind.json │ │ │ │ └── wickpiercer.json │ │ ├── sophisticatedbackpacks │ │ │ └── loot_tables │ │ │ │ └── inject │ │ │ │ └── chests │ │ │ │ ├── abandoned_mineshaft.json │ │ │ │ ├── bastion_treasure.json │ │ │ │ ├── desert_pyramid.json │ │ │ │ ├── end_city_treasure.json │ │ │ │ ├── nether_bridge.json │ │ │ │ ├── shipwreck_treasure.json │ │ │ │ ├── simple_dungeon.json │ │ │ │ └── woodland_mansion.json │ │ ├── supplementaries │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ └── blocks │ │ │ │ └── fire_pit.json │ │ ├── tcintegrations │ │ │ └── recipes │ │ │ │ └── tools │ │ │ │ └── materials │ │ │ │ └── casting │ │ │ │ └── manasteel.json │ │ ├── tconstruct │ │ │ ├── recipes │ │ │ │ ├── smeltery │ │ │ │ │ ├── alloys │ │ │ │ │ │ └── enderslime.json │ │ │ │ │ └── casting │ │ │ │ │ │ └── ender │ │ │ │ │ │ ├── enderslimeballcast.json │ │ │ │ │ │ ├── enderslimesaplingcast.json │ │ │ │ │ │ ├── enderslimeseedcast.json │ │ │ │ │ │ └── enderslimespawneggcast.json │ │ │ │ └── tools │ │ │ │ │ └── modifiers │ │ │ │ │ ├── ability │ │ │ │ │ ├── protection.json │ │ │ │ │ └── unbreakable.json │ │ │ │ │ ├── defense │ │ │ │ │ ├── dragonborn.json │ │ │ │ │ └── shulking.json │ │ │ │ │ ├── slotless │ │ │ │ │ ├── draconic_from_head.json │ │ │ │ │ └── draconic_from_scales.json │ │ │ │ │ └── upgrade │ │ │ │ │ ├── haste_from_block.json │ │ │ │ │ ├── haste_from_dust.json │ │ │ │ │ ├── sharpness_from_block.json │ │ │ │ │ └── sharpness_from_shard.json │ │ │ ├── tinkering │ │ │ │ └── modifiers │ │ │ │ │ ├── haste.json │ │ │ │ │ └── sharpness.json │ │ │ ├── trim_material │ │ │ │ ├── cobalt.json │ │ │ │ ├── rose_gold.json │ │ │ │ └── steel.json │ │ │ └── worldgen │ │ │ │ └── configured_feature │ │ │ │ ├── cobalt_ore_large.json │ │ │ │ └── cobalt_ore_small.json │ │ ├── terralith │ │ │ └── tags │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── has_structure │ │ │ │ ├── fortified_desert_village.json │ │ │ │ └── fortified_village.json │ │ ├── tinkerslevellingaddon │ │ │ └── recipes │ │ │ │ └── tools │ │ │ │ └── modifiers │ │ │ │ └── ability │ │ │ │ └── improvable.json │ │ ├── undergarden │ │ │ ├── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ │ ├── consumables │ │ │ │ │ ├── bloody_stew.json │ │ │ │ │ ├── indigo_stew.json │ │ │ │ │ ├── inky_stew.json │ │ │ │ │ └── veiled_stew.json │ │ │ │ │ ├── dimensions │ │ │ │ │ └── undergarden.json │ │ │ │ │ └── items │ │ │ │ │ └── shard_torch.json │ │ │ └── leveling_settings │ │ │ │ └── dimensions │ │ │ │ └── undergarden.json │ │ ├── vanilladelight │ │ │ └── legendarysurvivaloverhaul │ │ │ │ └── temperature │ │ │ │ ├── blocks │ │ │ │ ├── deepslate_bricks_stove.json │ │ │ │ ├── end_stone_bricks_stove.json │ │ │ │ ├── mud_bricks_stove.json │ │ │ │ ├── nether_bricks_stove.json │ │ │ │ ├── polished_andesite_stove.json │ │ │ │ ├── polished_basalt_stove.json │ │ │ │ ├── polished_deepslate_stove.json │ │ │ │ ├── polished_diorite_stove.json │ │ │ │ ├── polished_granite_stove.json │ │ │ │ ├── purpur_stove.json │ │ │ │ ├── red_sandstone_stove.json │ │ │ │ ├── sandstone_stove.json │ │ │ │ └── stone_bricks_stove.json │ │ │ │ └── consumables │ │ │ │ ├── apple_salad.json │ │ │ │ ├── berries_salad.json │ │ │ │ ├── cod_stew.json │ │ │ │ ├── glow_tropical_fish_stew.json │ │ │ │ ├── golden_apple_cider.json │ │ │ │ ├── pufferfish_stew.json │ │ │ │ └── sweet_berry_custard.json │ │ └── vintagedelight │ │ │ └── legendarysurvivaloverhaul │ │ │ └── temperature │ │ │ └── consumables │ │ │ ├── cucumber_salad.json │ │ │ ├── oatmeal.json │ │ │ └── overnight_oats.json │ ├── server_scripts │ │ ├── ItemEvents │ │ │ ├── GTModifications │ │ │ │ └── CoilHashMap.js │ │ │ ├── LootJS.js │ │ │ ├── Tags.js │ │ │ └── Ultimine.js │ │ ├── ModEvents │ │ │ ├── ColdSweatBehavior.js │ │ │ └── Gamerules.js │ │ ├── Ores │ │ │ ├── Aether_veins.js │ │ │ ├── End_veins.js │ │ │ ├── Fluid │ │ │ │ └── OverwoldFluid.js │ │ │ ├── Mars_Veins.js │ │ │ ├── Mercury_veins.js │ │ │ ├── Moon_veins.js │ │ │ ├── NetherVeins.js │ │ │ ├── Ore_Removals.js │ │ │ ├── RedstoneChromite.js │ │ │ ├── Undergarden_veins.js │ │ │ └── Venus_veins.js │ │ └── Recipes │ │ │ ├── Ad_Astra.js │ │ │ ├── Ae2_Mods.js │ │ │ ├── Aether.js │ │ │ ├── Apotheosis.js │ │ │ ├── Arboreal_Growth_Facility.js │ │ │ ├── ArsNouveau.js │ │ │ ├── BloodMagic │ │ │ ├── Bloodmagic.js │ │ │ └── Meteors.js │ │ │ ├── Botania.js │ │ │ ├── Building_Gadgets.js │ │ │ ├── Chains │ │ │ ├── AetherAugmentedSediment.js │ │ │ ├── Airs.js │ │ │ ├── Bauxite.js │ │ │ ├── Chromite.js │ │ │ ├── Floral_Recipes.js │ │ │ ├── Graphene.js │ │ │ ├── Hadalite.js │ │ │ ├── HydrogenSilsesquioxane.js │ │ │ ├── Kapton.js │ │ │ ├── Molybdenum.js │ │ │ ├── NanoLithography.js │ │ │ ├── Naqline.js │ │ │ ├── Neoprene.js │ │ │ ├── NetherStarSlag.js │ │ │ ├── Netherite.js │ │ │ ├── NrNtCsNtLine.js │ │ │ ├── NuclearRecipes.js │ │ │ ├── NutrientSolAndSilt.js │ │ │ ├── Nylon66.js │ │ │ ├── PEDOT.js │ │ │ ├── PlatLine.js │ │ │ ├── PrimordialOils.js │ │ │ ├── Prisma.js │ │ │ ├── Pthanterums.js │ │ │ ├── REE-VirulentChain.js │ │ │ ├── SGMandFriends.js │ │ │ ├── SourceOilFuel.js │ │ │ ├── StarryGasolines.js │ │ │ ├── Tantalum.js │ │ │ ├── TerraSteel.js │ │ │ ├── Tesserae.js │ │ │ ├── ThunderingSourceDiesel.js │ │ │ ├── Trinium.js │ │ │ ├── TriphenylPhosphine.js │ │ │ └── TungstenLine.js │ │ │ ├── Cognition.js │ │ │ ├── CosmicCore.js │ │ │ ├── Cosmic_Frontiers.js │ │ │ ├── Create.js │ │ │ ├── Create_Deco.js │ │ │ ├── Delightful.js │ │ │ ├── DrygmyGrove.js │ │ │ ├── ElevatorMod.js │ │ │ ├── Embers.js │ │ │ ├── Ender_Storage.js │ │ │ ├── Forestry.js │ │ │ ├── ForestryBeeCrafts.js │ │ │ ├── Functional_Storage.js │ │ │ ├── Gateways.js │ │ │ ├── Gregtech │ │ │ ├── Components │ │ │ │ ├── CasingsAndHulls.js │ │ │ │ └── VoltageTierSubparts.js │ │ │ ├── Foods │ │ │ │ ├── CulinaryAssem.js │ │ │ │ ├── Misc.js │ │ │ │ └── Tags.js │ │ │ ├── Fusion.js │ │ │ ├── Gregtech.js │ │ │ ├── GregtechCircuits.js │ │ │ ├── GregtechDrones.js │ │ │ ├── GregtechMetallurgy.js │ │ │ ├── Gregtech_Assline.js │ │ │ ├── Gregtech_Bridged_Recipes.js │ │ │ ├── HighTierCables.js │ │ │ ├── InfinityChain.js │ │ │ ├── Parts.js │ │ │ ├── Plasmites.js │ │ │ ├── PowerRecipes │ │ │ │ ├── FrontiersPowerTweaks.js │ │ │ │ └── NaquahineReactors.js │ │ │ ├── Scrapping.js │ │ │ ├── StoneWorks.js │ │ │ ├── TitanFusionRecipes.js │ │ │ ├── VoidMiners.js │ │ │ ├── Wood │ │ │ │ ├── GregtechWoodManager.js │ │ │ │ ├── GregtechWoodMisc.js │ │ │ │ ├── MagicVineWoodManager.js │ │ │ │ ├── MalumWoodManager.js │ │ │ │ └── MinecraftWoodManager.js │ │ │ └── space │ │ │ │ └── Asteroids.js │ │ │ ├── InitRecipeRemovals.js │ │ │ ├── IntDynamics.js │ │ │ ├── IronFurnace.js │ │ │ ├── LittleTiles.js │ │ │ ├── Malum.js │ │ │ ├── NaturesAura.js │ │ │ ├── NetherRemastered.js │ │ │ ├── Occultism.js │ │ │ ├── OhTheBiomesWeveGone.js │ │ │ ├── Paraglider.js │ │ │ ├── Rehooked.js │ │ │ ├── Shrink.js │ │ │ ├── SimplySwords.js │ │ │ ├── SophisticatedMods.js │ │ │ ├── Supplementaries.js │ │ │ ├── SurvivalOverhaul.js │ │ │ ├── TinkersConstruct.js │ │ │ ├── TinkersGregification │ │ │ └── GregsModernConstructExtruderHell.js │ │ │ ├── Torchmaster.js │ │ │ ├── Travel_Anchors.js │ │ │ ├── Undergarden.js │ │ │ └── port_food_recipes.js │ └── startup_scripts │ │ ├── Custom_Blocks.js │ │ ├── Custom_Fluids.js │ │ ├── ItemGeneration.js │ │ ├── ItemModification.js │ │ ├── Machines │ │ ├── Multiblocks.js │ │ ├── RecipeTypes.js │ │ └── SingleBlocks.js │ │ ├── Materials │ │ ├── Bauxite_Chain_materials.js │ │ ├── Botania_Materials.js │ │ ├── Cosmic_Frontiers_Materials.js │ │ ├── CustomOres.js │ │ ├── Custom_Chain_Materials.js │ │ ├── Elements │ │ │ ├── Element.js │ │ │ ├── Plat_Line_Elements.js │ │ │ └── REE_Elements.js │ │ ├── Flora_Stuff.js │ │ ├── HSQ.js │ │ ├── IconsetRegistry.js │ │ ├── KaptonK_Materials.js │ │ ├── LadderPMaterials.js │ │ ├── Molybdenum_Chain_Materials.js │ │ ├── NaqLine_Materials.js │ │ ├── NaquahineStuff.js │ │ ├── Neoprene_Materials.js │ │ ├── Netherite_Chain_Materials.js │ │ ├── NuclearGT.js │ │ ├── Nylon66_Materials.js │ │ ├── OccultismMaterials.js │ │ ├── PEDOT_Materials.js │ │ ├── Periodic_table.js │ │ ├── Platinum_Line_Materials.js │ │ ├── REE-Materials.js │ │ ├── SGMandFriendsMaterials.js │ │ ├── Synthetic_Pthanterum_Materials.js │ │ ├── TinkersConstructMaterialModEvent.js │ │ ├── TungstenLineMaterials.js │ │ ├── UVProcessingMaterials.js │ │ └── VastMaterials.js │ │ ├── MechanicalFlowers.js │ │ ├── Minecraft │ │ └── ItemModifications.js │ │ ├── MoreJS.js │ │ ├── OreRemoval.js │ │ ├── WorldGen │ │ ├── DimMarker.js │ │ ├── StoneTypes.js │ │ └── WorldGenLayer │ │ │ ├── AetherWorldGenLayer.js │ │ │ ├── GalaciaStoneLayer.js │ │ │ ├── MarsWorldGenLayer.js │ │ │ ├── MercuryWorldGenLayer.js │ │ │ ├── MoonWorldGenLayer.js │ │ │ ├── UnderGardenWorldGenLayer.js │ │ │ └── VenusWorldGenLayer.js │ │ └── jsconfig.json ├── mods │ └── memoryleakfix-forge-1.17+-1.1.5.jar └── shaderpacks │ ├── CosmicBliss - A Bliss Shaders Edit.zip │ ├── CosmicBliss - A Bliss Shaders Edit.zip.txt │ ├── PhotonFrontiers.zip │ └── PhotonFrontiers.zip.txt ├── scripts ├── curse_client.py ├── pack_generation.py ├── release.py ├── requirements.txt ├── server_generation.py └── utils.py ├── server-files ├── README.md ├── startserver.bat ├── startserver.sh └── user_jvm_args.txt └── server-mods-config.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/quest-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/.github/ISSUE_TEMPLATE/quest-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task_board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/.github/ISSUE_TEMPLATE/task_board.md -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/.github/workflows/deploy-pages.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Clueless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/Clueless.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/content/AE2/Changes/coming-soon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/AE2/Changes/coming-soon.md -------------------------------------------------------------------------------- /docs/content/AE2/Changes/crafting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/AE2/Changes/crafting.md -------------------------------------------------------------------------------- /docs/content/AE2/Changes/export_crafts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/AE2/Changes/export_crafts.md -------------------------------------------------------------------------------- /docs/content/AE2/Changes/for-devs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/AE2/Changes/for-devs.md -------------------------------------------------------------------------------- /docs/content/AE2/Changes/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/AE2/Changes/patterns.md -------------------------------------------------------------------------------- /docs/content/AE2/Changes/qol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/AE2/Changes/qol.md -------------------------------------------------------------------------------- /docs/content/AE2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/AE2/index.md -------------------------------------------------------------------------------- /docs/content/Gameplay/Mechanics/AirQuality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/Gameplay/Mechanics/AirQuality.md -------------------------------------------------------------------------------- /docs/content/Gameplay/Mechanics/Temperature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/Gameplay/Mechanics/Temperature.md -------------------------------------------------------------------------------- /docs/content/Gameplay/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/Gameplay/index.md -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/auto_complete_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/auto_complete_card.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/chat.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/craftconfirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/craftconfirm.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/crafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/crafting.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/example_1.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/example_2.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/example_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/example_3.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/example_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/example_4.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/finish_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/finish_chat.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/finish_toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/finish_toast.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/highlight.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/highlighted.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/modify-patterns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/modify-patterns.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/percentage.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/resume.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/setamount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/setamount.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/singularity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/singularity.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/singularity_bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/singularity_bytes.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/crafting/suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/crafting/suspend.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/alt_craft_amounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/alt_craft_amounts.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/controllersize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/controllersize.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/export_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/export_plan.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/export_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/export_status.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/followcrafts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/followcrafts.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/numberformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/numberformat.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/registry_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/registry_sort.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/startwithfollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/startwithfollow.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/misc/tooltip_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/misc/tooltip_search.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/crafting_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/crafting_pattern.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/pattern_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/pattern_base.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/pattern_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/pattern_box.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/pattern_box_floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/pattern_box_floating.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/pattern_fancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/pattern_fancy.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/processing_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/processing_pattern.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/smithing_table_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/smithing_table_pattern.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/stackable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/stackable.png -------------------------------------------------------------------------------- /docs/content/assets/ae2/pattern/stonecutting_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/ae2/pattern/stonecutting_pattern.png -------------------------------------------------------------------------------- /docs/content/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/favicon.png -------------------------------------------------------------------------------- /docs/content/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/logo.png -------------------------------------------------------------------------------- /docs/content/assets/prism1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/prism1.png -------------------------------------------------------------------------------- /docs/content/assets/prism2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/prism2.png -------------------------------------------------------------------------------- /docs/content/assets/prism3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/prism3.png -------------------------------------------------------------------------------- /docs/content/assets/prism4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/prism4.png -------------------------------------------------------------------------------- /docs/content/assets/prism5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/assets/prism5.jpg -------------------------------------------------------------------------------- /docs/content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/index.md -------------------------------------------------------------------------------- /docs/content/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/content/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/manifest.json -------------------------------------------------------------------------------- /modlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/modlist.html -------------------------------------------------------------------------------- /overrides/config/CoroUtil/General.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/CoroUtil/General.toml -------------------------------------------------------------------------------- /overrides/config/DistantHorizons.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/DistantHorizons.toml -------------------------------------------------------------------------------- /overrides/config/Hexerei-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/Hexerei-client.toml -------------------------------------------------------------------------------- /overrides/config/Hexerei-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/Hexerei-common.toml -------------------------------------------------------------------------------- /overrides/config/HologramPanel/client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/HologramPanel/client.toml -------------------------------------------------------------------------------- /overrides/config/HologramPanel/style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/HologramPanel/style.toml -------------------------------------------------------------------------------- /overrides/config/MouseTweaks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/MouseTweaks.cfg -------------------------------------------------------------------------------- /overrides/config/NoChatReports/NCR-Client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/NoChatReports/NCR-Client.json -------------------------------------------------------------------------------- /overrides/config/NoChatReports/NCR-Common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/NoChatReports/NCR-Common.json -------------------------------------------------------------------------------- /overrides/config/NoChatReports/NCR-Encryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/NoChatReports/NCR-Encryption.json -------------------------------------------------------------------------------- /overrides/config/NoChatReports/NCR-ServerPreferences.json: -------------------------------------------------------------------------------- 1 | { 2 | "signingModes": {} 3 | } -------------------------------------------------------------------------------- /overrides/config/NoChatReports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/NoChatReports/README.md -------------------------------------------------------------------------------- /overrides/config/ProjectRed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ProjectRed.cfg -------------------------------------------------------------------------------- /overrides/config/SeasonHUD-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/SeasonHUD-client.toml -------------------------------------------------------------------------------- /overrides/config/ad_astra-client.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ad_astra-client.jsonc -------------------------------------------------------------------------------- /overrides/config/ad_astra.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ad_astra.jsonc -------------------------------------------------------------------------------- /overrides/config/advanced_ae-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/advanced_ae-common.toml -------------------------------------------------------------------------------- /overrides/config/ae2/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ae2/client.json -------------------------------------------------------------------------------- /overrides/config/ae2/client.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ae2/client.json.bak -------------------------------------------------------------------------------- /overrides/config/ae2/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ae2/common.json -------------------------------------------------------------------------------- /overrides/config/ae2ct-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ae2ct-client.toml -------------------------------------------------------------------------------- /overrides/config/aether-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/aether-client.toml -------------------------------------------------------------------------------- /overrides/config/aether-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/aether-common.toml -------------------------------------------------------------------------------- /overrides/config/aether/aether_customizations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/aether/aether_customizations.txt -------------------------------------------------------------------------------- /overrides/config/aether/sun_altar_whitelist.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /overrides/config/aiimprovements-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/aiimprovements-common.toml -------------------------------------------------------------------------------- /overrides/config/apotheosis/adventure.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/adventure.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/apotheosis.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/apotheosis.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/ench.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/ench.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/enchantments.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/enchantments.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/garden.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/garden.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/names.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/names.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/potion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/potion.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/spawner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/spawner.cfg -------------------------------------------------------------------------------- /overrides/config/apotheosis/village.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/apotheosis/village.cfg -------------------------------------------------------------------------------- /overrides/config/appleskin-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/appleskin-client.toml -------------------------------------------------------------------------------- /overrides/config/architects_palette-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/architects_palette-common.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau-client.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau-common.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau-server.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/burst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/burst.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_accelerate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_accelerate.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_amplify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_amplify.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_animate_block.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_animate_block.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_aoe.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_aoe.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_blink.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_blink.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_bounce.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_bounce.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_break.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_break.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_cold_snap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_cold_snap.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_conjure_water.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_conjure_water.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_craft.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_craft.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_crush.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_crush.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_cut.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_cut.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_dampen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_dampen.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_decelerate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_decelerate.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_delay.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_delay.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_dispel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_dispel.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_duration_down.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_duration_down.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_ender_inventory.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_ender_inventory.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_evaporate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_evaporate.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_exchange.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_exchange.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_explosion.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_explosion.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_extend_time.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_extend_time.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_extract.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_extract.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_fangs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_fangs.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_fell.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_fell.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_firework.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_firework.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_flare.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_flare.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_fortune.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_fortune.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_freeze.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_freeze.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_glide.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_glide.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_gravity.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_gravity.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_grow.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_grow.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_gust.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_gust.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_harm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_harm.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_harvest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_harvest.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_heal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_heal.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_hex.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_hex.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_ignite.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_ignite.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_infuse.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_infuse.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_intangible.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_intangible.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_interact.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_interact.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_invisibility.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_invisibility.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_launch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_launch.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_leap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_leap.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_light.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_light.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_lightning.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_lightning.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_linger.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_linger.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_name.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_name.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_orbit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_orbit.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_phantom_block.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_phantom_block.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_pickup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_pickup.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_pierce.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_pierce.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_place_block.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_place_block.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_projectile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_projectile.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_pull.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_pull.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_randomize.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_randomize.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_redstone_signal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_redstone_signal.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_rotate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_rotate.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_rune.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_rune.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_self.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_self.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_sense_magic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_sense_magic.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_sensitive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_sensitive.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_slowfall.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_slowfall.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_smelt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_smelt.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_snare.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_snare.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_split.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_split.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_summon_decoy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_summon_decoy.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_summon_steed.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_summon_steed.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_summon_undead.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_summon_undead.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_summon_vex.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_summon_vex.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_summon_wolves.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_summon_wolves.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_toss.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_toss.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_touch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_touch.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_underfoot.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_underfoot.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_wall.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_wall.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_wind_shear.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_wind_shear.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/glyph_wither.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/glyph_wither.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/reset.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/reset.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/rewind.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/rewind.toml -------------------------------------------------------------------------------- /overrides/config/ars_nouveau/wololo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_nouveau/wololo.toml -------------------------------------------------------------------------------- /overrides/config/ars_ocultas/base-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ars_ocultas/base-common.toml -------------------------------------------------------------------------------- /overrides/config/arseng-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/arseng-common.toml -------------------------------------------------------------------------------- /overrides/config/attributeslib.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/attributeslib.cfg -------------------------------------------------------------------------------- /overrides/config/balm-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/balm-client.toml -------------------------------------------------------------------------------- /overrides/config/balm-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/balm-common.toml -------------------------------------------------------------------------------- /overrides/config/basicdiscordrichpresence-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/basicdiscordrichpresence-client.toml -------------------------------------------------------------------------------- /overrides/config/betterchunkloading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterchunkloading.json -------------------------------------------------------------------------------- /overrides/config/bettercombat/client.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bettercombat/client.json5 -------------------------------------------------------------------------------- /overrides/config/bettercombat/fallback_compatibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bettercombat/fallback_compatibility.json -------------------------------------------------------------------------------- /overrides/config/bettercombat/server.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bettercombat/server.json5 -------------------------------------------------------------------------------- /overrides/config/betterdeserttemples-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterdeserttemples-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/betterdeserttemples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterdeserttemples/README.txt -------------------------------------------------------------------------------- /overrides/config/betterdeserttemples/forge-1_20/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterdeserttemples/forge-1_20/README.txt -------------------------------------------------------------------------------- /overrides/config/betterdungeons-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterdungeons-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/betterendisland-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterendisland-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/betterfortresses-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterfortresses-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/betterfortresses/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterfortresses/README.txt -------------------------------------------------------------------------------- /overrides/config/betterfortresses/forge-1_20/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterfortresses/forge-1_20/README.txt -------------------------------------------------------------------------------- /overrides/config/betterfpsdist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterfpsdist.json -------------------------------------------------------------------------------- /overrides/config/betterjungletemples-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterjungletemples-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/bettermineshafts-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bettermineshafts-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/betteroceanmonuments-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betteroceanmonuments-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/betterstrongholds-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterstrongholds-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/betterstrongholds/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterstrongholds/README.txt -------------------------------------------------------------------------------- /overrides/config/betterstrongholds/forge-1_20/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterstrongholds/forge-1_20/README.txt -------------------------------------------------------------------------------- /overrides/config/betterstrongholds/forge-1_20/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterstrongholds/forge-1_20/ores.json -------------------------------------------------------------------------------- /overrides/config/betterwitchhuts-forge-1_20.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/betterwitchhuts-forge-1_20.toml -------------------------------------------------------------------------------- /overrides/config/bhc-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bhc-common.toml -------------------------------------------------------------------------------- /overrides/config/bhc/drops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bhc/drops.json -------------------------------------------------------------------------------- /overrides/config/biomesoplenty/biome_toggles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/biomesoplenty/biome_toggles.json -------------------------------------------------------------------------------- /overrides/config/biomesoplenty/gameplay.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/biomesoplenty/gameplay.toml -------------------------------------------------------------------------------- /overrides/config/biomesoplenty/generation.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/biomesoplenty/generation.toml -------------------------------------------------------------------------------- /overrides/config/biomeswevegone/mob_spawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/biomeswevegone/mob_spawn.json -------------------------------------------------------------------------------- /overrides/config/biomeswevegone/trades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/biomeswevegone/trades.json -------------------------------------------------------------------------------- /overrides/config/biomeswevegone/world_generation.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/biomeswevegone/world_generation.json5 -------------------------------------------------------------------------------- /overrides/config/blasmatech-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/blasmatech-common.toml -------------------------------------------------------------------------------- /overrides/config/bloodmagic-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bloodmagic-client.toml -------------------------------------------------------------------------------- /overrides/config/bloodmagic-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/bloodmagic-common.toml -------------------------------------------------------------------------------- /overrides/config/botania-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/botania-client.toml -------------------------------------------------------------------------------- /overrides/config/botania-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/botania-common.toml -------------------------------------------------------------------------------- /overrides/config/brute_force_rendering_culling-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/brute_force_rendering_culling-client.toml -------------------------------------------------------------------------------- /overrides/config/buildinggadgets2-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/buildinggadgets2-common.toml -------------------------------------------------------------------------------- /overrides/config/carryon-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/carryon-client.toml -------------------------------------------------------------------------------- /overrides/config/carryon-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/carryon-common.toml -------------------------------------------------------------------------------- /overrides/config/cavedust.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cavedust.toml -------------------------------------------------------------------------------- /overrides/config/ccl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ccl.cfg -------------------------------------------------------------------------------- /overrides/config/chloride-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/chloride-client.json -------------------------------------------------------------------------------- /overrides/config/chunksending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/chunksending.json -------------------------------------------------------------------------------- /overrides/config/clickmachine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/clickmachine.cfg -------------------------------------------------------------------------------- /overrides/config/client-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/client-fields.json -------------------------------------------------------------------------------- /overrides/config/colorfulhearts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/colorfulhearts.toml -------------------------------------------------------------------------------- /overrides/config/comforts-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/comforts-server.toml -------------------------------------------------------------------------------- /overrides/config/commoncapabilities-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/commoncapabilities-common.toml -------------------------------------------------------------------------------- /overrides/config/configuration-options.json: -------------------------------------------------------------------------------- 1 | { 2 | "advancedMode": true 3 | } -------------------------------------------------------------------------------- /overrides/config/connectivity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/connectivity.json -------------------------------------------------------------------------------- /overrides/config/constructionwand-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/constructionwand-client.toml -------------------------------------------------------------------------------- /overrides/config/corgilib/announcement_config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/corgilib/announcement_config.json5 -------------------------------------------------------------------------------- /overrides/config/corgilib/announcement_store.json: -------------------------------------------------------------------------------- 1 | {"player":"c43b3c3d-7da6-4c2b-b335-703fce2ed795","unixTime":1724046680} -------------------------------------------------------------------------------- /overrides/config/cosmeticarmorreworked-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cosmeticarmorreworked-client.toml -------------------------------------------------------------------------------- /overrides/config/cosmeticarmorreworked-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cosmeticarmorreworked-common.toml -------------------------------------------------------------------------------- /overrides/config/cosmos-portals-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cosmos-portals-common.toml -------------------------------------------------------------------------------- /overrides/config/crackerslib-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crackerslib-client.toml -------------------------------------------------------------------------------- /overrides/config/craftingstation-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/craftingstation-client.toml -------------------------------------------------------------------------------- /overrides/config/crash_assistant/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/config.toml -------------------------------------------------------------------------------- /overrides/config/crash_assistant/lang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/lang/README.md -------------------------------------------------------------------------------- /overrides/config/crash_assistant/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/lang/en_us.json -------------------------------------------------------------------------------- /overrides/config/crash_assistant/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/lang/es_es.json -------------------------------------------------------------------------------- /overrides/config/crash_assistant/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/lang/it_it.json -------------------------------------------------------------------------------- /overrides/config/crash_assistant/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/lang/ru_ru.json -------------------------------------------------------------------------------- /overrides/config/crash_assistant/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/config/crash_assistant/modlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/crash_assistant/modlist.json -------------------------------------------------------------------------------- /overrides/config/create-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/create-client.toml -------------------------------------------------------------------------------- /overrides/config/create-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/create-common.toml -------------------------------------------------------------------------------- /overrides/config/createlowheated-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/createlowheated-common.toml -------------------------------------------------------------------------------- /overrides/config/cristellib/minecraftED.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cristellib/minecraftED.json5 -------------------------------------------------------------------------------- /overrides/config/cristellib/minecraftP.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cristellib/minecraftP.json5 -------------------------------------------------------------------------------- /overrides/config/croptopia/croptopia_v3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/croptopia/croptopia_v3.conf -------------------------------------------------------------------------------- /overrides/config/cull-less-leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cull-less-leaves.json -------------------------------------------------------------------------------- /overrides/config/cumulus_menus-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cumulus_menus-client.toml -------------------------------------------------------------------------------- /overrides/config/cupboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cupboard.json -------------------------------------------------------------------------------- /overrides/config/curios-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/curios-client.toml -------------------------------------------------------------------------------- /overrides/config/curios-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/curios-common.toml -------------------------------------------------------------------------------- /overrides/config/custom-micromaterials.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/custom-micromaterials.cfg -------------------------------------------------------------------------------- /overrides/config/cyclopscore-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/cyclopscore-common.toml -------------------------------------------------------------------------------- /overrides/config/deep_aether-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/deep_aether-client.toml -------------------------------------------------------------------------------- /overrides/config/deep_aether-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/deep_aether-common.toml -------------------------------------------------------------------------------- /overrides/config/delightful-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/delightful-common.toml -------------------------------------------------------------------------------- /overrides/config/diet-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/diet-client.toml -------------------------------------------------------------------------------- /overrides/config/diet-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/diet-server.toml -------------------------------------------------------------------------------- /overrides/config/ding.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ding.toml -------------------------------------------------------------------------------- /overrides/config/dragonfight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/dragonfight.json -------------------------------------------------------------------------------- /overrides/config/dummmmmmy-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/dummmmmmy-client.toml -------------------------------------------------------------------------------- /overrides/config/dummmmmmy-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/dummmmmmy-common.toml -------------------------------------------------------------------------------- /overrides/config/dynamic_fps.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /overrides/config/e4mc/e4mc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/e4mc/e4mc.toml -------------------------------------------------------------------------------- /overrides/config/effortlessbuilding-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/effortlessbuilding-client.toml -------------------------------------------------------------------------------- /overrides/config/effortlessbuilding-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/effortlessbuilding-common.toml -------------------------------------------------------------------------------- /overrides/config/embeddium++.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/embeddium++.toml -------------------------------------------------------------------------------- /overrides/config/embeddium-fingerprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/embeddium-fingerprint.json -------------------------------------------------------------------------------- /overrides/config/embeddium-mixins.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/embeddium-mixins.properties -------------------------------------------------------------------------------- /overrides/config/embeddium-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/embeddium-options.json -------------------------------------------------------------------------------- /overrides/config/embeddium-shaders.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/embeddium-shaders.properties -------------------------------------------------------------------------------- /overrides/config/embers-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/embers-client.toml -------------------------------------------------------------------------------- /overrides/config/embers-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/embers-common.toml -------------------------------------------------------------------------------- /overrides/config/emi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/emi.css -------------------------------------------------------------------------------- /overrides/config/emi_loot_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/emi_loot_config.toml -------------------------------------------------------------------------------- /overrides/config/emitrades.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/emitrades.json5 -------------------------------------------------------------------------------- /overrides/config/enderchests-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/enderchests-client.toml -------------------------------------------------------------------------------- /overrides/config/enderchests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/enderchests.toml -------------------------------------------------------------------------------- /overrides/config/endermanoverhaul-client.jsonc: -------------------------------------------------------------------------------- 1 | { 2 | "replaceDefaultEnderman": false 3 | } -------------------------------------------------------------------------------- /overrides/config/endermanoverhaul.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/endermanoverhaul.jsonc -------------------------------------------------------------------------------- /overrides/config/endertanks-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/endertanks-client.toml -------------------------------------------------------------------------------- /overrides/config/endertanks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/endertanks.toml -------------------------------------------------------------------------------- /overrides/config/endrem.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/endrem.toml -------------------------------------------------------------------------------- /overrides/config/enigmaticgraves-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/enigmaticgraves-common.toml -------------------------------------------------------------------------------- /overrides/config/entity_model_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/entity_model_features.json -------------------------------------------------------------------------------- /overrides/config/entity_texture_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/entity_texture_features.json -------------------------------------------------------------------------------- /overrides/config/entityculling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/entityculling.json -------------------------------------------------------------------------------- /overrides/config/epicfight-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/epicfight-client.toml -------------------------------------------------------------------------------- /overrides/config/epicfight.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/epicfight.toml -------------------------------------------------------------------------------- /overrides/config/etf_warnings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignoredConfigIds": [] 3 | } -------------------------------------------------------------------------------- /overrides/config/euphoria_patcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/euphoria_patcher.properties -------------------------------------------------------------------------------- /overrides/config/expanded_ecosphere/config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/expanded_ecosphere/config.json5 -------------------------------------------------------------------------------- /overrides/config/expanded_ecosphere/replace_biomes.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/expanded_ecosphere/replace_biomes.json5 -------------------------------------------------------------------------------- /overrides/config/expatternprovider-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/expatternprovider-common.toml -------------------------------------------------------------------------------- /overrides/config/experienceobelisk-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/experienceobelisk-common.toml -------------------------------------------------------------------------------- /overrides/config/explorify/structure_settings.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/explorify/structure_settings.json5 -------------------------------------------------------------------------------- /overrides/config/explorify/structure_toggles.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/explorify/structure_toggles.json5 -------------------------------------------------------------------------------- /overrides/config/extremesoundmuffler-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/extremesoundmuffler-client.toml -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/act1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/act1.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/act2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/act2.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/act3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/act3.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/background.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/button-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/button-default.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/button-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/button-select.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/frontiers16x.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/frontiers16x.icns -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/frontiers16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/frontiers16x.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/frontiers32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/frontiers32x.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/frontiers_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/frontiers_new.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/lang-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/lang-default.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/lang-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/lang-select.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/norma2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/norma2d.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/splash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/splash.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/untitled-theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/untitled-theme.ogg -------------------------------------------------------------------------------- /overrides/config/fancymenu/assets/fmenu/uuuhlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/assets/fmenu/uuuhlogo.png -------------------------------------------------------------------------------- /overrides/config/fancymenu/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/config.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/custom_gui_screens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/custom_gui_screens.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/customizablemenus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/customizablemenus.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/customization/frontiers_new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/customization/frontiers_new.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/customization/frontiersmm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/customization/frontiersmm.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/customization/mod-menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/customization/mod-menu.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/customization/options-audio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/customization/options-audio.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/customization/options-menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/customization/options-menu.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/extensions/fmaudio/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/extensions/fmaudio/config.cfg -------------------------------------------------------------------------------- /overrides/config/fancymenu/legacy_checklist.txt: -------------------------------------------------------------------------------- 1 | ##[legacy] 2 | 3 | B:custom_guis_ported = 'true'; -------------------------------------------------------------------------------- /overrides/config/fancymenu/locals/de_de.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/locals/de_de.local -------------------------------------------------------------------------------- /overrides/config/fancymenu/locals/en_us.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/locals/en_us.local -------------------------------------------------------------------------------- /overrides/config/fancymenu/locals/pl_pl.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/locals/pl_pl.local -------------------------------------------------------------------------------- /overrides/config/fancymenu/locals/pt_br.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/locals/pt_br.local -------------------------------------------------------------------------------- /overrides/config/fancymenu/locals/ru_ru.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/locals/ru_ru.local -------------------------------------------------------------------------------- /overrides/config/fancymenu/locals/uk_ua.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/locals/uk_ua.local -------------------------------------------------------------------------------- /overrides/config/fancymenu/locals/zh_cn.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/locals/zh_cn.local -------------------------------------------------------------------------------- /overrides/config/fancymenu/menu_identifiers.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/menu_identifiers.db -------------------------------------------------------------------------------- /overrides/config/fancymenu/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/options.txt -------------------------------------------------------------------------------- /overrides/config/fancymenu/ui_themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/ui_themes/dark.json -------------------------------------------------------------------------------- /overrides/config/fancymenu/ui_themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fancymenu/ui_themes/light.json -------------------------------------------------------------------------------- /overrides/config/fancymenu/user_variables.db: -------------------------------------------------------------------------------- 1 | type = user_variables 2 | 3 | -------------------------------------------------------------------------------- /overrides/config/farmersdelight-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/farmersdelight-client.toml -------------------------------------------------------------------------------- /overrides/config/farmersdelight-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/farmersdelight-common.toml -------------------------------------------------------------------------------- /overrides/config/farsight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/farsight.json -------------------------------------------------------------------------------- /overrides/config/fastsuite.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fastsuite.cfg -------------------------------------------------------------------------------- /overrides/config/ferritecore-mixin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ferritecore-mixin.toml -------------------------------------------------------------------------------- /overrides/config/findme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/findme.json -------------------------------------------------------------------------------- /overrides/config/flywheel-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/flywheel-client.toml -------------------------------------------------------------------------------- /overrides/config/fml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fml.toml -------------------------------------------------------------------------------- /overrides/config/forestry-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/forestry-client.toml -------------------------------------------------------------------------------- /overrides/config/forge-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/forge-client.toml -------------------------------------------------------------------------------- /overrides/config/forgematica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/forgematica.json -------------------------------------------------------------------------------- /overrides/config/framedblocks-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/framedblocks-client.toml -------------------------------------------------------------------------------- /overrides/config/framedblocks-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/framedblocks-common.toml -------------------------------------------------------------------------------- /overrides/config/ftbbackups2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbbackups2.json -------------------------------------------------------------------------------- /overrides/config/ftbqoptimizer.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbqoptimizer.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapter_groups.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapter_groups.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapters/acceptance.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapters/acceptance.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapters/dominance.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapters/dominance.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapters/hatred.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapters/hatred.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapters/mercy.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapters/mercy.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapters/questlogic.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapters/questlogic.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapters/regret.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapters/regret.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/chapters/unity.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/chapters/unity.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/data.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbquests/quests/data.snbt -------------------------------------------------------------------------------- /overrides/config/ftbquests/quests/reward_tables/bwg_saplings.snbt: -------------------------------------------------------------------------------- 1 | { 2 | id: "1F02D0E8F2B91660" 3 | loot_size: 1 4 | order_index: 2 5 | rewards: [ ] 6 | title: "BWG Saplings" 7 | } 8 | -------------------------------------------------------------------------------- /overrides/config/ftbxmodcompat.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ftbxmodcompat.snbt -------------------------------------------------------------------------------- /overrides/config/fzzy_config/keybinds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/fzzy_config/keybinds.toml -------------------------------------------------------------------------------- /overrides/config/globalgamerules-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/globalgamerules-common.toml -------------------------------------------------------------------------------- /overrides/config/gm_construct-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/gm_construct-common.toml -------------------------------------------------------------------------------- /overrides/config/gregiceng.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/gregiceng.yaml -------------------------------------------------------------------------------- /overrides/config/gtceu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/gtceu.yaml -------------------------------------------------------------------------------- /overrides/config/gtmutils.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/gtmutils.yaml -------------------------------------------------------------------------------- /overrides/config/guideme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/guideme.toml -------------------------------------------------------------------------------- /overrides/config/ichunutil/ichunutil-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/ichunutil-client.toml -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/aztec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/aztec.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/blue&black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/blue&black.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/blue&orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/blue&orange.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/default.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/grassgreen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/grassgreen.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/green&black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/green&black.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/lazygray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/lazygray.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/monogeneric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/monogeneric.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/nightblack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/nightblack.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/red&black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/red&black.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/skyblue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/skyblue.json -------------------------------------------------------------------------------- /overrides/config/ichunutil/themes/whitelight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ichunutil/themes/whitelight.json -------------------------------------------------------------------------------- /overrides/config/immediatelyfast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/immediatelyfast.json -------------------------------------------------------------------------------- /overrides/config/immersivelanterns-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/immersivelanterns-client.toml -------------------------------------------------------------------------------- /overrides/config/integrateddynamics-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/integrateddynamics-common.toml -------------------------------------------------------------------------------- /overrides/config/integrateddynamicscompat-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/integrateddynamicscompat-common.toml -------------------------------------------------------------------------------- /overrides/config/inventorysorter-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/inventorysorter-client.toml -------------------------------------------------------------------------------- /overrides/config/ironfurnaces-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ironfurnaces-client.toml -------------------------------------------------------------------------------- /overrides/config/ironfurnaces.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/config/itemcollectors-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/itemcollectors-common.toml -------------------------------------------------------------------------------- /overrides/config/jade/hide-blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jade/hide-blocks.json -------------------------------------------------------------------------------- /overrides/config/jade/hide-entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jade/hide-entities.json -------------------------------------------------------------------------------- /overrides/config/jade/jade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jade/jade.json -------------------------------------------------------------------------------- /overrides/config/jade/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jade/plugins.json -------------------------------------------------------------------------------- /overrides/config/jade/sort-order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jade/sort-order.json -------------------------------------------------------------------------------- /overrides/config/jei/blacklist.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/config/jei/ingredient-list-mod-sort-order.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jei/ingredient-list-mod-sort-order.ini -------------------------------------------------------------------------------- /overrides/config/jei/ingredient-list-type-sort-order.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jei/ingredient-list-type-sort-order.ini -------------------------------------------------------------------------------- /overrides/config/jei/jei-client.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jei/jei-client.ini -------------------------------------------------------------------------------- /overrides/config/jei/jei-colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jei/jei-colors.ini -------------------------------------------------------------------------------- /overrides/config/jei/jei-debug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jei/jei-debug.ini -------------------------------------------------------------------------------- /overrides/config/jei/jei-mod-id-format.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jei/jei-mod-id-format.ini -------------------------------------------------------------------------------- /overrides/config/jei/recipe-category-sort-order.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jei/recipe-category-sort-order.ini -------------------------------------------------------------------------------- /overrides/config/jmi-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/jmi-client.toml -------------------------------------------------------------------------------- /overrides/config/konkrete/locals/de_de.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/konkrete/locals/de_de.local -------------------------------------------------------------------------------- /overrides/config/konkrete/locals/en_us.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/konkrete/locals/en_us.local -------------------------------------------------------------------------------- /overrides/config/konkrete/locals/pl_pl.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/konkrete/locals/pl_pl.local -------------------------------------------------------------------------------- /overrides/config/konkrete/locals/pt_br.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/konkrete/locals/pt_br.local -------------------------------------------------------------------------------- /overrides/config/letmedespawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/letmedespawn.json -------------------------------------------------------------------------------- /overrides/config/lithium.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/lithium.properties -------------------------------------------------------------------------------- /overrides/config/littletiles-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/littletiles-client.json -------------------------------------------------------------------------------- /overrides/config/littletiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/littletiles.json -------------------------------------------------------------------------------- /overrides/config/lodestone-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/lodestone-client.toml -------------------------------------------------------------------------------- /overrides/config/logbegone.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/logbegone.toml -------------------------------------------------------------------------------- /overrides/config/lootr-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/lootr-client.toml -------------------------------------------------------------------------------- /overrides/config/lootr-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/lootr-common.toml -------------------------------------------------------------------------------- /overrides/config/mae2-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/mae2-common.toml -------------------------------------------------------------------------------- /overrides/config/mae2a-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/mae2a-common.toml -------------------------------------------------------------------------------- /overrides/config/mafglib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/mafglib.json -------------------------------------------------------------------------------- /overrides/config/malum-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/malum-client.toml -------------------------------------------------------------------------------- /overrides/config/malum-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/malum-common.toml -------------------------------------------------------------------------------- /overrides/config/mantle-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/mantle-client.toml -------------------------------------------------------------------------------- /overrides/config/measurements-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/measurements-client.toml -------------------------------------------------------------------------------- /overrides/config/megacells.json: -------------------------------------------------------------------------------- 1 | { 2 | "AllowSpentWaste": false 3 | } -------------------------------------------------------------------------------- /overrides/config/merequester-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/merequester-common.toml -------------------------------------------------------------------------------- /overrides/config/mobtimizations/features.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/mobtimizations/features.toml -------------------------------------------------------------------------------- /overrides/config/modernfix-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/modernfix-common.toml -------------------------------------------------------------------------------- /overrides/config/modernfix-mixins.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/modernfix-mixins.properties -------------------------------------------------------------------------------- /overrides/config/modnametooltip-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/modnametooltip-client.toml -------------------------------------------------------------------------------- /overrides/config/modonomicon-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/modonomicon-client.toml -------------------------------------------------------------------------------- /overrides/config/moonlight-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/moonlight-client.toml -------------------------------------------------------------------------------- /overrides/config/moonlight-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/moonlight-common.toml -------------------------------------------------------------------------------- /overrides/config/morered-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/morered-client.toml -------------------------------------------------------------------------------- /overrides/config/naturescompass-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/naturescompass-client.toml -------------------------------------------------------------------------------- /overrides/config/naturescompass-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/naturescompass-common.toml -------------------------------------------------------------------------------- /overrides/config/nerb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/nerb.yaml -------------------------------------------------------------------------------- /overrides/config/nomoportals-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/nomoportals-common.toml -------------------------------------------------------------------------------- /overrides/config/observable.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /overrides/config/occultism-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/occultism-client.toml -------------------------------------------------------------------------------- /overrides/config/oculus.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/oculus.properties -------------------------------------------------------------------------------- /overrides/config/okzoomer-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/okzoomer-client.toml -------------------------------------------------------------------------------- /overrides/config/out_of_sight-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/out_of_sight-client.toml -------------------------------------------------------------------------------- /overrides/config/overloadedarmorbar-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/overloadedarmorbar-client.toml -------------------------------------------------------------------------------- /overrides/config/palladium-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/palladium-config.json -------------------------------------------------------------------------------- /overrides/config/paraglider-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/paraglider-common.toml -------------------------------------------------------------------------------- /overrides/config/paraglider-player-states.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/paraglider-player-states.toml -------------------------------------------------------------------------------- /overrides/config/parcool-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/parcool-client.toml -------------------------------------------------------------------------------- /overrides/config/patchouli-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/patchouli-client.toml -------------------------------------------------------------------------------- /overrides/config/polymorph-integrations.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/polymorph-integrations.toml -------------------------------------------------------------------------------- /overrides/config/ponder-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ponder-client.toml -------------------------------------------------------------------------------- /overrides/config/prettyrain.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/prettyrain.json5 -------------------------------------------------------------------------------- /overrides/config/questsadditions-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/questsadditions-client.toml -------------------------------------------------------------------------------- /overrides/config/recipeessentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/recipeessentials.json -------------------------------------------------------------------------------- /overrides/config/rehooked-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/rehooked-client.toml -------------------------------------------------------------------------------- /overrides/config/renderscale.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/renderscale.json5 -------------------------------------------------------------------------------- /overrides/config/resourceful-config-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/resourceful-config-web.json -------------------------------------------------------------------------------- /overrides/config/restrictedportals-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/restrictedportals-common.toml -------------------------------------------------------------------------------- /overrides/config/sdrp-common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sdrp-common.json -------------------------------------------------------------------------------- /overrides/config/sereneseasons/fertility.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sereneseasons/fertility.toml -------------------------------------------------------------------------------- /overrides/config/sereneseasons/seasons.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sereneseasons/seasons.toml -------------------------------------------------------------------------------- /overrides/config/serverconfigupdater-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/serverconfigupdater-common.toml -------------------------------------------------------------------------------- /overrides/config/shetiphiancore-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/shetiphiancore-client.toml -------------------------------------------------------------------------------- /overrides/config/shetiphiancore.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/shetiphiancore.toml -------------------------------------------------------------------------------- /overrides/config/shimmer-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/shimmer-client.toml -------------------------------------------------------------------------------- /overrides/config/showcaseitem-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/showcaseitem-common.toml -------------------------------------------------------------------------------- /overrides/config/shrink-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/shrink-common.toml -------------------------------------------------------------------------------- /overrides/config/sidebar_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sidebar_buttons.json -------------------------------------------------------------------------------- /overrides/config/simpleclouds-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simpleclouds-client.toml -------------------------------------------------------------------------------- /overrides/config/simpleclouds-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simpleclouds-common.toml -------------------------------------------------------------------------------- /overrides/config/simplyswords_extra/backupconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_extra/backupconfig.json -------------------------------------------------------------------------------- /overrides/config/simplyswords_extra/loot_config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_extra/loot_config.json5 -------------------------------------------------------------------------------- /overrides/config/simplyswords_main/gem_effects.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_main/gem_effects.json5 -------------------------------------------------------------------------------- /overrides/config/simplyswords_main/general.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_main/general.json5 -------------------------------------------------------------------------------- /overrides/config/simplyswords_main/loot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_main/loot.json5 -------------------------------------------------------------------------------- /overrides/config/simplyswords_main/runic_effects.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_main/runic_effects.json5 -------------------------------------------------------------------------------- /overrides/config/simplyswords_main/status_effects.json5: -------------------------------------------------------------------------------- 1 | { 2 | "echoDamage": 2 3 | } -------------------------------------------------------------------------------- /overrides/config/simplyswords_main/unique_effects.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_main/unique_effects.json5 -------------------------------------------------------------------------------- /overrides/config/simplyswords_main/weapon_attributes.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/simplyswords_main/weapon_attributes.json5 -------------------------------------------------------------------------------- /overrides/config/smoothchunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/smoothchunk.json -------------------------------------------------------------------------------- /overrides/config/sodiumdynamiclights-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sodiumdynamiclights-client.toml -------------------------------------------------------------------------------- /overrides/config/sodiumextras-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sodiumextras-client.toml -------------------------------------------------------------------------------- /overrides/config/solonion-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/solonion-client.json -------------------------------------------------------------------------------- /overrides/config/solonion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/solonion.json -------------------------------------------------------------------------------- /overrides/config/sophisticatedbackpacks-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sophisticatedbackpacks-common.toml -------------------------------------------------------------------------------- /overrides/config/sophisticatedcore-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sophisticatedcore-client.toml -------------------------------------------------------------------------------- /overrides/config/sophisticatedcore-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sophisticatedcore-common.toml -------------------------------------------------------------------------------- /overrides/config/sophisticatedstorage-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sophisticatedstorage-client.toml -------------------------------------------------------------------------------- /overrides/config/sophisticatedstorage-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/sophisticatedstorage-common.toml -------------------------------------------------------------------------------- /overrides/config/spark/activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/spark/activity.json -------------------------------------------------------------------------------- /overrides/config/spark/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/spark/config.json -------------------------------------------------------------------------------- /overrides/config/supplementaries-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/supplementaries-client.toml -------------------------------------------------------------------------------- /overrides/config/supplementaries-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/supplementaries-common.toml -------------------------------------------------------------------------------- /overrides/config/tconstruct-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/tconstruct-client.toml -------------------------------------------------------------------------------- /overrides/config/tconstruct-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/tconstruct-common.toml -------------------------------------------------------------------------------- /overrides/config/tectonic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/tectonic.json -------------------------------------------------------------------------------- /overrides/config/tempad-client.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/tempad-client.jsonc -------------------------------------------------------------------------------- /overrides/config/tempad.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/tempad.jsonc -------------------------------------------------------------------------------- /overrides/config/terrablender.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/terrablender.toml -------------------------------------------------------------------------------- /overrides/config/thinair-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/thinair-common.toml -------------------------------------------------------------------------------- /overrides/config/tinkerslevellingaddon-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/tinkerslevellingaddon-client.toml -------------------------------------------------------------------------------- /overrides/config/tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/tips.json -------------------------------------------------------------------------------- /overrides/config/titanium/titanium-tags.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/titanium/titanium-tags.toml -------------------------------------------------------------------------------- /overrides/config/titanium/titanium.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/titanium/titanium.toml -------------------------------------------------------------------------------- /overrides/config/toms_storage-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/toms_storage-common.toml -------------------------------------------------------------------------------- /overrides/config/toolbelt-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/toolbelt-client.toml -------------------------------------------------------------------------------- /overrides/config/toolbelt-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/toolbelt-common.toml -------------------------------------------------------------------------------- /overrides/config/torchmaster.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/torchmaster.toml -------------------------------------------------------------------------------- /overrides/config/trashcans-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/trashcans-common.toml -------------------------------------------------------------------------------- /overrides/config/travelanchors/client.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/travelanchors/client.json5 -------------------------------------------------------------------------------- /overrides/config/travelanchors/common.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/travelanchors/common.json5 -------------------------------------------------------------------------------- /overrides/config/trofers/general.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/trofers/general.json5 -------------------------------------------------------------------------------- /overrides/config/ulvcovm-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/ulvcovm-common.toml -------------------------------------------------------------------------------- /overrides/config/undergarden-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/undergarden-client.toml -------------------------------------------------------------------------------- /overrides/config/undergarden-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/undergarden-common.toml -------------------------------------------------------------------------------- /overrides/config/usefulbackpacks-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/usefulbackpacks-common.toml -------------------------------------------------------------------------------- /overrides/config/waterframes-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/waterframes-client.toml -------------------------------------------------------------------------------- /overrides/config/watut-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/watut-client.toml -------------------------------------------------------------------------------- /overrides/config/watut-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/watut-common.toml -------------------------------------------------------------------------------- /overrides/config/watut-item-arm-adjustments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/watut-item-arm-adjustments.json -------------------------------------------------------------------------------- /overrides/config/watut-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/watut-server.toml -------------------------------------------------------------------------------- /overrides/config/waves-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/waves-common.toml -------------------------------------------------------------------------------- /overrides/config/waystones-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/waystones-common.toml -------------------------------------------------------------------------------- /overrides/config/wfscaveoverhaul.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/config/wfscaveoverhaul.cfg -------------------------------------------------------------------------------- /overrides/defaultconfigs/aether-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/aether-client.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/aether-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/aether-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/aether-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/aether-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/carryon-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/carryon-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/coldsweat/entity_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/coldsweat/entity_settings.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/coldsweat/item_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/coldsweat/item_settings.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/coldsweat/main.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/coldsweat/main.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/coldsweat/world_settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/coldsweat/world_settings.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/create-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/create-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/darkmodeeverywhere-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/darkmodeeverywhere-client.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/effortlessbuilding-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/effortlessbuilding-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/ftbchunks/client-config.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/ftbchunks/client-config.snbt -------------------------------------------------------------------------------- /overrides/defaultconfigs/ftbchunks/ftbchunks-world.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/ftbchunks/ftbchunks-world.snbt -------------------------------------------------------------------------------- /overrides/defaultconfigs/ftbessentials-server.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/ftbessentials-server.snbt -------------------------------------------------------------------------------- /overrides/defaultconfigs/ftblibrary/ftblibrary-client.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/ftblibrary/ftblibrary-client.snbt -------------------------------------------------------------------------------- /overrides/defaultconfigs/ftbqoptimizer.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/ftbqoptimizer.snbt -------------------------------------------------------------------------------- /overrides/defaultconfigs/ftbquests/client-config.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/ftbquests/client-config.snbt -------------------------------------------------------------------------------- /overrides/defaultconfigs/ftbxmodcompat/ftbxmodcompat.snbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/ftbxmodcompat/ftbxmodcompat.snbt -------------------------------------------------------------------------------- /overrides/defaultconfigs/globalgamerules-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/globalgamerules-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/integrateddynamics-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/integrateddynamics-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/noflyzone-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/noflyzone-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/nomoportals-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/nomoportals-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/occultism-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/occultism-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/paraglider-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/paraglider-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/paraglider-player-states.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/paraglider-player-states.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/paraglider-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/paraglider-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/parcool-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/parcool-client.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/parcool-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/parcool-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/restrictedportals-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/restrictedportals-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/sereneseasons-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/sereneseasons-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/sereneseasons/seasons.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/sereneseasons/seasons.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/sophisticatedstorage-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/sophisticatedstorage-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/supplementaries-client.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/supplementaries-client.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/supplementaries-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/supplementaries-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/thinair-common.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/thinair-common.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/tinkerslevellingaddon-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/tinkerslevellingaddon-server.toml -------------------------------------------------------------------------------- /overrides/defaultconfigs/toms_storage-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/defaultconfigs/toms_storage-server.toml -------------------------------------------------------------------------------- /overrides/kubejs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/README.txt -------------------------------------------------------------------------------- /overrides/kubejs/assets/apotheosis/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/apotheosis/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/apotheosis/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/apotheosis/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/aquamirae/item_skins/divider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/aquamirae/item_skins/divider.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/blasmatech/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/blasmatech/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/blasmatech/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/blasmatech/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/botania/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/botania/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/botania/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/botania/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/cosmiccore/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/cosmiccore/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/diet/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/diet/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/diet/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/diet/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/emi/category/properties/emi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/emi/category/properties/emi.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/carry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/carry.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/ccore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/ccore.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/ghost2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/ghost2.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/ghost3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/ghost3.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/hammer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/hammer.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/love.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/love.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/ocean.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/prisoner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/prisoner.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/respirator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/respirator.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/soup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/soup.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/sun_tier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/sun_tier.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/temp.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/frontiers/tips/warden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/frontiers/tips/warden.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/functionalstorage/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/functionalstorage/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/functionalstorage/lang/zh_cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "item.functionalstorage.gold_upgrade":"玫瑰金升级" 3 | } -------------------------------------------------------------------------------- /overrides/kubejs/assets/gateways/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/gateways/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/gateways/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/gateways/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/gtceu/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/gtceu/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/gtceu/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/gtceu/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/gtceu/ui/progress_heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/gtceu/ui/progress_heavy.png -------------------------------------------------------------------------------- /overrides/kubejs/assets/gtceu/ui/progress_heavy_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/gtceu/ui/progress_heavy_active.png -------------------------------------------------------------------------------- /overrides/kubejs/assets/ironfurnaces/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/ironfurnaces/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/ironfurnaces/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/ironfurnaces/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/kubejs/textures/item/balls_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/kubejs/textures/item/balls_old.png -------------------------------------------------------------------------------- /overrides/kubejs/assets/kubejs/textures/item/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/kubejs/textures/item/dust.png -------------------------------------------------------------------------------- /overrides/kubejs/assets/kubejs/textures/item/magebloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/kubejs/textures/item/magebloom.png -------------------------------------------------------------------------------- /overrides/kubejs/assets/malum/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/malum/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/malum/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/malum/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/occultism/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/occultism/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/occultism/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/occultism/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/ponderjs_generated/lang/en_us.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /overrides/kubejs/assets/quests/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/quests/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/supplementaries/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/supplementaries/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/supplementaries/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/supplementaries/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/tconstruct/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/tconstruct/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/tconstruct/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/tconstruct/lang/zh_cn.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/thinair/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/assets/thinair/lang/en_us.json -------------------------------------------------------------------------------- /overrides/kubejs/assets/thinair/lang/zh_cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.thinair.signal_torch":"信号火把" 3 | } -------------------------------------------------------------------------------- /overrides/kubejs/client_scripts/SDRP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/client_scripts/SDRP.js -------------------------------------------------------------------------------- /overrides/kubejs/client_scripts/ToolTips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/client_scripts/ToolTips.js -------------------------------------------------------------------------------- /overrides/kubejs/client_scripts/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/client_scripts/example.js -------------------------------------------------------------------------------- /overrides/kubejs/config/client.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/config/client.properties -------------------------------------------------------------------------------- /overrides/kubejs/config/common.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/config/common.properties -------------------------------------------------------------------------------- /overrides/kubejs/config/probejs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/config/probejs.json -------------------------------------------------------------------------------- /overrides/kubejs/data/ad_astra/planets/sun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/ad_astra/planets/sun.json -------------------------------------------------------------------------------- /overrides/kubejs/data/ad_astra/planets/sun_orbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/ad_astra/planets/sun_orbit.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/ballast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/ballast.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/brawlers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/brawlers.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/breach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/breach.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/combatant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/combatant.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/ember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/ember.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/frost.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/guardian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/guardian.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/lightning.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/lunar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/lunar.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/malignant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/malignant.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/samurai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/samurai.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/solar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/solar.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/splendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/splendor.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/gems/core/warlord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/gems/core/warlord.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/rarities/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/rarities/common.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/rarities/epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/rarities/epic.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/rarities/mythic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/rarities/mythic.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/rarities/rare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/rarities/rare.json -------------------------------------------------------------------------------- /overrides/kubejs/data/apotheosis/rarities/uncommon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/apotheosis/rarities/uncommon.json -------------------------------------------------------------------------------- /overrides/kubejs/data/diet_mana/diet/groups/mana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/diet_mana/diet/groups/mana.json -------------------------------------------------------------------------------- /overrides/kubejs/data/diet_mana/diet/suites/builtin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/diet_mana/diet/suites/builtin.json -------------------------------------------------------------------------------- /overrides/kubejs/data/diet_psi/diet/groups/psi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/diet_psi/diet/groups/psi.json -------------------------------------------------------------------------------- /overrides/kubejs/data/diet_psi/diet/suites/builtin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/diet_psi/diet/suites/builtin.json -------------------------------------------------------------------------------- /overrides/kubejs/data/embers/recipes/stamping/ash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/embers/recipes/stamping/ash.json -------------------------------------------------------------------------------- /overrides/kubejs/data/embers/recipes/stamping/sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/embers/recipes/stamping/sand.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/dimension/sun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/dimension/sun.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/dimension/sun_orbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/dimension/sun_orbit.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/dimension_type/sun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/dimension_type/sun.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/trofers/coils/cupro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/trofers/coils/cupro.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/trofers/coils/pifew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/trofers/coils/pifew.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/trofers/misc/aether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/trofers/misc/aether.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/trofers/multi/ebf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/trofers/multi/ebf.json -------------------------------------------------------------------------------- /overrides/kubejs/data/frontiers/trofers/multi/pbf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/data/frontiers/trofers/multi/pbf.json -------------------------------------------------------------------------------- /overrides/kubejs/data/tcintegrations/recipes/tools/materials/casting/manasteel.json: -------------------------------------------------------------------------------- 1 | { "conditions": [{ "type": "forge:false" }]} -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/ItemEvents/LootJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/ItemEvents/LootJS.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/ItemEvents/Tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/ItemEvents/Tags.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/ItemEvents/Ultimine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/ItemEvents/Ultimine.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/ModEvents/Gamerules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/ModEvents/Gamerules.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/Aether_veins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/Aether_veins.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/End_veins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/End_veins.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/Mars_Veins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/Mars_Veins.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/Mercury_veins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/Mercury_veins.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/Moon_veins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/Moon_veins.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/NetherVeins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/NetherVeins.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/Ore_Removals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/Ore_Removals.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/RedstoneChromite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/RedstoneChromite.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Ores/Venus_veins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Ores/Venus_veins.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Ad_Astra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Ad_Astra.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Ae2_Mods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Ae2_Mods.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Aether.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Aether.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Apotheosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Apotheosis.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/ArsNouveau.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/ArsNouveau.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Botania.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Botania.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Chains/Airs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Chains/Airs.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Chains/Kapton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Chains/Kapton.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Chains/PEDOT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Chains/PEDOT.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Chains/Prisma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Chains/Prisma.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Cognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Cognition.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/CosmicCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/CosmicCore.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Create.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Create_Deco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Create_Deco.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Delightful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Delightful.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/DrygmyGrove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/DrygmyGrove.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/ElevatorMod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/ElevatorMod.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Embers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Embers.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Ender_Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Ender_Storage.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Forestry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Forestry.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Gateways.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Gateways.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Gregtech/Components/CasingsAndHulls.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Gregtech/Components/VoltageTierSubparts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/IntDynamics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/IntDynamics.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/IronFurnace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/IronFurnace.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/LittleTiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/LittleTiles.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Malum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Malum.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/NaturesAura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/NaturesAura.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Occultism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Occultism.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Paraglider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Paraglider.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Rehooked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Rehooked.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Shrink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Shrink.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/SimplySwords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/SimplySwords.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Torchmaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Torchmaster.js -------------------------------------------------------------------------------- /overrides/kubejs/server_scripts/Recipes/Undergarden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/server_scripts/Recipes/Undergarden.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/Custom_Blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/Custom_Blocks.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/Custom_Fluids.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/ItemGeneration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/ItemGeneration.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/ItemModification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/ItemModification.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/Machines/Multiblocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/Machines/Multiblocks.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/Machines/RecipeTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/Machines/RecipeTypes.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/Materials/CustomOres.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/Materials/CustomOres.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/Materials/HSQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/Materials/HSQ.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/Materials/NuclearGT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/Materials/NuclearGT.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/MechanicalFlowers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/MechanicalFlowers.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/MoreJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/MoreJS.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/OreRemoval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/OreRemoval.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/WorldGen/DimMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/WorldGen/DimMarker.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/WorldGen/StoneTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/WorldGen/StoneTypes.js -------------------------------------------------------------------------------- /overrides/kubejs/startup_scripts/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/kubejs/startup_scripts/jsconfig.json -------------------------------------------------------------------------------- /overrides/mods/memoryleakfix-forge-1.17+-1.1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/mods/memoryleakfix-forge-1.17+-1.1.5.jar -------------------------------------------------------------------------------- /overrides/shaderpacks/PhotonFrontiers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/shaderpacks/PhotonFrontiers.zip -------------------------------------------------------------------------------- /overrides/shaderpacks/PhotonFrontiers.zip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/overrides/shaderpacks/PhotonFrontiers.zip.txt -------------------------------------------------------------------------------- /scripts/curse_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/scripts/curse_client.py -------------------------------------------------------------------------------- /scripts/pack_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/scripts/pack_generation.py -------------------------------------------------------------------------------- /scripts/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/scripts/release.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests 3 | -------------------------------------------------------------------------------- /scripts/server_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/scripts/server_generation.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /server-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/server-files/README.md -------------------------------------------------------------------------------- /server-files/startserver.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/server-files/startserver.bat -------------------------------------------------------------------------------- /server-files/startserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/server-files/startserver.sh -------------------------------------------------------------------------------- /server-files/user_jvm_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/server-files/user_jvm_args.txt -------------------------------------------------------------------------------- /server-mods-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frontiers-PackForge/CosmicFrontiers/HEAD/server-mods-config.json --------------------------------------------------------------------------------