├── config ├── jei │ ├── bookmarks.ini │ └── ingredient-list-type-sort-order.ini ├── defaultoptions │ └── options.txt ├── pipez-client.toml ├── computercraft-client-1.toml.bak ├── portality │ └── modules.toml ├── chiselsandbits-client-1.toml.bak ├── appliedenergistics2-common-1.toml.bak ├── repurposed_structures-forge │ ├── igloos-1.toml.bak │ ├── dungeons-1.toml.bak │ ├── cities.toml │ ├── ruined_portals.toml │ ├── bastions.toml │ ├── ruins.toml │ ├── igloos.toml │ ├── temples.toml │ ├── witch_huts.toml │ ├── shipwrecks.toml │ ├── modded_loot.toml │ ├── wells.toml │ ├── pyramids.toml │ ├── mansions.toml │ └── fortresses.toml ├── advRocketry │ ├── oreConfig.xml │ └── asteroidConfig.xml ├── storagedrawers-client.toml ├── titanium │ ├── resources.toml │ ├── modules.toml │ ├── titanium.toml │ └── titanium-tags.toml ├── infinitylib │ └── config-common.toml ├── archers_paradox-client.toml ├── paintings-client.toml ├── dice-common.toml ├── biomesoplenty │ ├── client.toml │ └── generation.toml ├── cavebiomeapi-common.toml ├── darkerdepths-common.toml ├── libvulpes.toml ├── MouseTweaks.cfg ├── flywheel-client.toml ├── enchantedbookredesign-client.toml ├── ftbquests │ └── quests │ │ ├── chapter_groups.snbt │ │ └── data.snbt ├── moreminecartsconfig.toml ├── configured-client.toml ├── fastbench.cfg ├── endergetic-common.toml ├── cookiecore-client.toml ├── fairylights-common.toml ├── oretweaker │ ├── data │ │ ├── basalt.json │ │ ├── marble.json │ │ ├── limestone.json │ │ ├── redstone_ore.json │ │ ├── silver_ore.json │ │ ├── aridrock_silver_ore.json │ │ ├── aridrock_redstone_ore.json │ │ ├── limestone_silver_ore.json │ │ ├── limestone_redstone_ore.json │ │ ├── lead_ore.json │ │ ├── niter_ore.json │ │ ├── ruby_ore.json │ │ ├── apatite_ore.json │ │ ├── cinnabar_ore.json │ │ ├── emerald_ore.json │ │ ├── nickel_ore.json │ │ ├── sapphire_ore.json │ │ ├── quartz_ore.json │ │ ├── xpetrified_ore.json │ │ ├── arcane_crystal_ore.json │ │ └── randomium_ore.json │ ├── templates │ │ ├── other │ │ │ └── fuck_silverfish.json │ │ ├── defaults │ │ │ ├── dirt.json │ │ │ ├── andesite.json │ │ │ ├── coal_ore.json │ │ │ ├── diorite.json │ │ │ ├── gold_ore.json │ │ │ ├── granite.json │ │ │ ├── iron_ore.json │ │ │ ├── lapis_ore.json │ │ │ ├── diamond_ore.json │ │ │ ├── redstone_ore.json │ │ │ ├── blackstone.json │ │ │ ├── soul_sand.json │ │ │ ├── magma_block.json │ │ │ ├── emerald_ore.json │ │ │ ├── infested_stone.json │ │ │ ├── gravel.json │ │ │ ├── ancient_debris.json │ │ │ ├── nether_gold_ore.json │ │ │ └── nether_quartz_ore.json │ │ └── remove │ │ │ ├── remove_igneous_rocks.json │ │ │ ├── remove_stones_nether.json │ │ │ └── remove_ores_nether.json │ ├── OreTweaker.toml │ └── Info.txt ├── thermal-client.toml ├── decorative_blocks-common.toml ├── fml.toml ├── farmersdelight-client.toml ├── openloader-common.toml ├── fairylights-client.toml ├── occultism-client.toml ├── mantle-client.toml ├── sidebar_buttons.json ├── CBMicroblock.cfg ├── forge-common.toml ├── jade-common.toml ├── valhelsia_core-client.toml ├── craftingtweaks-common.toml ├── defaultoptions-common.toml ├── cosmeticarmorreworked-common.toml ├── forbidden_arcanus-client.toml ├── computercraft-client.toml ├── chiselsandbits-common.toml ├── naturescompass-client.toml ├── ccl.cfg ├── EnderStorage.cfg ├── abnormals_core-common.toml ├── blockcarpentry-common.toml ├── magicfeather-common.toml ├── ponderjs-client.toml ├── custom-micromaterials.cfg ├── curios-client.toml ├── bwncr-common.toml ├── pathtodirt-common.toml ├── cavern-common.toml ├── structurescompass-client.toml ├── ChickenChunks.cfg ├── backtools.toml ├── cofh_core-client.toml ├── constructionwand-client.toml ├── craftingtweaks-client.toml ├── tconstruct-client.toml └── betteradvancements-client.toml ├── kubejs ├── assets │ └── kubejs │ │ ├── lang │ │ └── en_us.json │ │ ├── textures │ │ ├── fluid │ │ │ ├── matrix_flow.png.mcmeta │ │ │ ├── number_flow.png.mcmeta │ │ │ ├── fine_sand_flow.png.mcmeta │ │ │ ├── matrix_still.png.mcmeta │ │ │ ├── number_still.png.mcmeta │ │ │ ├── matrix_flow.png │ │ │ ├── number_flow.png │ │ │ ├── matrix_still.png │ │ │ ├── number_still.png │ │ │ ├── fine_sand_flow.png │ │ │ └── fine_sand_still.png │ │ ├── block │ │ │ ├── computation_matrix.png.mcmeta │ │ │ ├── computation_matrix_2.png.mcmeta │ │ │ ├── cage_lamp.png │ │ │ ├── chaos_glass.png │ │ │ ├── zinc_casing.png │ │ │ ├── fluix_casing.png │ │ │ ├── invar_casing.png │ │ │ ├── mundane_glass.png │ │ │ ├── reagent_glass.png │ │ │ ├── catalyst_glass.png │ │ │ ├── enderium_casing.png │ │ │ ├── fluix_casing_ctm.png │ │ │ ├── invar_casing_ctm.png │ │ │ ├── invar_casing_top.png │ │ │ ├── zinc_casing_ctm.png │ │ │ ├── zinc_machine_top.png │ │ │ ├── accellerator_glass.png │ │ │ ├── computation_matrix.png │ │ │ ├── zinc_machine_inner.png │ │ │ ├── zinc_machine_side.png │ │ │ ├── computation_matrix_2.png │ │ │ ├── enderium_casing_ctm.png │ │ │ ├── enderium_casing_top.png │ │ │ ├── enderium_machine_side.png │ │ │ ├── enderium_machine_top.png │ │ │ ├── invar_casing_bottom.png │ │ │ ├── zinc_machine_bottom.png │ │ │ ├── enderium_casing_top_ctm.png │ │ │ ├── enderium_machine_bottom.png │ │ │ ├── enderium_machine_inner.png │ │ │ ├── fluix_casing.png.mcmeta │ │ │ ├── invar_casing.png.mcmeta │ │ │ ├── zinc_casing.png.mcmeta │ │ │ ├── enderium_casing.png.mcmeta │ │ │ └── enderium_casing_top.png.mcmeta │ │ └── item │ │ │ ├── missingno.png.mcmeta │ │ │ ├── five.png │ │ │ ├── four.png │ │ │ ├── nine.png │ │ │ ├── one.png │ │ │ ├── plus.png │ │ │ ├── six.png │ │ │ ├── two.png │ │ │ ├── zero.png │ │ │ ├── charged_calculator.png.mcmeta │ │ │ ├── chromatic_resonator.png.mcmeta │ │ │ ├── divide.png │ │ │ ├── eight.png │ │ │ ├── minus.png │ │ │ ├── seven.png │ │ │ ├── three.png │ │ │ ├── dye_entangled_singularity.png.mcmeta │ │ │ ├── missingno.png │ │ │ ├── multiply.png │ │ │ ├── plus_cast.png │ │ │ ├── sand_ball.png │ │ │ ├── zinc_dust.png │ │ │ ├── boot_medium.png │ │ │ ├── calculator.png │ │ │ ├── coke_chunk.png │ │ │ ├── divide_cast.png │ │ │ ├── eight_cast.png │ │ │ ├── example_item.png │ │ │ ├── minus_cast.png │ │ │ ├── radiant_coil.png │ │ │ ├── rough_sand.png │ │ │ ├── smoke_mote.png │ │ │ ├── thermal_cast.png │ │ │ ├── three_cast.png │ │ │ ├── trade_card_0.png │ │ │ ├── trade_card_1.png │ │ │ ├── trade_card_2.png │ │ │ ├── zinc_sheet.png │ │ │ ├── circuit_scrap.png │ │ │ ├── invar_compound.png │ │ │ ├── multiply_cast.png │ │ │ ├── purified_sand.png │ │ │ ├── radiant_sheet.png │ │ │ ├── creosote_pellet.png │ │ │ ├── ground_slimy_fern.png │ │ │ ├── kinetic_mechanism.png │ │ │ ├── matter_plastics.png │ │ │ ├── nickel_compound.png │ │ │ ├── profession_card_0.png │ │ │ ├── profession_card_1.png │ │ │ ├── profession_card_2.png │ │ │ ├── sealed_mechanism.png │ │ │ ├── silicon_compound.png │ │ │ ├── slimy_fern_leaf.png │ │ │ ├── abstruse_mechanism.png │ │ │ ├── charged_calculator.png │ │ │ ├── chromatic_resonator.png │ │ │ ├── inductive_mechanism.png │ │ │ ├── infernal_mechanism.png │ │ │ ├── pipe_module_tier_1.png │ │ │ ├── pipe_module_tier_2.png │ │ │ ├── pipe_module_tier_3.png │ │ │ ├── pipe_module_utility.png │ │ │ ├── calculation_mechanism.png │ │ │ ├── incomplete_coke_chunk.png │ │ │ ├── dye_entangled_singularity.png │ │ │ ├── incomplete_logic_processor.png │ │ │ ├── incomplete_sealed_mechanism.png │ │ │ ├── incomplete_abstruse_mechanism.png │ │ │ ├── incomplete_infernal_mechanism.png │ │ │ ├── incomplete_kinetic_mechanism.png │ │ │ ├── incomplete_calculation_mechanism.png │ │ │ ├── incomplete_calculation_processor.png │ │ │ ├── incomplete_engineering_processor.png │ │ │ └── incomplete_inductive_mechanism.png │ │ ├── ponder │ │ ├── laser_alchemy.nbt │ │ └── rocket_scene.nbt │ │ └── models │ │ ├── block │ │ ├── chaos_catalyst.json │ │ ├── mundane_substrate.json │ │ ├── catalyst.json │ │ ├── machine.json │ │ ├── enderium_casing.json │ │ ├── zinc_machine.json │ │ └── enderium_machine.json │ │ └── item │ │ ├── trade_card.json │ │ └── profession_card.json ├── exported │ └── tags │ │ ├── potions.txt │ │ ├── enchantments.txt │ │ ├── functions.txt │ │ └── tile_entity_types.txt ├── data │ ├── architects_palette │ │ └── loot_modifiers │ │ │ └── wither_skeleton_bones.json │ ├── buddycards │ │ └── loot_tables │ │ │ └── inject │ │ │ └── fd_buddybeans.json │ └── extcaves │ │ └── loot_tables │ │ └── blocks │ │ ├── lavastone_stairs.json │ │ ├── polished_lavastone.json │ │ ├── polished_lavastone_stairs.json │ │ ├── lavastone_slab.json │ │ └── polished_lavastone_slab.json ├── config │ ├── common.properties │ └── client.properties └── server_scripts │ └── quests.js ├── openloader ├── .cache ├── resources │ └── simis_edits │ │ ├── assets │ │ ├── minecraft │ │ │ ├── texts │ │ │ │ └── splashes.txt │ │ │ └── textures │ │ │ │ └── gui │ │ │ │ └── title │ │ │ │ └── background │ │ │ │ ├── panorama_0.png │ │ │ │ ├── panorama_1.png │ │ │ │ ├── panorama_2.png │ │ │ │ ├── panorama_3.png │ │ │ │ ├── panorama_4.png │ │ │ │ └── panorama_5.png │ │ ├── create │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ └── portable_storage_interface.png │ │ │ │ └── item │ │ │ │ ├── golden_electron_tube_unused.png │ │ │ │ └── incomplete_precision_mechanism.png │ │ ├── pipez │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ ├── textures │ │ │ │ └── block │ │ │ │ │ ├── pipe_end.png │ │ │ │ │ ├── pipe_cover.png │ │ │ │ │ ├── pipe_rims.png │ │ │ │ │ ├── pipe_end_inner.png │ │ │ │ │ ├── pipe_rims_inner.png │ │ │ │ │ └── pipe_extract_overlay.png │ │ │ └── models │ │ │ │ └── block │ │ │ │ ├── window.json │ │ │ │ ├── cover.json │ │ │ │ ├── bottom_corner.json │ │ │ │ ├── top_corner.json │ │ │ │ └── side_corner.json │ │ ├── libvulpes │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ ├── textures │ │ │ │ └── item │ │ │ │ │ └── linker.png │ │ │ └── models │ │ │ │ └── item │ │ │ │ └── linker.json │ │ ├── occultism │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ └── sounds │ │ │ │ └── start_ritual.ogg │ │ ├── advancedrocketry │ │ │ ├── models │ │ │ │ ├── item │ │ │ │ │ ├── fueltank.json │ │ │ │ │ ├── launchpad.json │ │ │ │ │ └── rocketmotor.json │ │ │ │ └── block │ │ │ │ │ ├── moon_turf_1.json │ │ │ │ │ ├── moon_turf_2.json │ │ │ │ │ ├── seat.json │ │ │ │ │ ├── oxygencharger.json │ │ │ │ │ ├── oxygenvent.json │ │ │ │ │ ├── fuelingstation.json │ │ │ │ │ ├── rocketbuilder.json │ │ │ │ │ ├── guidancecomputer.json │ │ │ │ │ └── launchpad_all.json │ │ │ ├── blockstates │ │ │ │ ├── fueltank.json │ │ │ │ ├── launchpad.json │ │ │ │ ├── rocketmotor.json │ │ │ │ └── moonturf.json │ │ │ ├── textures │ │ │ │ ├── blocks │ │ │ │ │ ├── fluid │ │ │ │ │ │ ├── oxygen_flow.png.mcmeta │ │ │ │ │ │ ├── oxygen_still.png.mcmeta │ │ │ │ │ │ ├── oxygen_flow.png │ │ │ │ │ │ └── oxygen_still.png │ │ │ │ │ ├── seat.png │ │ │ │ │ ├── assembler.png │ │ │ │ │ ├── fueltank.png │ │ │ │ │ ├── machine.png │ │ │ │ │ ├── moon_turf.png │ │ │ │ │ ├── panelside.png │ │ │ │ │ ├── scaffold.png │ │ │ │ │ ├── seat_top.png │ │ │ │ │ ├── thruster.png │ │ │ │ │ ├── fuelloader.png │ │ │ │ │ ├── machine_end.png │ │ │ │ │ ├── machinevent.png │ │ │ │ │ ├── moon_turf_1.png │ │ │ │ │ ├── moon_turf_2.png │ │ │ │ │ ├── tank_inner.png │ │ │ │ │ ├── fueltank_ctm.png │ │ │ │ │ ├── fueltank_top.png │ │ │ │ │ ├── gaschargertop.png │ │ │ │ │ ├── rocketpad_side.png │ │ │ │ │ ├── rocketpad_top.png │ │ │ │ │ ├── scaffold-ctm.png │ │ │ │ │ ├── thruster_top.png │ │ │ │ │ ├── guidancecomputer.png │ │ │ │ │ ├── machinevent_end.png │ │ │ │ │ ├── rocketpad_top_ctm.png │ │ │ │ │ ├── scaffold.png.mcmeta │ │ │ │ │ ├── rocketpad_side.png.mcmeta │ │ │ │ │ ├── rocketpad_top.png.mcmeta │ │ │ │ │ └── fueltank.png.mcmeta │ │ │ │ ├── env │ │ │ │ │ ├── sun.png │ │ │ │ │ └── sun2.png │ │ │ │ ├── models │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── girder.png │ │ │ │ │ └── round_h.png │ │ │ │ ├── gui │ │ │ │ │ └── rockethud.png │ │ │ │ ├── planets │ │ │ │ │ ├── moon.png │ │ │ │ │ ├── moonleo.jpg │ │ │ │ │ ├── shadow.png │ │ │ │ │ ├── earthlike.pdn │ │ │ │ │ ├── earthlike.png │ │ │ │ │ ├── shadowold.png │ │ │ │ │ ├── atmosphere2.png │ │ │ │ │ ├── earthlikebase.png │ │ │ │ │ └── earthlikeleo.jpg │ │ │ │ ├── items │ │ │ │ │ ├── planetidchip.png │ │ │ │ │ ├── spacehelmet.png │ │ │ │ │ ├── tank_oxygen.png │ │ │ │ │ ├── tank_hydrogen.png │ │ │ │ │ └── spacehelmet_overlay.png │ │ │ │ └── armor │ │ │ │ │ ├── spacesuit_layer1.png │ │ │ │ │ ├── spacesuit_layer2.png │ │ │ │ │ ├── spacesuit_layer1_overlay.png │ │ │ │ │ └── spacesuit_layer2_overlay.png │ │ │ └── lang │ │ │ │ └── en_us.json │ │ ├── structurescompass │ │ │ └── lang │ │ │ │ └── en_us.json │ │ ├── enderstorage │ │ │ ├── models │ │ │ │ ├── endertank.mtl │ │ │ │ ├── endertank.png │ │ │ │ └── enderchest.png │ │ │ └── textures │ │ │ │ ├── enderchest.png │ │ │ │ └── endertank.png │ │ ├── thermal │ │ │ ├── textures │ │ │ │ ├── block │ │ │ │ │ ├── machines │ │ │ │ │ │ ├── machine_sawmill_active.png.mcmeta │ │ │ │ │ │ └── machine_sawmill_active.png │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── device_nullifier_active.png.mcmeta │ │ │ │ │ │ ├── device_rock_gen_active.png.mcmeta │ │ │ │ │ │ ├── device_collector.png │ │ │ │ │ │ ├── device_nullifier.png │ │ │ │ │ │ ├── device_rock_gen.png │ │ │ │ │ │ ├── device_collector_side.png │ │ │ │ │ │ ├── device_nullifier_side.png │ │ │ │ │ │ ├── device_rock_gen_side.png │ │ │ │ │ │ ├── device_collector_active.png │ │ │ │ │ │ ├── device_collector_bottom.png │ │ │ │ │ │ ├── device_nullifier_active.png │ │ │ │ │ │ ├── device_nullifier_bottom.png │ │ │ │ │ │ ├── device_rock_gen_active.png │ │ │ │ │ │ ├── device_rock_gen_bottom.png │ │ │ │ │ │ ├── device_collector_side_active.png │ │ │ │ │ │ └── device_rock_gen_side_active.png │ │ │ │ │ ├── trading_machine_front.png │ │ │ │ │ ├── trading_machine_side.png │ │ │ │ │ └── config │ │ │ │ │ │ └── machine_config_accessible.png │ │ │ │ ├── gui │ │ │ │ │ └── jei_handler.png │ │ │ │ └── item │ │ │ │ │ ├── dusts │ │ │ │ │ ├── apatite_dust.png │ │ │ │ │ └── cinnabar_dust.png │ │ │ │ │ ├── ingots │ │ │ │ │ └── invar_ingot.png │ │ │ │ │ └── augments │ │ │ │ │ ├── upgrade_augment_1.png │ │ │ │ │ └── upgrade_augment_2.png │ │ │ └── lang │ │ │ │ └── en_us.json │ │ ├── prettypipes │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ ├── textures │ │ │ │ ├── block │ │ │ │ │ ├── fan.png │ │ │ │ │ ├── pipe_cover.png │ │ │ │ │ ├── pipe_end.png │ │ │ │ │ ├── pipe_rims.png │ │ │ │ │ ├── terminal.png │ │ │ │ │ ├── pipe_end_inner.png │ │ │ │ │ ├── pipe_rims_inner.png │ │ │ │ │ └── fan.png.mcmeta │ │ │ │ └── item │ │ │ │ │ └── pipe_frame.png │ │ │ └── models │ │ │ │ └── block │ │ │ │ ├── window.json │ │ │ │ ├── cover.json │ │ │ │ ├── bottom_corner.json │ │ │ │ ├── top_corner.json │ │ │ │ └── side_corner.json │ │ ├── extcaves │ │ │ ├── blockstates │ │ │ │ └── brokenstone.json │ │ │ ├── models │ │ │ │ └── block │ │ │ │ │ └── brokenstone.json │ │ │ └── textures │ │ │ │ └── block │ │ │ │ └── brokenstone.png │ │ ├── chisel │ │ │ └── textures │ │ │ │ └── block │ │ │ │ └── tyrian │ │ │ │ ├── plate.png │ │ │ │ └── plate.png.mcmeta │ │ ├── rubber_duck │ │ │ └── sounds │ │ │ │ └── rubber_duck_use.ogg │ │ ├── metalbarrels │ │ │ ├── textures │ │ │ │ ├── item │ │ │ │ │ ├── wood_to_gold.png │ │ │ │ │ ├── wood_to_iron.png │ │ │ │ │ ├── wood_to_copper.png │ │ │ │ │ └── wood_to_silver.png │ │ │ │ └── block │ │ │ │ │ ├── gold_barrel_side.png │ │ │ │ │ ├── gold_barrel_top.png │ │ │ │ │ ├── iron_barrel_side.png │ │ │ │ │ ├── iron_barrel_top.png │ │ │ │ │ ├── copper_barrel_side.png │ │ │ │ │ ├── copper_barrel_top.png │ │ │ │ │ ├── gold_barrel_bottom.png │ │ │ │ │ ├── iron_barrel_bottom.png │ │ │ │ │ ├── silver_barrel_side.png │ │ │ │ │ ├── silver_barrel_top.png │ │ │ │ │ ├── copper_barrel_bottom.png │ │ │ │ │ ├── gold_barrel_top_open.png │ │ │ │ │ ├── iron_barrel_top_open.png │ │ │ │ │ ├── silver_barrel_bottom.png │ │ │ │ │ ├── copper_barrel_top_open.png │ │ │ │ │ └── silver_barrel_top_open.png │ │ │ └── lang │ │ │ │ └── en_us.json │ │ ├── appliedenergistics2 │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── charger.png │ │ │ │ └── sky_compass.png │ │ │ │ └── item │ │ │ │ ├── calculation_processor.png │ │ │ │ └── printed_calculation_processor.png │ │ ├── biomesoplenty │ │ │ └── textures │ │ │ │ └── block │ │ │ │ ├── spanish_moss.png │ │ │ │ └── spanish_moss_plant.png │ │ ├── cofh_core │ │ │ └── textures │ │ │ │ └── gui │ │ │ │ └── elements │ │ │ │ └── scale_compact.png │ │ ├── waterstrainer │ │ │ ├── textures │ │ │ │ ├── blocks │ │ │ │ │ ├── strainer_base_top.png │ │ │ │ │ ├── strainer_base_side.png │ │ │ │ │ ├── strainer_fisherman.png │ │ │ │ │ └── strainer_fisherman_top.png │ │ │ │ └── items │ │ │ │ │ ├── strainer_fisherman.png │ │ │ │ │ ├── strainer_survivalist_reinforced.png.mcmeta │ │ │ │ │ ├── strainer_survivalist.png │ │ │ │ │ ├── strainer_fisherman_reinforced.png │ │ │ │ │ └── strainer_survivalist_reinforced.png │ │ │ └── lang │ │ │ │ └── en_us.json │ │ └── tconstruct │ │ │ └── lang │ │ │ └── en_us.json │ │ └── pack.mcmeta └── data │ └── generated_datapack.zip ├── .gitattributes ├── worldshape └── data │ └── pack │ ├── structures │ ├── campsite.nbt │ ├── log_cabin.nbt │ ├── slime │ │ ├── blue.nbt │ │ ├── blue_1.nbt │ │ ├── blue_2.nbt │ │ ├── green.nbt │ │ ├── purple.nbt │ │ ├── blue_small.nbt │ │ ├── green_small.nbt │ │ └── purple_small.nbt │ ├── moonbase_me.nbt │ ├── oil_fountain.nbt │ ├── blacksmith_shop.nbt │ ├── broken_windmill.nbt │ ├── crashed_rocket.nbt │ ├── moonbase_cargo.nbt │ ├── moonbase_oxygen.nbt │ ├── moonbase_rusty.nbt │ ├── moonbase_wreck.nbt │ ├── oil_fountain_1.nbt │ ├── railshaft │ │ ├── house.nbt │ │ ├── watery.nbt │ │ ├── bad_ending.nbt │ │ ├── slope_both.nbt │ │ ├── slope_left.nbt │ │ ├── weak_slope.nbt │ │ ├── good_ending.nbt │ │ ├── slope_right.nbt │ │ └── slope_straight.nbt │ ├── underground_lab.nbt │ └── ruins │ │ └── gabbro │ │ ├── arch.nbt │ │ ├── end.nbt │ │ ├── turn.nbt │ │ ├── bridge.nbt │ │ ├── house.nbt │ │ ├── spires.nbt │ │ ├── tower.nbt │ │ ├── crossing.nbt │ │ ├── straight.nbt │ │ └── foundation.nbt │ ├── worldgen │ └── template_pool │ │ ├── slime │ │ ├── blue_1.json │ │ └── blue_2.json │ │ ├── railshaft │ │ ├── house.json │ │ └── first.json │ │ ├── surface_build.json │ │ └── oil_fountain.json │ └── structure_spawners │ ├── underground_lab.json │ ├── moonbase.json │ ├── crashed_rocket.json │ ├── oil_fountain.json │ ├── railshaft.json │ ├── slime.json │ ├── log_cabin.json │ ├── broken_windmill.json │ └── ruins.json ├── README.md └── .gitignore /config/jei/bookmarks.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/defaultoptions/options.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/pipez-client.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/computercraft-client-1.toml.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/portality/modules.toml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/chiselsandbits-client-1.toml.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /openloader/.cache: -------------------------------------------------------------------------------- 1 | {"cachedResourcePacks":[]} -------------------------------------------------------------------------------- /config/appliedenergistics2-common-1.toml.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/igloos-1.toml.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/dungeons-1.toml.bak: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/advRocketry/oreConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/minecraft/texts/splashes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/storagedrawers-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [General] 3 | invertShift = false 4 | 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/matrix_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/number_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /config/titanium/resources.toml: -------------------------------------------------------------------------------- 1 | 2 | [modules] 3 | 4 | [modules.resources] 5 | enabled = true 6 | 7 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/fine_sand_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/create/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "item.create.brass_hand": "Golden Hand" 3 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/matrix_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/number_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.pipez.energy_pipe": "Invar Fluxduct" 3 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/libvulpes/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "item.libvulpes.linker": "Rocket Linking Device" 3 | } -------------------------------------------------------------------------------- /config/infinitylib/config-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [Debug] 3 | #Set to true if you wish to enable debug mode. 4 | debug = false 5 | 6 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/computation_matrix.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/computation_matrix_2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/occultism/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "item.occultism.otherstone_tablet": "Otherstone Tablet" 3 | } -------------------------------------------------------------------------------- /kubejs/exported/tags/potions.txt: -------------------------------------------------------------------------------- 1 | To refresh this file, delete it and run /reload command again! Last updated: Aug 15, 2021 10:39:59 PM 2 | -------------------------------------------------------------------------------- /openloader/data/generated_datapack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/data/generated_datapack.zip -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/missingno.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 2 5 | } 6 | } -------------------------------------------------------------------------------- /kubejs/exported/tags/enchantments.txt: -------------------------------------------------------------------------------- 1 | To refresh this file, delete it and run /reload command again! Last updated: Aug 15, 2021 10:39:59 PM 2 | -------------------------------------------------------------------------------- /kubejs/exported/tags/functions.txt: -------------------------------------------------------------------------------- 1 | To refresh this file, delete it and run /reload command again! Last updated: Aug 15, 2021 10:40:01 PM 2 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/item/fueltank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "advancedrocketry:block/fueltank" 3 | } -------------------------------------------------------------------------------- /config/archers_paradox-client.toml: -------------------------------------------------------------------------------- 1 | #If TRUE, Archer's Paradox will have its own Item Group (Creative Tab). 2 | "Enable Item Group" = true 3 | 4 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/five.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/four.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/nine.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/one.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/plus.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/six.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/two.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/zero.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/item/launchpad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "advancedrocketry:block/launchpad_all" 3 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/item/rocketmotor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "advancedrocketry:block/rocketmotor" 3 | } -------------------------------------------------------------------------------- /config/paintings-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [general] 3 | #Pick True to show the size of paintings in the painting gui 4 | show_painting_size = true 5 | 6 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/ponder/laser_alchemy.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/ponder/laser_alchemy.nbt -------------------------------------------------------------------------------- /kubejs/assets/kubejs/ponder/rocket_scene.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/ponder/rocket_scene.nbt -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/charged_calculator.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 4 5 | } 6 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/chromatic_resonator.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 2 5 | } 6 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/divide.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/eight.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/minus.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/seven.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/three.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/structurescompass/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "item.structurescompass.structures_compass": "Fortress Locator" 3 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structures/campsite.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/campsite.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/log_cabin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/log_cabin.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/blue.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/blue.nbt -------------------------------------------------------------------------------- /config/dice-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [dice] 3 | #How many seconds should the dice last before exploding 4 | #Range: 1 ~ 60 5 | "dice expire time" = 10 6 | 7 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/dye_entangled_singularity.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 3 5 | } 6 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/missingno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/missingno.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/multiply.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/plus_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/plus_cast.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/sand_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/sand_ball.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/zinc_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/zinc_dust.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/enderstorage/models/endertank.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 3.9.3 2 | newmtl m_0 3 | map_Kd endertank.png 4 | newmtl none -------------------------------------------------------------------------------- /worldshape/data/pack/structures/moonbase_me.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/moonbase_me.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/oil_fountain.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/oil_fountain.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/blue_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/blue_1.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/blue_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/blue_2.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/green.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/green.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/purple.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/purple.nbt -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/cage_lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/cage_lamp.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/chaos_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/chaos_glass.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/zinc_casing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/zinc_casing.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/matrix_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/fluid/matrix_flow.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/number_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/fluid/number_flow.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/boot_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/boot_medium.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/calculator.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/coke_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/coke_chunk.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/divide_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/divide_cast.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/eight_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/eight_cast.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/example_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/example_item.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/minus_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/minus_cast.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/radiant_coil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/radiant_coil.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/rough_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/rough_sand.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/smoke_mote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/smoke_mote.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/thermal_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/thermal_cast.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/three_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/three_cast.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/trade_card_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/trade_card_0.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/trade_card_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/trade_card_1.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/trade_card_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/trade_card_2.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/zinc_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/zinc_sheet.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/machines/machine_sawmill_active.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structures/blacksmith_shop.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/blacksmith_shop.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/broken_windmill.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/broken_windmill.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/crashed_rocket.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/crashed_rocket.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/moonbase_cargo.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/moonbase_cargo.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/moonbase_oxygen.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/moonbase_oxygen.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/moonbase_rusty.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/moonbase_rusty.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/moonbase_wreck.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/moonbase_wreck.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/oil_fountain_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/oil_fountain_1.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/house.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/underground_lab.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/underground_lab.nbt -------------------------------------------------------------------------------- /config/biomesoplenty/client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Client-related options. 3 | [gui] 4 | #Select the Biomes O' Plenty world type by default. 5 | use_world_type = true 6 | 7 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/fluix_casing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/fluix_casing.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/invar_casing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/invar_casing.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/mundane_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/mundane_glass.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/reagent_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/reagent_glass.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/matrix_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/fluid/matrix_still.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/number_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/fluid/number_still.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/circuit_scrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/circuit_scrap.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/invar_compound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/invar_compound.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/multiply_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/multiply_cast.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/purified_sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/purified_sand.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/radiant_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/radiant_sheet.png -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/watery.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/watery.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/arch.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/arch.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/end.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/end.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/turn.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/turn.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/blue_small.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/blue_small.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/green_small.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/green_small.nbt -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/catalyst_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/catalyst_glass.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_casing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_casing.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/fluix_casing_ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/fluix_casing_ctm.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/invar_casing_ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/invar_casing_ctm.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/invar_casing_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/invar_casing_top.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/zinc_casing_ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/zinc_casing_ctm.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/zinc_machine_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/zinc_machine_top.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/fine_sand_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/fluid/fine_sand_flow.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/fluid/fine_sand_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/fluid/fine_sand_still.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/creosote_pellet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/creosote_pellet.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/ground_slimy_fern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/ground_slimy_fern.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/kinetic_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/kinetic_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/matter_plastics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/matter_plastics.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/nickel_compound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/nickel_compound.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/profession_card_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/profession_card_0.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/profession_card_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/profession_card_1.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/profession_card_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/profession_card_2.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/sealed_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/sealed_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/silicon_compound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/silicon_compound.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/slimy_fern_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/slimy_fern_leaf.png -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/bad_ending.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/bad_ending.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/slope_both.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/slope_both.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/slope_left.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/slope_left.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/weak_slope.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/weak_slope.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/bridge.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/bridge.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/house.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/spires.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/spires.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/tower.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/slime/purple_small.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/slime/purple_small.nbt -------------------------------------------------------------------------------- /config/cavebiomeapi-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [worldgen] 3 | 4 | [worldgen.experimental] 5 | "Generate Underwater Caves" = false 6 | "Generate Small Noise Caves" = true 7 | 8 | -------------------------------------------------------------------------------- /config/darkerdepths-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [gameplay] 3 | "silver drops raw ore" = false 4 | 5 | [worldgen] 6 | "generates darker depths's speleothems naturally" = true 7 | 8 | -------------------------------------------------------------------------------- /config/libvulpes.toml: -------------------------------------------------------------------------------- 1 | 2 | [Power] 3 | #"How many power unit one EU makes" 4 | EUPowerMultiplier = 7.0 5 | #Power multiplier on machines 6 | PowerMultiplier = 1.0 7 | 8 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/accellerator_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/accellerator_glass.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/computation_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/computation_matrix.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/zinc_machine_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/zinc_machine_inner.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/zinc_machine_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/zinc_machine_side.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/abstruse_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/abstruse_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/charged_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/charged_calculator.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/chromatic_resonator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/chromatic_resonator.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/inductive_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/inductive_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/infernal_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/infernal_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/pipe_module_tier_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/pipe_module_tier_1.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/pipe_module_tier_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/pipe_module_tier_2.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/pipe_module_tier_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/pipe_module_tier_3.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/pipe_module_utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/pipe_module_utility.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.prettypipes.pipe": "Brass Item Pipe", 3 | "item.prettypipes.pipe_frame": "Pipe Item Frame" 4 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/good_ending.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/good_ending.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/slope_right.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/slope_right.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/crossing.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/crossing.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/straight.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/straight.nbt -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/computation_matrix_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/computation_matrix_2.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_casing_ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_casing_ctm.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_casing_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_casing_top.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_machine_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_machine_side.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_machine_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_machine_top.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/invar_casing_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/invar_casing_bottom.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/zinc_machine_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/zinc_machine_bottom.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/calculation_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/calculation_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_coke_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_coke_chunk.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 6, 4 | "description": "More fitting textures and models for things" 5 | } 6 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structures/railshaft/slope_straight.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/railshaft/slope_straight.nbt -------------------------------------------------------------------------------- /worldshape/data/pack/structures/ruins/gabbro/foundation.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/worldshape/data/pack/structures/ruins/gabbro/foundation.nbt -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_casing_top_ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_casing_top_ctm.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_machine_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_machine_bottom.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_machine_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/block/enderium_machine_inner.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/fluix_casing.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ "kubejs:block/fluix_casing_ctm" ] 6 | } 7 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/invar_casing.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ "kubejs:block/invar_casing_ctm" ] 6 | } 7 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/zinc_casing.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ "kubejs:block/zinc_casing_ctm" ] 6 | } 7 | } -------------------------------------------------------------------------------- /kubejs/data/architects_palette/loot_modifiers/wither_skeleton_bones.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [], 3 | "bone": "tconstruct:necrotic_bone", 4 | "replaces": "minecraft:bone" 5 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/extcaves/blockstates/brokenstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": 3 | { 4 | "": 5 | { 6 | "model": "extcaves:block/brokenstone" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /config/MouseTweaks.cfg: -------------------------------------------------------------------------------- 1 | RMBTweak=1 2 | LMBTweakWithItem=1 3 | LMBTweakWithoutItem=1 4 | WheelTweak=1 5 | WheelSearchOrder=1 6 | WheelScrollDirection=0 7 | ScrollItemScaling=0 8 | Debug=0 9 | -------------------------------------------------------------------------------- /config/flywheel-client.toml: -------------------------------------------------------------------------------- 1 | #Enable or disable the entire engine 2 | enabled = true 3 | #Enable or disable a debug overlay that colors pixels by their normal 4 | debugNormals = false 5 | 6 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_casing.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ "kubejs:block/enderium_casing_ctm" ] 6 | } 7 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/dye_entangled_singularity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/dye_entangled_singularity.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_logic_processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_logic_processor.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_sealed_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_sealed_mechanism.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/blockstates/fueltank.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "variants": { 4 | "": { "model": "advancedrocketry:block/fueltank" } 5 | } 6 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fluid/oxygen_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fluid/oxygen_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier_active.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 8 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_active.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 8 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /config/enchantedbookredesign-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [client] 3 | #Whether to display the preview of the item in the dank, disable if you have optifine 4 | items = ["minecraft:enchanted_book"] 5 | 6 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_abstruse_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_abstruse_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_infernal_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_infernal_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_kinetic_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_kinetic_mechanism.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/blockstates/launchpad.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "variants": { 4 | "": { "model": "advancedrocketry:block/launchpad_all" } 5 | } 6 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/blockstates/rocketmotor.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "variants": { 4 | "": { "model": "advancedrocketry:block/rocketmotor" } 5 | } 6 | } -------------------------------------------------------------------------------- /config/ftbquests/quests/chapter_groups.snbt: -------------------------------------------------------------------------------- 1 | { 2 | chapter_groups: [ 3 | { id: "0810E42B2DD79973", title: "Remote Trading" } 4 | { id: "331B6409EF6A7840", title: "Factory Guide" } 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /config/moreminecartsconfig.toml: -------------------------------------------------------------------------------- 1 | #Changes how expensive keeping the chunk loader on is. Set to zero to prevent chunk loading completely. 2 | #Range: 0.0 ~ 100.0 3 | chunk_loader_multiplier = 1.0 4 | 5 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/block/enderium_casing_top.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ "kubejs:block/enderium_casing_top_ctm" ] 6 | } 7 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_calculation_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_calculation_mechanism.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_calculation_processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_calculation_processor.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_engineering_processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_engineering_processor.png -------------------------------------------------------------------------------- /kubejs/assets/kubejs/textures/item/incomplete_inductive_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/kubejs/assets/kubejs/textures/item/incomplete_inductive_mechanism.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/extcaves/models/block/brokenstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": 4 | { 5 | "all": "extcaves:block/brokenstone" 6 | } 7 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Above-and-Beyond 2 | [Forge Modpack] Create's official Challenge-pack 3 | 4 | More information on the Project Page: https://www.curseforge.com/minecraft/modpacks/create-above-and-beyond 5 | -------------------------------------------------------------------------------- /config/configured-client.toml: -------------------------------------------------------------------------------- 1 | #Forces all config menus to be overridden and generated by Configured. This requires the game to be restarted for the changes to apply. 2 | forceConfiguredMenu = false 3 | 4 | -------------------------------------------------------------------------------- /config/fastbench.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # If the recipe book is removed from the game. Server-enforced. [default: true] 5 | B:"Remove Recipe Book"=false 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/block/chaos_catalyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "kubejs:block/substrate", 3 | "textures": { 4 | "particle": "block/glass", 5 | "0": "kubejs:block/chaos_glass" 6 | } 7 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/enderstorage/models/endertank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/enderstorage/models/endertank.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/occultism/sounds/start_ritual.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/occultism/sounds/start_ritual.ogg -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/textures/block/pipe_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/pipez/textures/block/pipe_end.png -------------------------------------------------------------------------------- /config/endergetic-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Common only settings for Endergetic 3 | [common] 4 | #If The Dragon Fight Manager should debug its portal values; Default: False 5 | debugDragonFightManager = false 6 | 7 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/block/mundane_substrate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "kubejs:block/substrate", 3 | "textures": { 4 | "particle": "block/glass", 5 | "0": "kubejs:block/mundane_glass" 6 | } 7 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/enderstorage/models/enderchest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/enderstorage/models/enderchest.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/enderstorage/textures/enderchest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/enderstorage/textures/enderchest.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/enderstorage/textures/endertank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/enderstorage/textures/endertank.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/libvulpes/textures/item/linker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/libvulpes/textures/item/linker.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/textures/block/pipe_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/pipez/textures/block/pipe_cover.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/textures/block/pipe_rims.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/pipez/textures/block/pipe_rims.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/block/fan.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/gui/jei_handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/gui/jei_handler.png -------------------------------------------------------------------------------- /config/cookiecore-client.toml: -------------------------------------------------------------------------------- 1 | #Set to empty to disable trans bees. Separate names with a space 2 | transBeeNames = ["zoe"] 3 | #Enable the CookieRealm Flat world preset 4 | enableTerracottaWorldPreset = true 5 | 6 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/env/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/env/sun.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/env/sun2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/env/sun2.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/chisel/textures/block/tyrian/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/chisel/textures/block/tyrian/plate.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/rubber_duck/sounds/rubber_duck_use.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/rubber_duck/sounds/rubber_duck_use.ogg -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/block/catalyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "kubejs:block/substrate", 3 | "textures": { 4 | "particle": "thermal:block/glass/lumium_glass", 5 | "0": "kubejs:block/catalyst_glass" 6 | } 7 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/seat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/seat.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/models/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/models/grid.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/extcaves/textures/block/brokenstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/extcaves/textures/block/brokenstone.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/textures/block/pipe_end_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/pipez/textures/block/pipe_end_inner.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/textures/block/pipe_rims_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/pipez/textures/block/pipe_rims_inner.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_cover.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_end.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_rims.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_rims.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/block/terminal.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/item/pipe_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/item/pipe_frame.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/moon_turf_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "advancedrocketry:block/moon_turf", 3 | "textures": { 4 | "all": "advancedrocketry:blocks/moon_turf_1" 5 | } 6 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/moon_turf_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "advancedrocketry:block/moon_turf", 3 | "textures": { 4 | "all": "advancedrocketry:blocks/moon_turf_2" 5 | } 6 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/gui/rockethud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/gui/rockethud.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/models/girder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/models/girder.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/moon.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_gold.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_iron.png -------------------------------------------------------------------------------- /config/titanium/modules.toml: -------------------------------------------------------------------------------- 1 | 2 | [modules] 3 | 4 | #Test module for titanium features 5 | [modules.test_module] 6 | enabled = false 7 | 8 | #Creative features 9 | [modules.creative] 10 | enabled = false 11 | 12 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/assembler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/assembler.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fueltank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fueltank.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machine.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/moon_turf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/moon_turf.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/panelside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/panelside.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/scaffold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/scaffold.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/seat_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/seat_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/thruster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/thruster.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/models/round_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/models/round_h.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/moonleo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/moonleo.jpg -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/shadow.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/appliedenergistics2/textures/block/charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/appliedenergistics2/textures/block/charger.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/biomesoplenty/textures/block/spanish_moss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/biomesoplenty/textures/block/spanish_moss.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_copper.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/item/wood_to_silver.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/textures/block/pipe_extract_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/pipez/textures/block/pipe_extract_overlay.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_end_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_end_inner.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_rims_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/prettypipes/textures/block/pipe_rims_inner.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/item/dusts/apatite_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/item/dusts/apatite_dust.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/item/dusts/cinnabar_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/item/dusts/cinnabar_dust.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/item/ingots/invar_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/item/ingots/invar_ingot.png -------------------------------------------------------------------------------- /config/fairylights-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [general] 3 | #If true jingles will play during Christmas. 4 | christmas_jingles = true 5 | #The distance that jingles can be heard in blocks. 6 | #Range: > 1 7 | jingles_amplitude = 40 8 | 9 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/cities.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Nether Cities. 3 | # 1 for spawning in most chunks and 1001 for none. 4 | #Range: 1 ~ 1001 5 | citiesNetherMaxChunkDistance = 120 6 | 7 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fuelloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fuelloader.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machine_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machine_end.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machinevent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machinevent.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/moon_turf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/moon_turf_1.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/moon_turf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/moon_turf_2.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/tank_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/tank_inner.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/items/planetidchip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/items/planetidchip.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/items/spacehelmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/items/spacehelmet.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/items/tank_oxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/items/tank_oxygen.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlike.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlike.pdn -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlike.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/shadowold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/shadowold.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/trading_machine_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/trading_machine_front.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/trading_machine_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/trading_machine_side.png -------------------------------------------------------------------------------- /config/oretweaker/data/basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "chisel:basalt/raw", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /config/oretweaker/data/marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "chisel:marble/raw", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /kubejs/config/common.properties: -------------------------------------------------------------------------------- 1 | #KubeJS Common Properties 2 | #Mon Oct 04 13:29:27 CEST 2021 3 | hideServerScriptErrors=false 4 | packmode=default 5 | invertClassLoader=true 6 | debugInfo=false 7 | announceReload=true 8 | serverOnly=false 9 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fueltank_ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fueltank_ctm.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fueltank_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fueltank_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/gaschargertop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/gaschargertop.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/scaffold-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/scaffold-ctm.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/thruster_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/thruster_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/items/tank_hydrogen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/items/tank_hydrogen.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/atmosphere2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/atmosphere2.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlikebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlikebase.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlikeleo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/planets/earthlikeleo.jpg -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/appliedenergistics2/textures/block/sky_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/appliedenergistics2/textures/block/sky_compass.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/biomesoplenty/textures/block/spanish_moss_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/biomesoplenty/textures/block/spanish_moss_plant.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/cofh_core/textures/gui/elements/scale_compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/cofh_core/textures/gui/elements/scale_compact.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_bottom.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_bottom.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_base_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_base_top.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_fisherman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_fisherman.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_survivalist_reinforced.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frames": [{"index": 2, "time": 14}, 1, 0, 3], 4 | "frametime": 4 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /config/oretweaker/data/limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "chisel:limestone/raw", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/seat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "create:block/seat", 3 | "textures": { 4 | "1": "advancedrocketry:blocks/seat_top", 5 | "2": "advancedrocketry:blocks/seat" 6 | } 7 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer1.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer2.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/guidancecomputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/guidancecomputer.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machinevent_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/machinevent_end.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/create/textures/block/portable_storage_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/create/textures/block/portable_storage_interface.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/create/textures/item/golden_electron_tube_unused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/create/textures/item/golden_electron_tube_unused.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_bottom.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_top_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/gold_barrel_top_open.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_top_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/iron_barrel_top_open.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_bottom.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/item/augments/upgrade_augment_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/item/augments/upgrade_augment_1.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/item/augments/upgrade_augment_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/item/augments/upgrade_augment_2.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_base_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_base_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_fisherman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_fisherman.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_survivalist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_survivalist.png -------------------------------------------------------------------------------- /config/oretweaker/data/redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:redstone_ore", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /config/oretweaker/data/silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "darkerdepths:silver_ore", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/block/machine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "display": { 4 | "gui": { 5 | "rotation": [30, 135, 0], 6 | "translation": [-0.5, -0.75, 0], 7 | "scale": [0.625, 0.625, 0.625] 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fluid/oxygen_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fluid/oxygen_flow.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fluid/oxygen_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fluid/oxygen_still.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_top_ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_top_ctm.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/items/spacehelmet_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/items/spacehelmet_overlay.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/create/textures/item/incomplete_precision_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/create/textures/item/incomplete_precision_mechanism.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_top_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/copper_barrel_top_open.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_top_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/metalbarrels/textures/block/silver_barrel_top_open.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_0.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_1.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_2.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_3.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_4.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/minecraft/textures/gui/title/background/panorama_5.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_side.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_fisherman_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/blocks/strainer_fisherman_top.png -------------------------------------------------------------------------------- /config/thermal-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [Sounds] 3 | #If TRUE, some 'Thermal Series' Blocks will have ambient sounds. 4 | "Ambient Block Sounds" = true 5 | #If TRUE, some 'Thermal Series' Mobs will have ambient sounds. 6 | "Ambient Mob Sounds" = true 7 | 8 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/item/trade_card.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "kubejs:item/trade_card_0", 5 | "layer1": "kubejs:item/trade_card_1", 6 | "layer2": "kubejs:item/trade_card_2" 7 | } 8 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_active.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_bottom.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier_active.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_nullifier_bottom.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_active.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_bottom.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/machines/machine_sawmill_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/machines/machine_sawmill_active.png -------------------------------------------------------------------------------- /config/oretweaker/templates/other/fuck_silverfish.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:infested", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/oxygencharger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "create:block/seat", 3 | "textures": { 4 | "1": "advancedrocketry:blocks/gaschargertop", 5 | "2": "advancedrocketry:blocks/panelside" 6 | } 7 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer1_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer1_overlay.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer2_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/advancedrocketry/textures/armor/spacesuit_layer2_overlay.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/appliedenergistics2/textures/item/calculation_processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/appliedenergistics2/textures/item/calculation_processor.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/config/machine_config_accessible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/config/machine_config_accessible.png -------------------------------------------------------------------------------- /config/oretweaker/data/aridrock_silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "darkerdepths:aridrock_silver_ore", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/chisel/textures/block/tyrian/plate.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ 6 | "chisel:block/tyrian/plate-ctm" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_side_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_collector_side_active.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_side_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/thermal/textures/block/devices/device_rock_gen_side_active.png -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_fisherman_reinforced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_fisherman_reinforced.png -------------------------------------------------------------------------------- /config/oretweaker/data/aridrock_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "darkerdepths:aridrock_redstone_ore", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /config/oretweaker/data/limestone_silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "darkerdepths:limestone_silver_ore", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_survivalist_reinforced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/waterstrainer/textures/items/strainer_survivalist_reinforced.png -------------------------------------------------------------------------------- /config/decorative_blocks-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Decorative Blocks Configs 3 | [general] 4 | #Bonfire Activator (define a resource location 5 | "bonfire activator" = "minecraft:blaze_powder" 6 | #Disable thatch creation on shearing hay bale 7 | "thatch enabled" = true 8 | 9 | -------------------------------------------------------------------------------- /config/oretweaker/data/limestone_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "darkerdepths:limestone_redstone_ore", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/item/profession_card.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "kubejs:item/profession_card_0", 5 | "layer1": "kubejs:item/profession_card_1", 6 | "layer2": "kubejs:item/profession_card_2" 7 | } 8 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/scaffold.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ 6 | "advancedrocketry:blocks/scaffold-ctm" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/appliedenergistics2/textures/item/printed_calculation_processor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simibubi/Above-and-Beyond/HEAD/openloader/resources/simis_edits/assets/appliedenergistics2/textures/item/printed_calculation_processor.png -------------------------------------------------------------------------------- /config/fml.toml: -------------------------------------------------------------------------------- 1 | # Enable forge global version checking 2 | versionCheck = true 3 | # does the splashscreen run 4 | splashscreen = true 5 | defaultConfigPath = "defaultconfigs" 6 | # max threads for parallel loading : -1 uses Runtime#availableProcessors 7 | maxThreads = -1 8 | 9 | -------------------------------------------------------------------------------- /config/jei/ingredient-list-type-sort-order.ini: -------------------------------------------------------------------------------- 1 | net.minecraft.item.ItemStack 2 | net.minecraft.entity.EntityType 3 | net.minecraftforge.fluids.FluidStack 4 | slimeknights.tconstruct.library.modifiers.ModifierEntry 5 | slimeknights.tconstruct.library.recipe.partbuilder.Pattern 6 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/ruined_portals.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for End themed Ruined Portals in End category biomes. 3 | # 1 for spawning in most chunks and 1001 for none. 4 | #Range: 1 ~ 1001 5 | ruinedPortalEndMaxChunkDistance = 57 6 | 7 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/oxygenvent.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "advancedrocketry:blocks/machinevent", 5 | "end": "advancedrocketry:blocks/machinevent_end" 6 | } 7 | } -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/block/enderium_casing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_bottom_top", 3 | "textures": { 4 | "top": "kubejs:block/enderium_casing_top", 5 | "bottom": "kubejs:block/enderium_casing_top", 6 | "side": "kubejs:block/enderium_casing" 7 | } 8 | } -------------------------------------------------------------------------------- /config/farmersdelight-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Client settings 3 | [client] 4 | #Should the hunger bar have a gilded overlay when the player has the Nourishment effect? 5 | nourishmentHungerOverlay = true 6 | #Should food tooltips display which effects they provide? 7 | foodEffectTooltip = true 8 | 9 | -------------------------------------------------------------------------------- /config/openloader-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #This file is NOT used to add new data/resource packs. Just put them in the folder! 3 | [advanced-settings] 4 | #Should OpenLoader try to load data packs? 5 | load-data-packs = true 6 | #Should OpenLoader try to load resource packs? 7 | load-resource-packs = true 8 | 9 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_side.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm_horizontal", 5 | "extra": { 6 | "connect_to": [ 7 | { "block": "advancedrocketry:launchpad" } 8 | ] 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/libvulpes/models/item/linker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "create:item/linked_controller", 3 | "textures": { 4 | "redstone_antenna": "create:block/redstone_antenna", 5 | "particle": "libvulpes:item/linker", 6 | "redstone_bridge": "libvulpes:item/linker" 7 | } 8 | } -------------------------------------------------------------------------------- /config/fairylights-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [tutorial] 3 | #The hanging lights tutorial progress, once any light item enters the inventory a 4 | # toast appears prompting to craft hanging lights. A finished tutorial progress 5 | # value is 'complete' and an unstarted tutorial is 'none'. 6 | progress = "none" 7 | 8 | -------------------------------------------------------------------------------- /config/occultism-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Visual Settings 3 | [visual] 4 | #Disables the headache- and possibly seizure-inducing visual effects of Demon's Dream. 5 | disableDemonsDreamShaders = false 6 | 7 | #Misc Settings 8 | [misc] 9 | #Sync JEI search in storage actuator. 10 | syncJeiSearch = false 11 | 12 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/bastions.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Underground Bastions in 3 | # biomes not tagged as ocean, beach, end, nether, or none category. 4 | # 1 for spawning in most chunks and 10001 for none. 5 | #Range: 1 ~ 10001 6 | bastionUndergroundMaxChunkDistance = 500 7 | 8 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/fuelingstation.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/orientable", 3 | "textures": { 4 | "top": "advancedrocketry:blocks/machine_end", 5 | "front": "advancedrocketry:blocks/fuelloader", 6 | "side": "advancedrocketry:blocks/machine" 7 | } 8 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/rocketbuilder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/orientable", 3 | "textures": { 4 | "top": "advancedrocketry:blocks/machine_end", 5 | "front": "advancedrocketry:blocks/assembler", 6 | "side": "advancedrocketry:blocks/machine" 7 | } 8 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/tconstruct/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "fluid.tconstruct.molten_obsidian": "Volatile Sky Solution", 3 | "item.tconstruct.molten_obsidian_bucket": "Sky Solution Bucket", 4 | "fluid.tconstruct.molten_ender": "Chromatic Waste", 5 | "item.tconstruct.molten_ender_bucket": "Chromatic Waste Bucket" 6 | } -------------------------------------------------------------------------------- /config/mantle-client.toml: -------------------------------------------------------------------------------- 1 | #If true, enables the Mantle heart renderer, which stacks hearts by changing the color instead of vertically stacking them. 2 | #Mod authors: this config is not meant for compatibility with your heart renderer, cancel the RenderGameOverlayEvent.Pre event and our logic won't run 3 | extraHeartRenderer = true 4 | 5 | -------------------------------------------------------------------------------- /config/sidebar_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "ftbteams": { 3 | "my_team": true 4 | }, 5 | "ftbquests": { 6 | "quests": true 7 | }, 8 | "ftblibrary": { 9 | "toggle.gamemode": false, 10 | "toggle.rain": false, 11 | "toggle.day": false, 12 | "toggle.night": false 13 | }, 14 | "ftbchunks": { 15 | "chunks": true 16 | } 17 | } -------------------------------------------------------------------------------- /config/oretweaker/data/lead_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "thermal:lead_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 20, 8 | "maxVeinSize": 12, 9 | "spawnRate": 1.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/data/niter_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "thermal:niter_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 6, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/data/ruby_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "thermal:ruby_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 3, 9 | "spawnRate": 1.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/titanium/titanium.toml: -------------------------------------------------------------------------------- 1 | 2 | [TitaniumConfig] 3 | #A Boolean that is true by default 4 | thisIsABoolean = true 5 | intAngery = 7 6 | #A Boolean that is false by default 7 | NOT_BOOLEAN = false 8 | 9 | [TitaniumConfig.Dabber] 10 | dabby = "lil dab" 11 | 12 | [TitaniumConfig.TestBlock] 13 | DUMB_VALUE = 135 14 | 15 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/guidancecomputer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/orientable", 3 | "textures": { 4 | "top": "advancedrocketry:blocks/machine_end", 5 | "front": "advancedrocketry:blocks/guidancecomputer", 6 | "side": "advancedrocketry:blocks/machine" 7 | } 8 | } -------------------------------------------------------------------------------- /config/CBMicroblock.cfg: -------------------------------------------------------------------------------- 1 | "saws" { 2 | "stone_saw" { 3 | I:"durability"=512 4 | } 5 | 6 | "iron_saw" { 7 | I:"durability"=1024 8 | } 9 | 10 | "diamond_saw" { 11 | I:"durability"=2048 12 | } 13 | } 14 | 15 | # Set this to true to show all MicroBlocks in JEI. By default only Stone is shown. 16 | B:"showAllMicroblocks"=false 17 | -------------------------------------------------------------------------------- /config/oretweaker/data/apatite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "thermal:apatite_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 8, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/data/cinnabar_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "thermal:cinnabar_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 6, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/data/emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:emerald_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 2, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/data/nickel_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "thermal:nickel_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 40, 8 | "maxVeinSize": 10, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/data/sapphire_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "thermal:sapphire_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 3, 9 | "spawnRate": 1.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/forge-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #General configuration settings 3 | [general] 4 | #Defines a default world type to use. The vanilla default world type is represented by 'default'. 5 | #The modded world types are registry names which should include the registry namespace, such as 'examplemod:example_world_type'. 6 | defaultWorldType = "default" 7 | 8 | -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:dirt", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 256, 8 | "maxVeinSize": 32, 9 | "spawnRate": 10.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/models/block/launchpad_all.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_bottom_top", 3 | "textures": { 4 | "top": "advancedrocketry:blocks/rocketpad_top", 5 | "side": "advancedrocketry:blocks/rocketpad_side", 6 | "bottom": "architects_palette:block/heavy_stone_bricks_bottom" 7 | } 8 | } -------------------------------------------------------------------------------- /config/oretweaker/data/quartz_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "appliedenergistics2:quartz_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 6, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:andesite", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 80, 8 | "maxVeinSize": 32, 9 | "spawnRate": 10.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:coal_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 128, 8 | "maxVeinSize": 16, 9 | "spawnRate": 20.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:diorite", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 80, 8 | "maxVeinSize": 32, 9 | "spawnRate": 10.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:gold_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 32, 8 | "maxVeinSize": 8, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:granite", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 80, 8 | "maxVeinSize": 32, 9 | "spawnRate": 10.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:iron_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 64, 8 | "maxVeinSize": 8, 9 | "spawnRate": 20.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:lapis_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 6, 9 | "spawnRate": 3.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/data/xpetrified_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "forbidden_arcanus:xpetrified_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 30, 8 | "maxVeinSize": 1, 9 | "spawnRate": 1.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:diamond_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 16, 8 | "maxVeinSize": 7, 9 | "spawnRate": 1.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:redstone_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 16, 8 | "maxVeinSize": 7, 9 | "spawnRate": 8.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/rocketpad_top.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "textures": [ "advancedrocketry:blocks/rocketpad_top_ctm" ], 6 | "extra": { 7 | "connect_to": [ 8 | { "block": "advancedrocketry:launchpad" } 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /config/jade-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [inventory] 3 | #Range: 0 ~ 54 4 | sneakShowAmount = 54 5 | #Range: 0 ~ 54 6 | normalShowAmount = 0 7 | bypassLockedContainer = false 8 | blacklist = ["refinedstorage:disk_drive"] 9 | #Range: 1 ~ 18 10 | showItemPreLine = 9 11 | 12 | [customContainerName] 13 | blacklist = ["thermal"] 14 | onlyShowVanilla = false 15 | 16 | -------------------------------------------------------------------------------- /config/oretweaker/data/arcane_crystal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "forbidden_arcanus:arcane_crystal_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 9, 8 | "maxVeinSize": 7, 9 | "spawnRate": 1.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/blackstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:blackstone", 5 | "filler": "minecraft:netherrack", 6 | "minY": 5, 7 | "maxY": 31, 8 | "maxVeinSize": 10, 9 | "spawnRate": 2.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/soul_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:soul_sand", 5 | "filler": "minecraft:netherrack", 6 | "minY": 1, 7 | "maxY": 32, 8 | "maxVeinSize": 12, 9 | "spawnRate": 12.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/magma_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:magma_block", 5 | "filler": "minecraft:netherrack", 6 | "minY": 26, 7 | "maxY": 36, 8 | "maxVeinSize": 10, 9 | "spawnRate": 15.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /config/repurposed_structures-forge/ruins.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Repurposed Structures Ruins. 3 | # 1 for spawning in most chunks and 1001 for none. 4 | #Range: 1 ~ 1001 5 | ruinsNetherMaxChunkDistance = 35 6 | #Range: 1 ~ 1001 7 | ruinsLandWarmMaxChunkDistance = 42 8 | #Range: 1 ~ 1001 9 | ruinsLandHotMaxChunkDistance = 45 10 | 11 | -------------------------------------------------------------------------------- /config/oretweaker/OreTweaker.toml: -------------------------------------------------------------------------------- 1 | 2 | #Ore Tweaker - Settings File 3 | [SETTINGS] 4 | #Enables debug mode 5 | debug = false 6 | 7 | [TEMPLATES] 8 | #Attempts to regenerate template files if not present 9 | generate_templates = false 10 | 11 | [DATA] 12 | #Attempts to regenerate default data files if not present 13 | generate_default_settings = false 14 | 15 | -------------------------------------------------------------------------------- /config/oretweaker/data/randomium_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "randomium:randomium_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 60, 8 | "maxVeinSize": 7, 9 | "spawnRate": 4.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": ["advancedrocketry:moonold"] 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/textures/block/fan.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 1, 5 | "frames": [ 6 | 7, 7 | 6, 8 | 5, 9 | 4, 10 | 3, 11 | 2, 12 | 1, 13 | 0 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /config/titanium/titanium-tags.toml: -------------------------------------------------------------------------------- 1 | 2 | [TagConfig] 3 | #A list of mod ids sorted by preference when getting an Item for a tag 4 | ITEM_PREFERENCE = ["minecraft", "emendatusenigmatica", "immersiveengineering", "thermal", "create", "mekanism", "jaopca", "kubejs", "appliedenergistics2", "pneumaticcraft", "occultism", "tmechworks", "industrialforegoing", "botania", "quark", "pedestals"] 5 | 6 | -------------------------------------------------------------------------------- /config/valhelsia_core-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [cosmetics] 3 | #The active cosmetic for the category: special 4 | active_cosmetic_special = "" 5 | #The active cosmetic for the category: back 6 | active_cosmetic_back = "" 7 | #The active cosmetic for the category: hat 8 | active_cosmetic_hat = "" 9 | #The active cosmetic for the category: hand 10 | active_cosmetic_hand = "" 11 | 12 | -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:emerald_ore", 5 | "filler": "minecraft:stone", 6 | "minY": 4, 7 | "maxY": 32, 8 | "maxVeinSize": 1, 9 | "spawnRate": 5.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [ 12 | "MOUNTAIN" 13 | ] 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /config/craftingtweaks-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Crafting Tweaks Configuration 3 | [common] 4 | #Set this to true if you want the (de)compress feature to work outside of crafting GUIs (only works if installed on server) 5 | compressAnywhere = false 6 | #A list of modid:name entries that will not be crafted by the compress key. 7 | compressBlacklist = ["minecraft:sandstone", "minecraft:iron_trapdoor"] 8 | 9 | -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/infested_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:infested_stone", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 64, 8 | "maxVeinSize": 8, 9 | "spawnRate": 7.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [ 12 | "MOUNTAIN" 13 | ] 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/models/block/window.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "pipez:block/pipe_end_inner", 5 | "particle": "pipez:block/pipe_end_inner" 6 | }, 7 | "elements": [ 8 | { 9 | "from": [5, 10, 5], 10 | "to": [11, 11, 11], 11 | "faces": { 12 | "up": {"uv": [5, 5, 11, 11], "texture": "#0"} 13 | } 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /config/defaultoptions-common.toml: -------------------------------------------------------------------------------- 1 | #The default difficulty selected for newly created worlds. 2 | #Allowed Values: PEACEFUL, EASY, NORMAL, HARD 3 | defaultDifficulty = "NORMAL" 4 | #Set to true if the difficulty for new world's should be locked ot the specific default. This cannot be unlocked by players without external tools! Probably a bad idea. I don't recommend. Why am I adding this option? 5 | lockDifficulty = false 6 | 7 | -------------------------------------------------------------------------------- /config/oretweaker/Info.txt: -------------------------------------------------------------------------------- 1 | ## Ore Tweaker - Information ## 2 | 3 | Add Ore Configs to the data folder to tweak the world generation 4 | By default the mod and its files mimics vanilla world generation settings. 5 | Check out more info on the wiki at https://github.com/EwyBoy/OreTweaker/wiki 6 | 7 | Bugs can be reported here at https://github.com/EwyBoy/OreTweaker/issues 8 | 9 | Enjoy and have fun! 10 | 11 | -Ewy -------------------------------------------------------------------------------- /kubejs/data/buddycards/loot_tables/inject/fd_buddybeans.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | { 4 | "name": "buddycards", 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "item", 9 | "weight": 60, 10 | "name": "buddycards:buddybeans" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/textures/blocks/fueltank.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "ctm": { 3 | "ctm_version": 1, 4 | "type": "ctm", 5 | "layer": "CUTOUT", 6 | "textures": [ 7 | "advancedrocketry:blocks/fueltank_ctm" 8 | ], 9 | "extra": { 10 | "connect_to": [ 11 | { "block": "advancedrocketry:fueltank" } 12 | ] 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/models/block/window.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "prettypipes:block/pipe_end_inner", 5 | "particle": "prettypipes:block/pipe_end_inner" 6 | }, 7 | "elements": [ 8 | { 9 | "from": [5, 10, 5], 10 | "to": [11, 11, 11], 11 | "faces": { 12 | "up": {"uv": [5, 5, 11, 11], "texture": "#0"} 13 | } 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /worldshape/data/pack/worldgen/template_pool/slime/blue_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pack:slime/blue_1", 3 | "fallback": "minecraft:empty", 4 | "elements": [ 5 | { 6 | "weight": 1, 7 | "element": { 8 | "location": "pack:slime/blue_1", 9 | "processors": "minecraft:empty", 10 | "projection": "rigid", 11 | "element_type": "minecraft:single_pool_element" 12 | } 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /worldshape/data/pack/worldgen/template_pool/slime/blue_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pack:slime/blue_2", 3 | "fallback": "minecraft:empty", 4 | "elements": [ 5 | { 6 | "weight": 1, 7 | "element": { 8 | "location": "pack:slime/blue_2", 9 | "processors": "minecraft:empty", 10 | "projection": "rigid", 11 | "element_type": "minecraft:single_pool_element" 12 | } 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /worldshape/data/pack/worldgen/template_pool/railshaft/house.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pack:railshaft/house", 3 | "fallback": "minecraft:empty", 4 | "elements": [ 5 | { 6 | "weight": 1, 7 | "element": { 8 | "location": "pack:railshaft/house", 9 | "processors": "minecraft:empty", 10 | "projection": "rigid", 11 | "element_type": "minecraft:single_pool_element" 12 | } 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /config/cosmeticarmorreworked-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #These settings affects both server and client 3 | [Common] 4 | #Whether or not to disable the RecipeBook in the CosmeticArmorInventory 5 | CosArmorDisableRecipeBook = false 6 | #Whether or not to keep items in cosmetic armor slots in the event of player death 7 | CosArmorKeepThroughDeath = false 8 | #Whether or not to disable the coshat command 9 | CosArmorDisableCosHatCommand = false 10 | 11 | -------------------------------------------------------------------------------- /kubejs/config/client.properties: -------------------------------------------------------------------------------- 1 | #KubeJS Client Properties 2 | #Tue Aug 31 15:51:05 CEST 2021 3 | fmlLogColor=B8B2A6 4 | barBorderColor=F4F3F3 5 | overrideColors=true 6 | menuBackgroundScale=32.0 7 | fmlMemoryColor=F4F3F3 8 | barColor=5EAAA8 9 | showTagNames=true 10 | menuBackgroundBrightness=64 11 | disableRecipeBook=false 12 | menuInnerBackgroundBrightness=32 13 | title=Create: Above and Beyond 14 | backgroundColor=B8B2A6 15 | exportAtlases=false 16 | -------------------------------------------------------------------------------- /kubejs/exported/tags/tile_entity_types.txt: -------------------------------------------------------------------------------- 1 | To refresh this file, delete it and run /reload command again! Last updated: Aug 15, 2021 10:40:00 PM 2 | 3 | #tconstruct:crafting_station_blacklist 4 | - tconstruct:crafting_station 5 | - tconstruct:tinker_station 6 | - tconstruct:part_builder 7 | - tconstruct:part_chest 8 | - tconstruct:modifier_chest 9 | - tconstruct:cast_chest 10 | - tconstruct:basin 11 | - tconstruct:table 12 | - tconstruct:smeltery 13 | -------------------------------------------------------------------------------- /config/forbidden_arcanus-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [rendering] 3 | 4 | [rendering.orb_of_temporary_flight] 5 | #Y-Position of the Orb of Temporary Flight Overlay (if enabled) [default: 1] 6 | #Range: 0 ~ 500 7 | y_position = 1 8 | #X-Position of the Orb of Temporary Flight Overlay (if enabled) [default: 1] 9 | #Range: 0 ~ 500 10 | x_position = 1 11 | #Should the Orb of Temporary Flight Overlay be rendered? [default: true] 12 | render = true 13 | 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .mixin.out/** 2 | crash-reports/** 3 | logs/** 4 | mods/** 5 | natives/** 6 | paintings/** 7 | palettes/** 8 | local/** 9 | patchouli_books/** 10 | resourcepacks/** 11 | saves/** 12 | schematics/** 13 | screenshots/** 14 | themes/** 15 | config.json 16 | hotbar.nbt 17 | knownkeys.txt 18 | optionsof.txt 19 | optionsshaders.txt 20 | patchouli_data.json 21 | reauth.toml 22 | servers.dat 23 | servers.dat_old 24 | usercache.json 25 | usernamecache.json 26 | -------------------------------------------------------------------------------- /config/computercraft-client.toml: -------------------------------------------------------------------------------- 1 | #The renderer to use for monitors. Generally this should be kept at "best" - if monitors have performance issues, you may wish to experiment with alternative renderers. 2 | #Allowed Values: BEST, TBO, VBO 3 | monitor_renderer = "BEST" 4 | #The maximum distance monitors will render at. This defaults to the standard tile entity limit, but may be extended if you wish to build larger monitors. 5 | #Range: 16 ~ 1024 6 | monitor_distance = 64 7 | 8 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/igloos.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Grassy Igloos in Plains and Forests. 3 | # 1 for spawning in most chunks and 1001 for no spawn. 4 | #Range: 1 ~ 1001 5 | grassyIglooMaxChunkDistance = 20 6 | # 7 | # Average distance between spawn attempts for Stone Igloos in Giant Tree Taiga biomes. 8 | # 1 for spawning in most chunks and 1001 for no spawn. 9 | #Range: 1 ~ 1001 10 | stoneIglooMaxChunkDistance = 20 11 | 12 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/waterstrainer/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "item.waterstrainer.strainer_survivalist": "Sediment Strainer", 3 | "item.waterstrainer.strainer_survivalist_solid": "Unused", 4 | "item.waterstrainer.strainer_survivalist_reinforced": "Unused", 5 | 6 | "item.waterstrainer.strainer_fisherman": "Fishing Net", 7 | "item.waterstrainer.strainer_fisherman_solid": "Unused", 8 | "item.waterstrainer.strainer_fisherman_reinforced": "Specialty Fishing Net" 9 | } -------------------------------------------------------------------------------- /kubejs/data/extcaves/loot_tables/blocks/lavastone_stairs.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "type": "minecraft:block", 4 | "pools": [ 5 | { 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "extcaves:lavastone_stairs" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/underground_lab.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "single", 4 | "id": "pack:underground_lab" 5 | }, 6 | 7 | "averageSpacing": 6, 8 | "avoidOthers": true, 9 | 10 | "placement": { 11 | "offset": -11, 12 | "minY": 16, 13 | "maxY": 70, 14 | "minSpace": 3, 15 | "type": "cave" 16 | }, 17 | 18 | "dimensions": [ 19 | "minecraft:overworld" 20 | ] 21 | 22 | } -------------------------------------------------------------------------------- /kubejs/data/extcaves/loot_tables/blocks/polished_lavastone.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "type": "minecraft:block", 4 | "pools": [ 5 | { 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "extcaves:polished_lavastone" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /config/chiselsandbits-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Options for getting help in game. 3 | [help] 4 | #Should the help information be visible in tooltips? 5 | enabled-in-tooltips = true 6 | 7 | #Performance related options. 8 | [performance] 9 | 10 | #Configures caches 11 | [performance.caches] 12 | 13 | #Cache size related options. 14 | [performance.caches.sizes] 15 | #Size of the collision box cache. 16 | #Range: -9223372036854775808 ~ 9223372036854775807 17 | collision-boxes = 10000 18 | 19 | -------------------------------------------------------------------------------- /config/naturescompass-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [Client] 3 | #The side for information rendered on the HUD. Ex: LEFT, RIGHT 4 | #Allowed Values: LEFT, RIGHT 5 | overlaySide = "LEFT" 6 | #Displays Nature's Compass information even while chat is open. 7 | displayWithChatOpen = true 8 | #Fixes biome names by adding missing spaces. Ex: ForestHills becomes Forest Hills 9 | fixBiomeNames = true 10 | #The line offset for information rendered on the HUD. 11 | #Range: 0 ~ 50 12 | overlayLineOffset = 1 13 | 14 | -------------------------------------------------------------------------------- /kubejs/data/extcaves/loot_tables/blocks/polished_lavastone_stairs.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "type": "minecraft:block", 4 | "pools": [ 5 | { 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "extcaves:polished_lavastone_stairs" 11 | } 12 | ], 13 | "conditions": [ 14 | { 15 | "condition": "minecraft:survives_explosion" 16 | } 17 | ] 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /config/repurposed_structures-forge/temples.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Repurposed Structures Temples. 3 | # 1 for spawning in most chunks and 1001 for none. 4 | #Range: 1 ~ 1001 5 | netherWastelandTempleMaxChunkDistance = 27 6 | #Range: 1 ~ 1001 7 | netherBasaltTempleMaxChunkDistance = 27 8 | #Range: 1 ~ 1001 9 | netherCrimsonTempleMaxChunkDistance = 27 10 | #Range: 1 ~ 1001 11 | netherWarpedTempleMaxChunkDistance = 27 12 | #Range: 1 ~ 1001 13 | netherSoulTempleMaxChunkDistance = 27 14 | 15 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/witch_huts.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Repurposed Structures Witch Huts. 3 | # 1 for spawning in most chunks and 1001 for no spawn. 4 | #Range: 1 ~ 1001 5 | witchHutsOakMaxChunkDistance = 48 6 | #Range: 1 ~ 1001 7 | witchHutsTaigaMaxChunkDistance = 48 8 | #Range: 1 ~ 1001 9 | witchHutsGiantTreeTaigaMaxChunkDistance = 48 10 | #Range: 1 ~ 1001 11 | witchHutsBirchMaxChunkDistance = 48 12 | #Range: 1 ~ 1001 13 | witchHutsDarkForestMaxChunkDistance = 48 14 | 15 | -------------------------------------------------------------------------------- /config/ccl.cfg: -------------------------------------------------------------------------------- 1 | "client" { 2 | # With this enabled, CCL will catch all exceptions thrown whilst rendering blocks. 3 | # If an exception is caught, the block will not be rendered. 4 | B:"catchBlockRenderExceptions"=true 5 | 6 | # With this enabled, CCL will catch all exceptions thrown whilst rendering items. 7 | # By default CCL will only enhance the crash report, but with 'attemptRecoveryOnItemRenderException' enabled 8 | # CCL will attempt to recover after the exception. 9 | B:"catchItemRenderExceptions"=true 10 | } 11 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/block/zinc_machine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermal:block/frame_base", 3 | "textures": { 4 | "particle": "kubejs:block/zinc_machine_top", 5 | "down": "kubejs:block/zinc_machine_bottom", 6 | "up": "kubejs:block/zinc_machine_top", 7 | "north": "kubejs:block/zinc_machine_side", 8 | "east": "kubejs:block/zinc_machine_side", 9 | "south": "kubejs:block/zinc_machine_side", 10 | "west": "kubejs:block/zinc_machine_side", 11 | "inner": "kubejs:block/zinc_machine_inner" 12 | } 13 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/moonbase.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "pool", 4 | "id": "pack:moonbase" 5 | }, 6 | 7 | "averageSpacing": 24, 8 | "avoidOthers": true, 9 | 10 | "placement": { 11 | "offset": -1, 12 | "terraform": 1, 13 | "minY": 60, 14 | "type": "surface" 15 | }, 16 | 17 | "dimensions": [ 18 | "custommoon:moon" 19 | ], 20 | 21 | "biomes": [ 22 | "advancedrocketry:moonold" 23 | ] 24 | 25 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/crashed_rocket.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "single", 4 | "id": "pack:crashed_rocket" 5 | }, 6 | 7 | "averageSpacing": 28, 8 | "avoidOthers": true, 9 | 10 | "placement": { 11 | "offset": -2, 12 | "terraform": 2, 13 | "minY": 60, 14 | "type": "surface" 15 | }, 16 | 17 | "dimensions": [ 18 | "custommoon:moon" 19 | ], 20 | 21 | "biomes": [ 22 | "advancedrocketry:moonold" 23 | ] 24 | 25 | } -------------------------------------------------------------------------------- /config/repurposed_structures-forge/shipwrecks.toml: -------------------------------------------------------------------------------- 1 | 2 | #----------------------------------------------------------------------------------------- 3 | # Average distance between spawn attempts for Repurposed Structures Shipwrecks. 4 | # 1 for spawning in most chunks and 1001 for none. 5 | [Shipwrecks] 6 | #Range: 1 ~ 1001 7 | netherBricksShipwreckMaxChunkDistance = 29 8 | #Range: 1 ~ 1001 9 | crimsonShipwreckMaxChunkDistance = 27 10 | #Range: 1 ~ 1001 11 | endShipwreckMaxChunkDistance = 24 12 | #Range: 1 ~ 1001 13 | warpedShipwreckMaxChunkDistance = 27 14 | 15 | -------------------------------------------------------------------------------- /kubejs/assets/kubejs/models/block/enderium_machine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "thermal:block/frame_base", 3 | "textures": { 4 | "particle": "kubejs:block/enderium_machine_top", 5 | "down": "kubejs:block/enderium_machine_bottom", 6 | "up": "kubejs:block/enderium_machine_top", 7 | "north": "kubejs:block/enderium_machine_side", 8 | "east": "kubejs:block/enderium_machine_side", 9 | "south": "kubejs:block/enderium_machine_side", 10 | "west": "kubejs:block/enderium_machine_side", 11 | "inner": "kubejs:block/enderium_machine_inner" 12 | } 13 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/remove/remove_igneous_rocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:granite", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | }, 10 | { 11 | "ore": "minecraft:diorite", 12 | "minY": -1, 13 | "maxY": -1, 14 | "maxVeinSize": -1, 15 | "spawnRate": -1.0 16 | }, 17 | { 18 | "ore": "minecraft:andesite", 19 | "minY": -1, 20 | "maxY": -1, 21 | "maxVeinSize": -1, 22 | "spawnRate": -1.0 23 | } 24 | ] 25 | } -------------------------------------------------------------------------------- /config/ftbquests/quests/data.snbt: -------------------------------------------------------------------------------- 1 | { 2 | version: 13 3 | title: "&6 Above &f\\&&6 Beyond" 4 | icon: "kubejs:abstruse_mechanism" 5 | disable_toast: true 6 | default_reward_team: true 7 | default_consume_items: true 8 | default_autoclaim_rewards: "disabled" 9 | default_quest_shape: "square" 10 | default_quest_disable_jei: false 11 | emergency_items_cooldown: 300 12 | drop_loot_crates: false 13 | loot_crate_no_drop: { 14 | passive: 4000 15 | monster: 600 16 | boss: 0 17 | } 18 | disable_gui: false 19 | grid_scale: 1.0d 20 | pause_game: false 21 | lock_message: "" 22 | } 23 | -------------------------------------------------------------------------------- /config/oretweaker/templates/remove/remove_stones_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:soul_sand", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | }, 10 | { 11 | "ore": "minecraft:blackstone", 12 | "minY": -1, 13 | "maxY": -1, 14 | "maxVeinSize": -1, 15 | "spawnRate": -1.0 16 | }, 17 | { 18 | "ore": "minecraft:magma_block", 19 | "minY": -1, 20 | "maxY": -1, 21 | "maxVeinSize": -1, 22 | "spawnRate": -1.0 23 | } 24 | ] 25 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/oil_fountain.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "pool", 4 | "id": "pack:oil_fountain" 5 | }, 6 | 7 | "averageSpacing": 13, 8 | "avoidOthers": true, 9 | 10 | "placement": { 11 | "offset": -49, 12 | "terraform": 49, 13 | "minY": 60, 14 | "maxY": 70, 15 | "type": "surface" 16 | }, 17 | 18 | "dimensions": [ 19 | "minecraft:overworld" 20 | ], 21 | 22 | "biomes": [ 23 | "#desert", 24 | "#mesa", 25 | "#savanna" 26 | ] 27 | 28 | } -------------------------------------------------------------------------------- /config/EnderStorage.cfg: -------------------------------------------------------------------------------- 1 | # The RegistryName for the Item to lock EnderChests and Tanks. 2 | S:"personalItem"="minecraft:diamond" 3 | 4 | # Causes chests to lose personal settings and drop the diamond on break. 5 | B:"anarchyMode"=false 6 | 7 | # The size of each inventory of EnderStorage, 0 = 3x3, 1 = 3x9, 2 = 6x9, default = 1 8 | I:"item_storage_size"=1 9 | 10 | # Disables the tank on top of creators heads. 11 | B:"disableCreatorVisuals"=false 12 | 13 | # Enable this to make EnderStorage use vanilla's EnderChest sounds instead of the standard chest. 14 | B:"useVanillaEnderChestsSounds"=false 15 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.advancedrocketry.seat": "Rocket Seat", 3 | "block.advancedrocketry.fuelingstation": "Rocket Fueling Station", 4 | "block.advancedrocketry.rocketmotor": "Rocket Thruster", 5 | "block.advancedrocketry.guidancecomputer": "Rocket Guidance Computer", 6 | "block.advancedrocketry.fueltank": "Rocket Fuel Tank", 7 | "block.advancedrocketry.launchpad": "Rocketry Launch Pad", 8 | "block.advancedrocketry.structuretower": "Rocketry Launch Tower", 9 | "msg.entity.rocket.seldst": "Crash game", 10 | "msg.modules": "" 11 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/remove/remove_ores_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:nether_quartz_ore", 5 | "minY": -1, 6 | "maxY": -1, 7 | "maxVeinSize": -1, 8 | "spawnRate": -1.0 9 | }, 10 | { 11 | "ore": "minecraft:nether_gold_ore", 12 | "minY": -1, 13 | "maxY": -1, 14 | "maxVeinSize": -1, 15 | "spawnRate": -1.0 16 | }, 17 | { 18 | "ore": "minecraft:ancient_debris", 19 | "minY": -1, 20 | "maxY": -1, 21 | "maxVeinSize": -1, 22 | "spawnRate": -1.0 23 | } 24 | ] 25 | } -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:gravel", 5 | "filler": "minecraft:stone", 6 | "minY": 1, 7 | "maxY": 256, 8 | "maxVeinSize": 32, 9 | "spawnRate": 8.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | }, 13 | { 14 | "ore": "minecraft:gravel", 15 | "filler": "minecraft:netherrack", 16 | "minY": 5, 17 | "maxY": 37, 18 | "maxVeinSize": 32, 19 | "spawnRate": 2.0, 20 | "biomeBlacklist": [], 21 | "biomeWhitelist": [] 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /config/repurposed_structures-forge/modded_loot.toml: -------------------------------------------------------------------------------- 1 | #Adds modded loot from vanilla structure's loot tables and injects them into Repurposed Structure's loot tables. 2 | #Example: Snowy Pyramid gets all modded items that vanilla Desert Temple can have. 3 | importModdedItems = true 4 | #Add the identifiers for Repurposed Structures's loottable you want to turn off the automatic modded item importing code for. 5 | #Separate multiple entries with a comma. 6 | #Example: "repurposed_structures:chests/mansions/birch, repurposed_structures:chests/mineshafts/jungle" 7 | blacklistedRSLoottablesFromImportingModdedItems = "" 8 | 9 | -------------------------------------------------------------------------------- /config/abnormals_core-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Common only settings for Abnormals Core, this will affect all depending mods 3 | [common] 4 | 5 | #Compatibility with Quark's poisonous potatoes feature 6 | [common.poisonousPotatoCompat] 7 | #If growth stunting should give baby mobs poison; Default: True 8 | poisonEffect = true 9 | #The chance to stunt baby mob growth when feeding a poisonous potato; Default: 0.1 10 | #Range: 0.0 ~ 1.0 11 | poisonChance = 0.1 12 | #If baby mobs can be fed a poisonous potato to stunt their growth when Quark is installed; Default: True 13 | poisonPotatoCompatEnabled = true 14 | 15 | -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/ancient_debris.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:ancient_debris", 5 | "filler": "minecraft:netherrack", 6 | "minY": 8, 7 | "maxY": 120, 8 | "maxVeinSize": 1, 9 | "spawnRate": 1.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | }, 13 | { 14 | "ore": "minecraft:ancient_debris", 15 | "filler": "minecraft:netherrack", 16 | "minY": 8, 17 | "maxY": 24, 18 | "maxVeinSize": 2, 19 | "spawnRate": 1.0, 20 | "biomeBlacklist": [], 21 | "biomeWhitelist": [] 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/railshaft.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "pool", 4 | "id": "pack:railshaft/house", 5 | "maxDepth": 12 6 | }, 7 | 8 | "averageSpacing": 20, 9 | "avoidOthers": true, 10 | 11 | "placement": { 12 | "offset": -8, 13 | "minY": 0, 14 | "maxY": 70, 15 | "type": "surface" 16 | }, 17 | 18 | "dimensions": [ 19 | "minecraft:overworld" 20 | ], 21 | 22 | "biomes": [ 23 | "#plains", 24 | "#forest", 25 | "#taiga", 26 | "#savanna", 27 | "#jungle" 28 | ] 29 | 30 | } -------------------------------------------------------------------------------- /config/blockcarpentry-common.toml: -------------------------------------------------------------------------------- 1 | 2 | #Tool settings 3 | [tools] 4 | #Determines whether you need a hammer to remove blocks from a frame, when set to false, you can remove blocks from a frame by sneaking and right-clicking the block (default: true) 5 | hammer_needed = true 6 | 7 | #Block settings 8 | [blocks] 9 | #Determines whether you have to sneak when placing vertical slabs, when set to false, frame slabs will always be placed on the side of the block; when set to true, frame slabs will be placed like vanilla slabs, and you have to sneak in order to make place vertical slabs (default: true) 10 | sneak_for_vertical_slabs = true 11 | 12 | -------------------------------------------------------------------------------- /config/magicfeather-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [item] 3 | #If curios is installed, the magic feather will need to be installed in its charm slot to function. 4 | requires_curios = true 5 | 6 | [range_computation] 7 | #How many blocks are added to the range per level? 8 | #Range: > -2147483648 9 | range_step = 10 10 | #What is the beacon base range? 11 | #Range: > -2147483648 12 | base_range = 10 13 | #How the beacon range is calculated vertically. Java = Vanilla Java Behavior. Bedrock = Vanilla Bedrock behavior. FullHeight = expand vertical range to maximum 14 | #Allowed Values: Java, FullHeight 15 | vertical_range_type = "FullHeight" 16 | 17 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/wells.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Rarity of Repurposed Structures Wells. 3 | # This affects the chances of a well spawning in a chunk. 4 | # The chance of a well generating at a chunk is 1/rarityPerChunk. 5 | # 1 for wells spawning in every chunk and 10000 for no wells. 6 | #Range: 1 ~ 10000 7 | badlandsWellRarityPerChunk = 250 8 | #Range: 1 ~ 10000 9 | netherWellRarityPerChunk = 200 10 | #Range: 1 ~ 10000 11 | snowWellRarityPerChunk = 350 12 | #Range: 1 ~ 10000 13 | mossyStoneWellRarityPerChunk = 350 14 | #Range: 1 ~ 10000 15 | forestWellRarityPerChunk = 350 16 | #Range: 1 ~ 10000 17 | mushroomWellRarityPerChunk = 350 18 | 19 | -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/nether_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:nether_gold_ore", 5 | "filler": "minecraft:netherrack", 6 | "minY": 10, 7 | "maxY": 118, 8 | "maxVeinSize": 10, 9 | "spawnRate": 10.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | }, 13 | { 14 | "ore": "minecraft:nether_gold_ore", 15 | "filler": "minecraft:netherrack", 16 | "minY": 10, 17 | "maxY": 118, 18 | "maxVeinSize": 10, 19 | "spawnRate": 20.0, 20 | "biomeBlacklist": [], 21 | "biomeWhitelist": [] 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /config/ponderjs-client.toml: -------------------------------------------------------------------------------- 1 | # 2 | #The path to the lang file where lang entries are automatically generated %lang% is replaced by the value of the lang config value 3 | langPath = "kubejs/assets/ponderjs_generated/lang/%lang%.json" 4 | # 5 | #Used for the langPath config value, and if autoGenerateLang is false this is where it will generate lang in the generated pack 6 | lang = "en_us" 7 | # 8 | #Whether or not to automatically generate lang into the path in the langPath config value, if disabled, a resource pack is generated at runtime for this, however this should really be true 9 | #[@cui:RequiresReload:client] 10 | autoGenerateLang = true 11 | 12 | -------------------------------------------------------------------------------- /config/custom-micromaterials.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file for adding microblock materials for aesthetic blocks added by mods 2 | # The '#' character defines a comment, everything after this character on a given line will be ignored. 3 | # Each line needs to be of the form [property=value,otherProperty=value] 4 | # being the registry name of the block. E.G: 'minecraft:stone' 5 | # This can optionally be followed by Key-Value pairs describing any block state properties. 6 | # If no properties are defined, the default state of the block will be used. 7 | # Examples: 8 | # 'minecraft:stone' 9 | # 'minecraft:grass_block[snowy=true]' 10 | -------------------------------------------------------------------------------- /config/oretweaker/templates/defaults/nether_quartz_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "oreConfig": [ 3 | { 4 | "ore": "minecraft:nether_quartz_ore", 5 | "filler": "minecraft:netherrack", 6 | "minY": 10, 7 | "maxY": 246, 8 | "maxVeinSize": 14, 9 | "spawnRate": 10.0, 10 | "biomeBlacklist": [], 11 | "biomeWhitelist": [] 12 | }, 13 | { 14 | "ore": "minecraft:nether_quartz_ore", 15 | "filler": "minecraft:netherrack", 16 | "minY": 10, 17 | "maxY": 246, 18 | "maxVeinSize": 14, 19 | "spawnRate": 32.0, 20 | "biomeBlacklist": [], 21 | "biomeWhitelist": [] 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/models/block/cover.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "pipez:block/pipe_cover", 5 | "particle": "pipez:block/pipe_cover" 6 | }, 7 | "elements": [ 8 | { 9 | "from": [3, 3, 3], 10 | "to": [13, 13, 13], 11 | "faces": { 12 | "north": {"uv": [3, 3, 13, 13], "texture": "#0"}, 13 | "east": {"uv": [3, 3, 13, 13], "texture": "#0"}, 14 | "south": {"uv": [3, 3, 13, 13], "texture": "#0"}, 15 | "west": {"uv": [3, 3, 13, 13], "texture": "#0"}, 16 | "up": {"uv": [3, 3, 13, 13], "texture": "#0"}, 17 | "down": {"uv": [3, 3, 13, 13], "texture": "#0"} 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/slime.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "pool", 4 | "id": "pack:slime/any" 5 | }, 6 | 7 | "averageSpacing": 25, 8 | "avoidOthers": true, 9 | 10 | "placement": { 11 | "offset": 0, 12 | "terraform": 0, 13 | "minY": 50, 14 | "maxY": 100, 15 | "type": "surface" 16 | }, 17 | 18 | "dimensions": [ 19 | "minecraft:overworld" 20 | ], 21 | 22 | "biomes": [ 23 | "#taiga", 24 | "#extreme_hills", 25 | "#jungle", 26 | "#plains", 27 | "#forest", 28 | "#swamp", 29 | "#mushroom" 30 | ] 31 | 32 | } -------------------------------------------------------------------------------- /worldshape/data/pack/worldgen/template_pool/surface_build.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pack:surface_build", 3 | "fallback": "minecraft:empty", 4 | "elements": [ 5 | { 6 | "weight": 1, 7 | "element": { 8 | "location": "pack:log_cabin", 9 | "processors": "minecraft:empty", 10 | "projection": "rigid", 11 | "element_type": "minecraft:single_pool_element" 12 | } 13 | }, 14 | { 15 | "weight": 1, 16 | "element": { 17 | "location": "pack:campsite", 18 | "processors": "minecraft:empty", 19 | "projection": "rigid", 20 | "element_type": "minecraft:single_pool_element" 21 | } 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /config/advRocketry/asteroidConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /worldshape/data/pack/worldgen/template_pool/oil_fountain.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pack:oil_fountain", 3 | "fallback": "minecraft:empty", 4 | "elements": [ 5 | { 6 | "weight": 4, 7 | "element": { 8 | "location": "pack:oil_fountain", 9 | "processors": "minecraft:empty", 10 | "projection": "rigid", 11 | "element_type": "minecraft:single_pool_element" 12 | } 13 | }, 14 | { 15 | "weight": 3, 16 | "element": { 17 | "location": "pack:oil_fountain_1", 18 | "processors": "minecraft:empty", 19 | "projection": "rigid", 20 | "element_type": "minecraft:single_pool_element" 21 | } 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/models/block/cover.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "prettypipes:block/pipe_cover", 5 | "particle": "prettypipes:block/pipe_cover" 6 | }, 7 | "elements": [ 8 | { 9 | "from": [3, 3, 3], 10 | "to": [13, 13, 13], 11 | "faces": { 12 | "north": {"uv": [3, 3, 13, 13], "texture": "#0"}, 13 | "east": {"uv": [3, 3, 13, 13], "texture": "#0"}, 14 | "south": {"uv": [3, 3, 13, 13], "texture": "#0"}, 15 | "west": {"uv": [3, 3, 13, 13], "texture": "#0"}, 16 | "up": {"uv": [3, 3, 13, 13], "texture": "#0"}, 17 | "down": {"uv": [3, 3, 13, 13], "texture": "#0"} 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/log_cabin.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "pool", 4 | "id": "pack:surface_build" 5 | }, 6 | 7 | "averageSpacing": 18, 8 | "avoidOthers": true, 9 | 10 | "placement": { 11 | "offset": 1, 12 | "terraform": 0, 13 | "minY": 60, 14 | "maxY": 200, 15 | "type": "surface" 16 | }, 17 | 18 | "dimensions": [ 19 | "minecraft:overworld" 20 | ], 21 | 22 | "biomes": [ 23 | "#taiga", 24 | "#extreme_hills", 25 | "#jungle", 26 | "#plains", 27 | "#savanna", 28 | "#icy", 29 | "#forest", 30 | "#swamp" 31 | ] 32 | 33 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/thermal/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.thermal.machine_press": "Trade Station", 3 | "block.thermal.machine_sawmill": "Reagent Extractor", 4 | "block.thermal.machine_frame": "Invar Machine", 5 | "info.thermal.machine_press.0": "Automatically exchanges items for coin and vice-versa.", 6 | "info.thermal.machine_press.1": "Requires a trade card from the Questing Interface.", 7 | "info.thermal.machine_press.2": "Thank you for your purchase!", 8 | "info.thermal.machine_sawmill.0": "Automatically removes Reagents from their glass.", 9 | "info.thermal.machine_sawmill.1": "", 10 | "info.thermal.machine_sawmill.2": "", 11 | "msg.fuelingStation.link": "Now linking from Position" 12 | } -------------------------------------------------------------------------------- /config/curios-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Client only settings, mostly things related to rendering 3 | [client] 4 | #The corner for the Curios GUI button 5 | #Allowed Values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT 6 | buttonCorner = "TOP_LEFT" 7 | #The X-Offset for the Curios GUI button 8 | #Range: -100 ~ 100 9 | buttonXOffset = 0 10 | #The Y-Offset for the Creative Curios GUI button 11 | #Range: -100 ~ 100 12 | creativeButtonYOffset = 0 13 | #Set to true to enable rendering curios 14 | renderCurios = true 15 | #The X-Offset for the Creative Curios GUI button 16 | #Range: -100 ~ 100 17 | creativeButtonXOffset = 0 18 | #The Y-Offset for the Curios GUI button 19 | #Range: -100 ~ 100 20 | buttonYOffset = 0 21 | 22 | -------------------------------------------------------------------------------- /worldshape/data/pack/worldgen/template_pool/railshaft/first.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pack:railshaft/first", 3 | "fallback": "minecraft:empty", 4 | "elements": [ 5 | { 6 | "weight": 3, 7 | "element": { 8 | "location": "pack:railshaft/slope_straight", 9 | "processors": "minecraft:empty", 10 | "projection": "rigid", 11 | "element_type": "minecraft:single_pool_element" 12 | } 13 | }, 14 | { 15 | "weight": 3, 16 | "element": { 17 | "location": "pack:railshaft/slope_both", 18 | "processors": "minecraft:empty", 19 | "projection": "rigid", 20 | "element_type": "minecraft:single_pool_element" 21 | } 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /config/bwncr-common.toml: -------------------------------------------------------------------------------- 1 | 2 | [General] 3 | #Silence the wandering trader's ambient sound. 4 | silenceTrader = true 5 | #Silence the server-wide Wither spawn and death broadcast sounds. 6 | silenceWither = true 7 | #Silence the server-wide Ender Dragon Death broadcast sound. 8 | silenceDragon = true 9 | #Silence the server-wide Thunder broadcast sound caused by the Lightning event 10 | silenceLightning = true 11 | #If enabled the console will load up spam showing what sounds are being received and whether or not they are being canceled 12 | debugMode = false 13 | #A list of sounds to silence, discoverable with the toggle command /listen 14 | #enter one sound event per line with no commas. 15 | silenceUs = [""] 16 | 17 | -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/broken_windmill.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "single", 4 | "id": "pack:broken_windmill" 5 | }, 6 | 7 | "averageSpacing": 20, 8 | "avoidOthers": true, 9 | 10 | "placement": { 11 | "offset": -7, 12 | "terraform": 7, 13 | "minY": 70, 14 | "maxY": 200, 15 | "type": "surface" 16 | }, 17 | 18 | "dimensions": [ 19 | "minecraft:overworld" 20 | ], 21 | 22 | "biomes": [ 23 | "#taiga", 24 | "#extreme_hills", 25 | "#jungle", 26 | "#plains", 27 | "#savanna", 28 | "#forest", 29 | "#swamp", 30 | "#mushroom" 31 | ] 32 | 33 | } -------------------------------------------------------------------------------- /worldshape/data/pack/structure_spawners/ruins.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": { 3 | "type": "pool", 4 | "id": "pack:ruins/any", 5 | "maxDepth": 7 6 | }, 7 | 8 | "averageSpacing": 30, 9 | "avoidOthers": true, 10 | 11 | "placement": { 12 | "offset": 0, 13 | "terraform": 0, 14 | "minY": 70, 15 | "maxY": 200, 16 | "type": "surface" 17 | }, 18 | 19 | "dimensions": [ 20 | "minecraft:overworld" 21 | ], 22 | 23 | "biomes": [ 24 | "#taiga", 25 | "#extreme_hills", 26 | "#jungle", 27 | "#plains", 28 | "#savanna", 29 | "#forest", 30 | "#swamp", 31 | "#mushroom" 32 | ] 33 | 34 | } -------------------------------------------------------------------------------- /config/pathtodirt-common.toml: -------------------------------------------------------------------------------- 1 | #Write here a list of custom overrides when right clicking a block. It must be blockRightClicked,blockToTransformTo. Blocks must have the format modid:blockid. E.g. minecraft:coarse_dirt,minecraft:grass_path will make coarse dirt transform to path when right-clicked with a shovel. You can even use tags. 2 | Overrides = ["minecraft:dirt,minecraft:grass_path", "minecraft:podzol,minecraft:grass_path", "minecraft:grass_path,minecraft:dirt", "minecraft:farmland,minecraft:dirt"] 3 | #Write here a list of items that shouldn't execute mod's path to dirt code. Items must have the format modid:itemid. Item Tags can be used. 4 | "Item Blacklist" = ["quark:pickarang", "quark:flamerang"] 5 | #If true the player must be sneaking to make the mod work. 6 | "Require Sneaking" = false 7 | 8 | -------------------------------------------------------------------------------- /config/cavern-common.toml: -------------------------------------------------------------------------------- 1 | "Generate caverns in the underground" = true 2 | "Generate cave tunnels in the underground" = true 3 | "Generate Previous Caves" = false 4 | 5 | ["This value sets the cavern cave generation size, Big number = Small Cavern Generation"] 6 | #Range: 1.0 ~ 10.0 7 | " XZ Size Value" = 1.0 8 | 9 | ["This value sets the cavern cave generation height, Big number = Shorter Height Cavern Generation"] 10 | #Range: 1.0 ~ 20.0 11 | " Y Size Value" = 8.24 12 | 13 | ["This value sets the tunnel cave generation size, Big number = Small Tunnel Cave Generation"] 14 | #Range: 1.0 ~ 10.0 15 | " XZ Size Value" = 1.2 16 | 17 | ["This value sets the tunnel cave generation height, Big number = Shorter Height Tunnel Cave Generation"] 18 | #Range: 1.0 ~ 20.0 19 | " Y Size Value" = 14.24 20 | 21 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/pyramids.toml: -------------------------------------------------------------------------------- 1 | #Range: 1 ~ 1001 2 | netherPyramidMaxChunkDistance = 37 3 | # 4 | # Average distance between spawn attempts for Repurposed Structures Pyramids. 5 | # 1 for spawning in most chunks and 1001 for none. 6 | #Range: 1 ~ 1001 7 | badlandsPyramidMaxChunkDistance = 40 8 | #Range: 1 ~ 1001 9 | pyramidSnowyMaxChunkDistance = 40 10 | #Range: 1 ~ 1001 11 | pyramidEndMaxChunkDistance = 68 12 | #Range: 1 ~ 1001 13 | pyramidIcyMaxChunkDistance = 37 14 | #Range: 1 ~ 1001 15 | pyramidJungleMaxChunkDistance = 44 16 | #Range: 1 ~ 1001 17 | pyramidMushroomMaxChunkDistance = 24 18 | #Range: 1 ~ 1001 19 | pyramidOceanMaxChunkDistance = 40 20 | #Range: 1 ~ 1001 21 | pyramidGiantTreeTaigaMaxChunkDistance = 40 22 | #Range: 1 ~ 1001 23 | pyramidFlowerForestMaxChunkDistance = 36 24 | 25 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/models/block/bottom_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "pipez:block/pipe_rims", 5 | "2": "pipez:block/pipe_rims_inner", 6 | "particle": "pipez:block/pipe_rims" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [4, 4, 10], 11 | "to": [12, 6, 12], 12 | "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, 13 | "faces": { 14 | "north": {"uv": [4, 10, 12, 12], "texture": "#2"}, 15 | "east": {"uv": [4, 10, 6, 12], "texture": "#0"}, 16 | "south": {"uv": [4, 10, 12, 12], "texture": "#0"}, 17 | "west": {"uv": [10, 10, 12, 12], "texture": "#0"}, 18 | "up": {"uv": [4, 10, 12, 12], "texture": "#2"}, 19 | "down": {"uv": [4, 10, 12, 12], "rotation": 180, "texture": "#0"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/models/block/top_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "pipez:block/pipe_rims", 5 | "2": "pipez:block/pipe_rims_inner", 6 | "particle": "pipez:block/pipe_rims" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [4, 10, 10], 11 | "to": [12, 12, 12], 12 | "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, 13 | "faces": { 14 | "north": {"uv": [4, 12, 12, 10], "texture": "#2"}, 15 | "east": {"uv": [4, 12, 6, 10], "texture": "#0"}, 16 | "south": {"uv": [4, 12, 12, 10], "texture": "#0"}, 17 | "west": {"uv": [10, 12, 12, 10], "texture": "#0"}, 18 | "up": {"uv": [4, 12, 12, 10], "rotation": 180, "texture": "#0"}, 19 | "down": {"uv": [4, 12, 12, 10], "texture": "#2"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /config/structurescompass-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #configs only for clients 3 | [Client] 4 | # 5 | #The Y offset for information rendered on the HUD.(default:16) 6 | #Range: 0 ~ 5400 7 | yOffset = 16 8 | # 9 | #The X offset for information rendered on the HUD.(default:7) 10 | #Range: 0 ~ 9600 11 | xOffset = 7 12 | # 13 | #The X/Y/Z-distance won't be shown if it is smaller than the value.(default:0.3) 14 | #Range: 0.0 ~ 50.0 15 | CloseEnough = 0.3 16 | # 17 | #The line offset for information rendered on the HUD.(default:1) 18 | #Range: 0 ~ 50 19 | OverlayLineOffset = 1 20 | # 21 | #The side of the information HUD. Ex: LEFT, RIGHT 22 | #Allowed Values: LEFT, RIGHT 23 | HUDPosition = "LEFT" 24 | # 25 | #Displays the compass information HUD even while chat is open.(default:true) 26 | DisplayWithChatOpen = true 27 | 28 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/mansions.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Repurposed Structures Mansions. 3 | # 1 for spawning in most chunks and 1001 for none. 4 | #Range: 1 ~ 1001 5 | mansionBirchMaxChunkDistance = 180 6 | #Range: 1 ~ 1001 7 | mansionJungleMaxChunkDistance = 225 8 | #Range: 1 ~ 1001 9 | mansionOakMaxChunkDistance = 205 10 | #Range: 1 ~ 1001 11 | mansionSavannaMaxChunkDistance = 225 12 | #Range: 1 ~ 1001 13 | mansionTaigaMaxChunkDistance = 205 14 | #Range: 1 ~ 1001 15 | mansionDesertMaxChunkDistance = 225 16 | #Range: 1 ~ 1001 17 | mansionSnowyMaxChunkDistance = 225 18 | # 19 | # Only make supports downward if there is land below. 20 | # (Helps make structure look better in floating island worlds instead of support going down to void at world bottom) 21 | pillarOnlyToLand = true 22 | 23 | -------------------------------------------------------------------------------- /config/ChickenChunks.cfg: -------------------------------------------------------------------------------- 1 | # If Players with OP permissions bypass chunk loading restrictions. 2 | B:"opsBypassRestrictions"=false 3 | 4 | # If Players with OP permissions can manage other users ChunkLoaders 5 | B:"opsAccessAllLoaders"=true 6 | 7 | # If chunks should stay loaded when a ChunkLoader's owner is offline. 8 | B:"allowOffline"=true 9 | 10 | # How long in minutes ChickenChunks should wait after a Player logs out to unload their chunks. Only effective when allowOffline=false 11 | I:"offlineTimeout"=0 12 | 13 | # The number of chunks each player is allowed to load in total. 14 | I:"totalAllowedChunks"=5000 15 | 16 | # The number of chunks each ChunkLoader is allowed to load in total. 17 | I:"chunksPerLoader"=400 18 | 19 | # Specifies restrictions for each player, Use /chickenchunks instead. 20 | "playerRestrictions" { 21 | } 22 | -------------------------------------------------------------------------------- /config/repurposed_structures-forge/fortresses.toml: -------------------------------------------------------------------------------- 1 | # 2 | # Average distance between spawn attempts for Jungle Fortresses. 3 | # 1 for spawning in most chunks and 1001 for no spawn. 4 | #Range: 1 ~ 1001 5 | jungleFortressMaxChunkDistance = 50 6 | # 7 | # Size of the fortress. This is how many pieces long a branch can be from the start piece. 8 | #Range: 1 ~ 30 9 | jungleFortressSize = 10 10 | # 11 | # Min Y height that the starting point can spawn at. 12 | #Range: 0 ~ 255 13 | jungleFortressMinHeight = 56 14 | # 15 | # Max Y height that the starting point can spawn at. 16 | # 17 | #If below min height, this will be read as min. 18 | #Range: 0 ~ 255 19 | jungleFortressMaxHeight = 63 20 | # 21 | # How far above or below the fortress's pieces can generate away from the center piece. 22 | #Range: 0 ~ 255 23 | jungleFortressVerticalRange = 33 24 | 25 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/models/block/bottom_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "prettypipes:block/pipe_rims", 5 | "2": "prettypipes:block/pipe_rims_inner", 6 | "particle": "prettypipes:block/pipe_rims" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [4, 4, 10], 11 | "to": [12, 6, 12], 12 | "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, 13 | "faces": { 14 | "north": {"uv": [4, 10, 12, 12], "texture": "#2"}, 15 | "east": {"uv": [4, 10, 6, 12], "texture": "#0"}, 16 | "south": {"uv": [4, 10, 12, 12], "texture": "#0"}, 17 | "west": {"uv": [10, 10, 12, 12], "texture": "#0"}, 18 | "up": {"uv": [4, 10, 12, 12], "texture": "#2"}, 19 | "down": {"uv": [4, 10, 12, 12], "rotation": 180, "texture": "#0"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/models/block/top_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "prettypipes:block/pipe_rims", 5 | "2": "prettypipes:block/pipe_rims_inner", 6 | "particle": "prettypipes:block/pipe_rims" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [4, 10, 10], 11 | "to": [12, 12, 12], 12 | "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, 13 | "faces": { 14 | "north": {"uv": [4, 12, 12, 10], "texture": "#2"}, 15 | "east": {"uv": [4, 12, 6, 10], "texture": "#0"}, 16 | "south": {"uv": [4, 12, 12, 10], "texture": "#0"}, 17 | "west": {"uv": [10, 12, 12, 10], "texture": "#0"}, 18 | "up": {"uv": [4, 12, 12, 10], "rotation": 180, "texture": "#0"}, 19 | "down": {"uv": [4, 12, 12, 10], "texture": "#2"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/metalbarrels/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.metalbarrels.copper_barrel": "Tinker's Bronze Barrel", 3 | "item.metalbarrels.copper_barrel": "Tinker's Bronze Barrel", 4 | "block.metalbarrels.silver_barrel": "Arcane Barrel", 5 | "item.metalbarrels.silver_barrel": "Arcane Barrel", 6 | "block.metalbarrels.gold_barrel": "Cobalt Barrel", 7 | "item.metalbarrels.gold_barrel": "Cobalt Barrel", 8 | "block.metalbarrels.iron_barrel": "Silica Steel Barrel", 9 | "item.metalbarrels.iron_barrel": "Silica Steel Barrel", 10 | "item.metalbarrels.wood_to_copper": "Tinker's Bronze Barrel Upgrade", 11 | "item.metalbarrels.wood_to_iron": "Silica Steel Barrel Upgrade", 12 | "item.metalbarrels.wood_to_silver": "Arcane Barrel Upgrade", 13 | "item.metalbarrels.wood_to_gold": "Cobalt Barrel Upgrade" 14 | } -------------------------------------------------------------------------------- /config/backtools.toml: -------------------------------------------------------------------------------- 1 | 2 | #These options affect only the client that loads the mod. 3 | [clientOnly] 4 | #Enabled tools, by their resource name. Eg: minecraft:diamond_hoe. Putting any entry in this converts BackTools to a whitelist-only mod. Disabled Tools will be ignored. 5 | enabledTools = [] 6 | #Disabled tools, by their resource name. Eg: minecraft:diamond_hoe 7 | disabledTools = [] 8 | #Some nbt tags will cause back tools to appear improperly. Use this setting to cleanse the item tags. 9 | nbtCleaner = ["Damage", "Charged", "ChargedProjectiles"] 10 | #Tool orientation, by class file and degrees. Separate with ":" . See defaults for examples. 11 | toolOrientation = ["net.minecraft.item.ToolItem:180", "net.minecraft.item.HoeItem:180", "net.minecraft.item.FishingRodItem:180", "net.minecraft.item.TridentItem:180", "net.minecraft.item.ShootableItem:90"] 12 | 13 | -------------------------------------------------------------------------------- /config/biomesoplenty/generation.toml: -------------------------------------------------------------------------------- 1 | 2 | #World generation related options. 3 | [overworld] 4 | #Type of rainfall zones to use during biome placement. 5 | #Allowed Values: SMALL_ZONES, MEDIUM_ZONES, LARGE_ZONES, RANDOM 6 | rainfall_variation_scheme = "MEDIUM_ZONES" 7 | #Enhance vanilla biomes by adding additional decoration. 8 | enhance_vanilla_biomes = true 9 | #The size of generated biomes. 10 | #Allowed Values: TINY, SMALL, MEDIUM, LARGE, HUGE 11 | biome_size = "MEDIUM" 12 | #Type of temperature zones to use during biome placement. 13 | #Allowed Values: LATITUDE, SMALL_ZONES, MEDIUM_ZONES, LARGE_ZONES, RANDOM 14 | temperature_variation_scheme = "MEDIUM_ZONES" 15 | #Enable nether generation from Biomes O' Plenty. 16 | use_bop_nether = true 17 | #The size of generated rivers. 18 | #Allowed Values: TINY, SMALL, MEDIUM, LARGE, HUGE 19 | river_size = "MEDIUM" 20 | 21 | -------------------------------------------------------------------------------- /config/cofh_core-client.toml: -------------------------------------------------------------------------------- 1 | 2 | [Tooltips] 3 | #If TRUE and Advanced Tooltips are enabled (F3+H), Tags will be will be added to item tooltips if possible. 4 | "Show Item Tags" = true 5 | #If TRUE, CoFH Items will display a message prompting to hold Shift to see full details (charge state, etc.). This does not change the behavior, only if the informational message should display. 6 | "Show 'Hold Shift for Details' Message" = true 7 | #If TRUE, CoFH Items will always show full details (charge state, etc.) and will not require Shift to be held down. 8 | "Always Show Item Details" = false 9 | #If TRUE, Item descriptions will be added to their tooltips if possible. 10 | "Show Item Descriptions" = true 11 | #If TRUE, Enchantment descriptions will be added to the tooltip for Enchanted Books containing only a single enchantment. 12 | "Show Enchantment Descriptions" = true 13 | 14 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/pipez/models/block/side_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "pipez:block/pipe_rims", 5 | "2": "pipez:block/pipe_rims_inner", 6 | "particle": "pipez:block/pipe_rims" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [4, 4, 10], 11 | "to": [6, 12, 12], 12 | "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, 13 | "faces": { 14 | "north": {"uv": [4, 12, 12, 10], "rotation": 90, "texture": "#2"}, 15 | "east": {"uv": [4, 12, 12, 10], "rotation": 270, "texture": "#2"}, 16 | "south": {"uv": [4, 12, 12, 10], "rotation": 270, "texture": "#0"}, 17 | "west": {"uv": [4, 12, 12, 10], "rotation": 90, "texture": "#0"}, 18 | "up": {"uv": [4, 12, 6, 10], "rotation": 270, "texture": "#0"}, 19 | "down": {"uv": [10, 12, 12, 10], "rotation": 270, "texture": "#0"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /kubejs/server_scripts/quests.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | events.listen('ftbquests.custom_reward', function (event) { 4 | let reward = event.getReward() 5 | let id = reward.quest.getCodeString() 6 | 7 | let runCommand = (cmd) => { 8 | event.server.schedule(10, event.server, function (callback) { 9 | callback.data.runCommandSilent(cmd) 10 | }) 11 | } 12 | 13 | if (reward.hasTag('reset')) 14 | runCommand('/ftbquests change_progress ' + event.player.name + ' reset ' + id) 15 | 16 | if (reward.hasTag('bad_omen')) 17 | runCommand('/effect clear ' + event.player.name + ' minecraft:bad_omen') 18 | 19 | if (reward.hasTag('fortress')) 20 | event.server.schedule(10, event.server, function (callback) { 21 | callback.data.runCommand('/execute as ' + event.player.name + ' in minecraft:the_nether run locate fortress') 22 | }) 23 | 24 | }) -------------------------------------------------------------------------------- /kubejs/data/extcaves/loot_tables/blocks/lavastone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "functions": [ 10 | { 11 | "function": "minecraft:set_count", 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:block_state_property", 15 | "block": "extcaves:lavastone_slab", 16 | "properties": { 17 | "type": "double" 18 | } 19 | } 20 | ], 21 | "count": 2 22 | }, 23 | { 24 | "function": "minecraft:explosion_decay" 25 | } 26 | ], 27 | "name": "extcaves:lavastone_slab" 28 | } 29 | ] 30 | } 31 | ] 32 | } -------------------------------------------------------------------------------- /config/constructionwand-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #This is the Client config for ConstructionWand. 3 | #If you're not familiar with Forge's new split client/server config, let me explain: 4 | #Client config is stored in the /config folder and only contains client specific settings like graphics and keybinds. 5 | #Mod behavior is configured in the Server config, which is world-specific and thus located 6 | #in the /saves/myworld/serverconfig folder. If you want to change the serverconfig for all 7 | #new worlds, copy the config files in the /defaultconfigs folder. 8 | [keys] 9 | #Key code of OPTKEY (Default: Left Control). Look up key codes under https://www.glfw.org/docs/3.3/group__keys.html 10 | #Range: 0 ~ 350 11 | OptKey = 341 12 | #Press SNEAK+OPTKEY instead of SNEAK for changing wand mode/direction lock 13 | ShiftOpt = false 14 | #Press SNEAK+OPTKEY instead of SNEAK for opening wand GUI 15 | ShiftOptGUI = true 16 | 17 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/prettypipes/models/block/side_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "textures": { 4 | "0": "prettypipes:block/pipe_rims", 5 | "2": "prettypipes:block/pipe_rims_inner", 6 | "particle": "prettypipes:block/pipe_rims" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [4, 4, 10], 11 | "to": [6, 12, 12], 12 | "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, 13 | "faces": { 14 | "north": {"uv": [4, 12, 12, 10], "rotation": 90, "texture": "#2"}, 15 | "east": {"uv": [4, 12, 12, 10], "rotation": 270, "texture": "#2"}, 16 | "south": {"uv": [4, 12, 12, 10], "rotation": 270, "texture": "#0"}, 17 | "west": {"uv": [4, 12, 12, 10], "rotation": 90, "texture": "#0"}, 18 | "up": {"uv": [4, 12, 6, 10], "rotation": 270, "texture": "#0"}, 19 | "down": {"uv": [10, 12, 12, 10], "rotation": 270, "texture": "#0"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /kubejs/data/extcaves/loot_tables/blocks/polished_lavastone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "functions": [ 10 | { 11 | "function": "minecraft:set_count", 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:block_state_property", 15 | "block": "extcaves:polished_lavastone_slab", 16 | "properties": { 17 | "type": "double" 18 | } 19 | } 20 | ], 21 | "count": 2 22 | }, 23 | { 24 | "function": "minecraft:explosion_decay" 25 | } 26 | ], 27 | "name": "extcaves:polished_lavastone_slab" 28 | } 29 | ] 30 | } 31 | ] 32 | } -------------------------------------------------------------------------------- /config/craftingtweaks-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Crafting Tweaks Client Configuration 3 | [client] 4 | #Set this to true if you don't want the tweak buttons' tooltips to show. 5 | hideButtonTooltips = false 6 | #This option is toggled by the 'Toggle Buttons' key that can be defined in the Controls settings. 7 | hideButtons = false 8 | #We both know JEI is much better. This option hides Vanilla's crafting book button instead of moving it. 9 | hideVanillaCraftingGuide = false 10 | #Add modids here of mods that you wish to disable Crafting Tweaks support for. 11 | disabledAddons = [] 12 | #Set to 'DEFAULT' to enable both buttons and hotkeys. Set to 'BUTTONS' to enable buttons only. Set to 'HOTKEYS' to enable hotkeys only. 13 | #Allowed Values: DEFAULT, BUTTONS, HOTKEYS, DISABLED 14 | craftingTweaksMode = "DEFAULT" 15 | #If set to true, right-clicking the result slot in a crafting table will craft a full stack. 16 | rightClickCraftsStack = true 17 | 18 | -------------------------------------------------------------------------------- /config/tconstruct-client.toml: -------------------------------------------------------------------------------- 1 | 2 | #Client only settings 3 | [client] 4 | #If true tools will show additional info in their tooltips 5 | extraToolTips = true 6 | #Experimental. If true, renders fluids in tanks using a dynamic model, being more efficient when the tank is static 7 | #If false, renders fluids in tanks using a TESR, which is more efficient when the tank contents are changing 8 | tankFluidModel = false 9 | #If true, the game will log all modifier textures which do not exist in resource packs but can be added, can be helpful for moddevs or resourcepack makers 10 | logMissingModifierTextures = false 11 | #If true, modifiers will be added to the JEI ingredient list. If false, they will only be visible in the modifiers recipe tab. 12 | showModifiersInJEI = true 13 | #If true, the game will log all material textures which do not exist in resource packs but can be added, can be helpful for moddevs or resourcepack makers 14 | logMissingMaterialTextures = false 15 | 16 | -------------------------------------------------------------------------------- /config/betteradvancements-client.toml: -------------------------------------------------------------------------------- 1 | defaultUncompletedIconColor = "#FFFFFF" 2 | defaultUncompletedTitleColor = "#0489C1" 3 | defaultCompletedIconColor = "#DBA213" 4 | defaultCompletedTitleColor = "#DBA213" 5 | doAdvancementsBackgroundFade = true 6 | showDebugCoordinates = false 7 | orderTabsAlphabetically = false 8 | #Values below 50% might give odd results, use on own risk ;) 9 | #Range: 1 ~ 100 10 | uiScaling = 100 11 | #Lists the criteria for partially completed advancements, e.g. the biomes required for 'Adventuring Time' 12 | # Off: Vanilla default 13 | # Default: List which criteria you have already obtained 14 | # Spoiler: Only reveal unobtained criteria 15 | # All: Show both obtained and unobtained criteria 16 | criteriaDetail = "Default" 17 | criteriaDetailRequiresShift = false 18 | addInventoryButton = false 19 | defaultDrawDirectLines = false 20 | defaultHideLines = false 21 | defaultCompletedLineColor = "#FFFFFF" 22 | defaultUncompletedLineColor = "#FFFFFF" 23 | 24 | -------------------------------------------------------------------------------- /openloader/resources/simis_edits/assets/advancedrocketry/blockstates/moonturf.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "advancedrocketry:block/moon_turf" 6 | }, 7 | { 8 | "model": "advancedrocketry:block/moon_turf", 9 | "y": 90 10 | }, 11 | { 12 | "model": "advancedrocketry:block/moon_turf_1" 13 | }, 14 | { 15 | "model": "advancedrocketry:block/moon_turf_2" 16 | }, 17 | { 18 | "model": "advancedrocketry:block/moon_turf_2", 19 | "y": 90 20 | }, 21 | { 22 | "model": "advancedrocketry:block/moon_turf_2", 23 | "y": 180 24 | }, 25 | { 26 | "model": "advancedrocketry:block/moon_turf_2", 27 | "y": 270 28 | } 29 | ] 30 | } 31 | } --------------------------------------------------------------------------------