├── .github └── workflows │ ├── ModsDownload.yml │ └── blank.yml ├── .gitignore ├── .minecraft ├── config │ ├── AE2WirelessTerminals.cfg │ ├── AppliedEnergistics2 │ │ ├── AppliedEnergistics2.cfg │ │ └── Facades.cfg │ ├── BlockDrops │ │ └── config.cfg │ ├── Building Gadgets.cfg │ ├── DankNull.cfg │ ├── InvTweaks.cfg │ ├── InvTweaks │ │ ├── InvTweaksRules.txt │ │ ├── InvTweaksTree.txt │ │ └── trees │ │ │ └── readme.txt │ ├── InvTweaksRules.txt │ ├── JustEnoughCalculation │ │ ├── main.cfg │ │ └── record.json │ ├── JustEnoughCharacters.cfg │ ├── MatterOverdrive │ │ ├── MatterOverdrive.cfg │ │ └── recipes │ │ │ └── inscriber.xml │ ├── MoreOverlays.cfg │ ├── Netherending Ores.cfg │ ├── NonUpdate.cfg │ ├── NotEnoughEnergistics.cfg │ ├── OreDictInit.cfg │ ├── PlusTweaks.cfg │ ├── Probe.cfg │ ├── ScalingGUIs │ │ ├── ScalingGUIs.cfg │ │ └── ScalingGUIsCustomScales.json │ ├── Waystones.cfg │ ├── acronym │ │ ├── base │ │ │ └── General.cfg │ │ ├── contenttweaker │ │ │ └── General.cfg │ │ └── material_system.cfg │ ├── actuallyadditions.cfg │ ├── adlods │ │ ├── Deposits │ │ │ ├── aluminum.cfg │ │ │ ├── amethyst.cfg │ │ │ ├── coal.cfg │ │ │ ├── cobalt.cfg │ │ │ ├── copper.cfg │ │ │ ├── diamond.cfg │ │ │ ├── emerald.cfg │ │ │ ├── gold.cfg │ │ │ ├── iridium.cfg │ │ │ ├── iron.cfg │ │ │ ├── ironcoal_ore.cfg │ │ │ ├── lapis.cfg │ │ │ ├── lead.cfg │ │ │ ├── nickel.cfg │ │ │ ├── palladium.cfg │ │ │ ├── platinum.cfg │ │ │ ├── redstone.cfg │ │ │ ├── rhodium.cfg │ │ │ ├── ruby.cfg │ │ │ ├── ruthenium.cfg │ │ │ ├── sapphire.cfg │ │ │ ├── silver.cfg │ │ │ ├── tin.cfg │ │ │ ├── topaz.cfg │ │ │ ├── uranium.cfg │ │ │ └── zinc.cfg │ │ ├── VanillaGen │ │ │ ├── andesite.cfg │ │ │ ├── coal.cfg │ │ │ ├── custom.cfg │ │ │ ├── diamond.cfg │ │ │ ├── diorite.cfg │ │ │ ├── dirt.cfg │ │ │ ├── emerald.cfg │ │ │ ├── gold.cfg │ │ │ ├── granite.cfg │ │ │ ├── gravel.cfg │ │ │ ├── iron.cfg │ │ │ ├── lapis.cfg │ │ │ ├── quartz.cfg │ │ │ ├── redstone.cfg │ │ │ └── silverfish.cfg │ │ └── adlods.cfg │ ├── advRocketry │ │ ├── Centrifuge.xml │ │ ├── ChemicalReactor.xml │ │ ├── Crystallizer.xml │ │ ├── CuttingMachine.xml │ │ ├── ElectricArcFurnace.xml │ │ ├── Electrolyser.xml │ │ ├── Lathe.xml │ │ ├── PrecisionAssembler.xml │ │ ├── PrecisionLaserEtcher.xml │ │ ├── RollingMachine.xml │ │ ├── SmallPlatePress.xml │ │ ├── advancedRocketry.cfg │ │ ├── asteroidConfig.xml │ │ ├── oreConfig.xml │ │ └── planetDefs.xml │ ├── aireducer.cfg │ ├── aireducer │ │ └── taskDelay.json │ ├── akashictome.cfg │ ├── appleskin.cfg │ ├── artisanautomation │ │ └── module.Automator.cfg │ ├── artisanintegrations │ │ ├── module.Botania.cfg │ │ ├── module.botania.Tools-Custom.json │ │ └── module.botania.Tools-Generated.json │ ├── artisanworktables │ │ ├── module.Toolbox.cfg │ │ ├── module.Tools.Materials.Custom.json │ │ ├── module.Tools.Materials.Generated.json │ │ ├── module.Tools.cfg │ │ └── module.Worktables.cfg │ ├── asmc.cfg │ ├── athenaeum │ │ └── athenaeum.cfg │ ├── baubles.cfg │ ├── bbm │ │ └── AI_Improvements.cfg │ ├── bedrockores.cfg │ ├── bedrockores │ │ ├── _example.json │ │ ├── aluminum.json │ │ ├── aluminum_under.json │ │ ├── amethyst.json │ │ ├── boron_under.json │ │ ├── coal.json │ │ ├── copper.json │ │ ├── copper_nether.json │ │ ├── diamond.json │ │ ├── diamond_under.json │ │ ├── emerald.json │ │ ├── emerald_under.json │ │ ├── gold.json │ │ ├── gold_nether.json │ │ ├── gold_under.json │ │ ├── iridium_nether.json │ │ ├── iron.json │ │ ├── iron_nether.json │ │ ├── iron_under.json │ │ ├── lapis.json │ │ ├── lead.json │ │ ├── lead_nether.json │ │ ├── lithium_under.json │ │ ├── magnesium_under.json │ │ ├── nickel.json │ │ ├── nickel_under.json │ │ ├── osmium_nether.json │ │ ├── platinum_nether.json │ │ ├── quartz.json │ │ ├── quartz_nether.json │ │ ├── redstone.json │ │ ├── rime.json │ │ ├── silver.json │ │ ├── silver_nether.json │ │ ├── thorium_under.json │ │ ├── tin.json │ │ ├── tin_nether.json │ │ └── uranium_under.json │ ├── betteradvancements │ │ └── betteradvancements.cfg │ ├── betteranimalsplus.cfg │ ├── bettermineshafts-1_12_2.cfg │ ├── biomesoplenty │ │ ├── biome_ids.json │ │ ├── gameplay.cfg │ │ └── misc.cfg │ ├── bloodmagic │ │ ├── bloodmagic.cfg │ │ ├── meteors │ │ │ ├── diamond.json │ │ │ ├── gold.json │ │ │ └── iron.json │ │ └── rituals.cfg │ ├── bookshelf.cfg │ ├── botania.cfg │ ├── botanianeedsit.cfg │ ├── botaniatweaks.cfg │ ├── bountifulbaubles.cfg │ ├── brandon3055 │ │ ├── BrandonsCore.cfg │ │ ├── Custom Fusion Recipe Info.txt │ │ ├── DraconicEvolution.cfg │ │ └── ProjectIntelligence │ │ │ ├── ModDocs │ │ │ └── Draconic Evolution │ │ │ │ └── draconicevolution-en_US.xml │ │ │ ├── manifest.json │ │ │ ├── options.json │ │ │ └── projectintelligence.xml │ ├── bringmetherings.cfg │ ├── carryon.cfg │ ├── chisel.cfg │ ├── chunkgenlimit.cfg │ ├── codechickenlib.cfg │ ├── cofh │ │ ├── core │ │ │ ├── client.cfg │ │ │ ├── common.cfg │ │ │ └── friends.cfg │ │ ├── thermaldynamics │ │ │ ├── client.cfg │ │ │ ├── common.cfg │ │ │ └── cover_blacklist.json │ │ ├── thermalfoundation │ │ │ ├── client.cfg │ │ │ ├── common.cfg │ │ │ └── lexicon-whitelist.cfg │ │ └── world │ │ │ ├── 00_minecraft.json │ │ │ ├── 01_thermalfoundation_ores.json │ │ │ ├── 02_thermalfoundation_oil.json │ │ │ ├── 03_thermalfoundation_clathrates.json │ │ │ ├── config.cfg │ │ │ ├── dim-1_nether_ores.json │ │ │ ├── dim-9_underworld_ores.json │ │ │ ├── dim0_overworld_ores.json │ │ │ └── dim1_the_end_ores.json │ ├── commoncapabilities.cfg │ ├── compactdrawers.cfg │ ├── compactmachines3 │ │ ├── recipes │ │ │ ├── compressed_crystaltin.json │ │ │ ├── gravitational_anomaly_container.json │ │ │ └── industrial_insulation.json │ │ └── settings.cfg │ ├── consolefilter.cfg │ ├── cookingforblockheads.cfg │ ├── craftingtweaks.cfg │ ├── ctm.cfg │ ├── cyclopscore.cfg │ ├── deepmoblearning.cfg │ ├── deepmoblearningbm.cfg │ ├── dimensionalcontrol │ │ ├── DimensionalControl.cfg │ │ └── Dimensions.cfg │ ├── dropt.module.Dropt.cfg │ ├── elevatorid.cfg │ ├── embers.cfg │ ├── endercore │ │ ├── cropconfig.json │ │ └── endercore.cfg │ ├── enderio │ │ ├── enderio.cfg │ │ ├── enderioconduits.cfg │ │ ├── enderioendergy.cfg │ │ ├── enderiointegrationforestry.cfg │ │ ├── enderioinvpanel.cfg │ │ ├── enderiomachines.cfg │ │ ├── enderiopowertools.cfg │ │ ├── gasconduits.cfg │ │ └── recipes │ │ │ └── user │ │ │ ├── alloy.xml │ │ │ ├── endergy.xml │ │ │ ├── materials.xml │ │ │ ├── misc.xml │ │ │ ├── spawner.xml │ │ │ ├── tank.xml │ │ │ ├── user_recipes.xml │ │ │ └── vat.xml │ ├── enderstorage.cfg │ ├── extendedcrafting.cfg │ ├── extrautils2.cfg │ ├── familiarfauna │ │ ├── butterfly_biomes.json │ │ ├── config.cfg │ │ ├── deer_biomes.json │ │ ├── dragonfly_biomes.json │ │ ├── pixie_biomes.json │ │ ├── snail_biomes.json │ │ └── turkey_biomes.json │ ├── fancymenu │ │ ├── config.txt │ │ ├── customizablemenus.txt │ │ └── menu_identifiers.db │ ├── fantasticlib.cfg │ ├── fastbench.cfg │ ├── fastfurnace.cfg │ ├── fastleafdecay.cfg │ ├── flopper.cfg │ ├── fluiddrawers.cfg │ ├── foamfix.cfg │ ├── forge.cfg │ ├── forgeChunkLoading.cfg │ ├── forgeendertech │ │ ├── Biomes │ │ │ ├── beaches.cfg │ │ │ ├── desert.cfg │ │ │ ├── extreme_hills.cfg │ │ │ ├── forest.cfg │ │ │ ├── hell.cfg │ │ │ ├── jungle.cfg │ │ │ ├── lostcities.cfg │ │ │ ├── plains.cfg │ │ │ ├── river.cfg │ │ │ ├── savanna.cfg │ │ │ ├── swampland.cfg │ │ │ ├── taiga.cfg │ │ │ └── the_end.cfg │ │ └── forgeendertech.cfg │ ├── fpsreducer │ │ └── fpsreducer.cfg │ ├── ftbbackups.cfg │ ├── ftblib.cfg │ ├── ftbquests │ │ └── normal │ │ │ ├── chapters │ │ │ └── index.snbt │ │ │ ├── file.snbt │ │ │ └── reward_tables │ │ │ └── index.snbt │ ├── ftbultimine.cfg │ ├── ftbutilities.cfg │ ├── gamestages.cfg │ ├── gugu-utils.cfg │ ├── hardcoreitemstages.cfg │ ├── harvestcraft.cfg │ ├── harvestcraft_fruittree.cfg │ ├── ido │ │ └── ido.cfg │ ├── immersiveengineering.cfg │ ├── integrateddynamics.cfg │ ├── integrateddynamics │ │ └── _override │ │ │ ├── mechanical_squeezer.xml │ │ │ ├── mechanical_squeezer_convenience.xml │ │ │ ├── mechanical_squeezer_ores.xml │ │ │ ├── squeezer.xml │ │ │ ├── squeezer_convenience.xml │ │ │ └── squeezer_ores.xml │ ├── integrateddynamicscompat.cfg │ ├── integratedtunnels.cfg │ ├── integratedtunnelscompat.cfg │ ├── ironchest.cfg │ ├── itemstages.cfg │ ├── itemzoom.cfg │ ├── jei │ │ ├── jei.cfg │ │ └── searchColors.cfg │ ├── jeivillagers.cfg │ ├── jeresources │ │ └── jeresources.cfg │ ├── justenoughdimensions │ │ ├── dimensions.json │ │ └── justenoughdimensions.cfg │ ├── kac.xml │ ├── lesslag.cfg │ ├── librarianlib.cfg │ ├── libvulpes.cfg │ ├── lightningcraft.cfg │ ├── loottweaker.cfg │ ├── mcjtylib.cfg │ ├── mekanism.cfg │ ├── mekanism │ │ └── BoxBlacklist.txt │ ├── memorycleaner.cfg │ ├── modnametooltip.cfg │ ├── modulardiversity.cfg │ ├── modularmachinery │ │ ├── machinery │ │ │ ├── aura_collector.json │ │ │ ├── aura_perfusion_changer.json │ │ │ ├── big_embers_furnace.json │ │ │ ├── decipherer.json │ │ │ ├── electronic_assembly_machine.json │ │ │ ├── electronic_assembly_machine_mk1.json │ │ │ ├── electronic_assembly_machine_mk2.json │ │ │ ├── embers_perfusioner.json │ │ │ ├── experimental_stargate.json │ │ │ ├── fmph_mk1.json │ │ │ ├── fmph_mk2.json │ │ │ ├── fmph_mk3.json │ │ │ ├── fmph_mk4.json │ │ │ ├── fmph_mk5.json │ │ │ ├── fractionator.json │ │ │ ├── high_energy_shredder.json │ │ │ ├── ordinary_thermal_boilers.json │ │ │ ├── ordinary_turbines.json │ │ │ ├── runes_engraving.json │ │ │ ├── stargate.json │ │ │ └── variables │ │ │ │ └── casings.var.json │ │ └── modularmachinery.cfg │ ├── morphtool.cfg │ ├── multiblocked.cfg │ ├── multiblocked │ │ ├── assets │ │ │ └── multiblocked │ │ │ │ ├── animations │ │ │ │ ├── mana_remover.animation.json │ │ │ │ └── turbine_generator.animation.json │ │ │ │ ├── geo │ │ │ │ ├── mana_remover.geo.json │ │ │ │ └── turbine_generator.geo.json │ │ │ │ ├── models │ │ │ │ ├── mana_remover_controller.json │ │ │ │ ├── refinery_controller.json │ │ │ │ ├── steam_boiler_controller.json │ │ │ │ └── turbine_generator_controller.json │ │ │ │ ├── obj │ │ │ │ ├── beacon_light_beam_assembly_machine.mtl │ │ │ │ ├── beacon_light_beam_assembly_machine.obj │ │ │ │ ├── boiler.mtl │ │ │ │ ├── boiler.obj │ │ │ │ ├── boiler_controller.mtl │ │ │ │ ├── boiler_controller.obj │ │ │ │ ├── boiler_light.mtl │ │ │ │ ├── boiler_light.obj │ │ │ │ ├── distillation_tower.mtl │ │ │ │ ├── distillation_tower.obj │ │ │ │ ├── mana_remover.mtl │ │ │ │ ├── mana_remover.obj │ │ │ │ ├── refinery.mtl │ │ │ │ ├── refinery.obj │ │ │ │ ├── steam_boiler.mtl │ │ │ │ ├── steam_boiler.obj │ │ │ │ ├── steam_boiler_light.mtl │ │ │ │ ├── steam_boiler_light.obj │ │ │ │ ├── turbine_generator.mtl │ │ │ │ └── turbine_generator.obj │ │ │ │ └── textures │ │ │ │ ├── beacon_light_beam_assembly_machine.png │ │ │ │ ├── boiler.png │ │ │ │ ├── boiler_controller.png │ │ │ │ ├── boiler_light.png │ │ │ │ ├── controller │ │ │ │ ├── chiseledmanaquartz1.png │ │ │ │ ├── mana_remover_controller.png │ │ │ │ ├── refinery_controller.png │ │ │ │ ├── steam_boiler.png │ │ │ │ ├── turbine_controller.png │ │ │ │ └── turbine_controller_surface.png │ │ │ │ ├── mana_remover.png │ │ │ │ ├── refinery.png │ │ │ │ ├── steam_boiler_controller.png │ │ │ │ ├── steam_boiler_controller_light.png │ │ │ │ ├── steam_boiler_controller_light.png.mcmeta │ │ │ │ ├── steam_boiler_export.png │ │ │ │ └── turbine_generator.png │ │ ├── definition │ │ │ ├── controller │ │ │ │ ├── minecraft_mana_remover.json │ │ │ │ ├── mod_id_component_id.json │ │ │ │ ├── mod_id_turbine_id.json │ │ │ │ └── multiblocked_steam_boiler.json │ │ │ └── part │ │ │ │ └── mod_id_component_id.json │ │ └── recipe_map │ │ │ ├── Mana_remove.json │ │ │ ├── refinery.json │ │ │ ├── steam_boiler_itemfuel.json │ │ │ └── turbine.json │ ├── mysticalworld.cfg │ ├── naturesaura.cfg │ ├── naturescompass.cfg │ ├── netherex │ │ └── netherex.cfg │ ├── nuclearcraft.cfg │ ├── nuclearcraft.info │ ├── openglider.cfg │ ├── p455w0rdsLib.cfg │ ├── packagedauto.cfg │ ├── packagedexcrafting.cfg │ ├── particleculling.cfg │ ├── patchouli.cfg │ ├── performant.cfg │ ├── phosphor.json │ ├── placebo.cfg │ ├── pneumaticcraft.cfg │ ├── pneumaticcraft │ │ ├── AmadronOffersPeriodic.cfg │ │ ├── AmadronOffersStatic.cfg │ │ ├── AmadronTradingSettings.cfg │ │ ├── BlockHeatProperties.cfg │ │ ├── HelmetWidgetDefaults.cfg │ │ ├── MicromissileDefaults.cfg │ │ ├── PneumaticArmorHUDLayout.cfg │ │ ├── ProgrammingPuzzleBlacklist.cfg │ │ └── thirdparty.cfg │ ├── pouchofunknown.cfg │ ├── primal_tech.cfg │ ├── psi.cfg │ ├── quark.cfg │ ├── randompatches.cfg │ ├── randomtweaker.cfg │ ├── recipestages.cfg │ ├── refraction.cfg │ ├── requious.cfg │ ├── requious │ │ ├── assembly.json │ │ ├── battery.json │ │ ├── fluid_cell.json │ │ ├── fluid_emitter.json │ │ └── red_emitter.json │ ├── resourcepackorganizer.cfg │ ├── rftools │ │ ├── control.cfg │ │ └── rftools.cfg │ ├── roots │ │ ├── crops.cfg │ │ ├── elemental_soil.cfg │ │ ├── entity.cfg │ │ ├── general.cfg │ │ ├── moss.cfg │ │ ├── rituals.cfg │ │ ├── runed_wood.cfg │ │ ├── spells.cfg │ │ └── tools.cfg │ ├── rpintegration.cfg │ ├── scalinghealth │ │ └── main.cfg │ ├── simplyjetpacks │ │ ├── client.cfg │ │ └── common.cfg │ ├── smoothfont │ │ └── smoothfont.cfg │ ├── snad.cfg │ ├── snowrealmagic.cfg │ ├── solcarrot.cfg │ ├── stageviewerconfig.cfg │ ├── storagedrawers.cfg │ ├── surge.cfg │ ├── survivalist.cfg │ ├── tellme.cfg │ ├── teslacorelib.cfg │ ├── teslathingies │ │ ├── compound_maker-base.json │ │ ├── fluid_burner_coolant-base.json │ │ ├── fluid_burner_fuel-base.json │ │ ├── fluid_compound_producer-base.json │ │ ├── incinerator-base.json │ │ ├── item_compound_producer-base.json │ │ ├── item_liquefier-base.json │ │ ├── powder_maker-base.json │ │ ├── powered_kiln-base.json │ │ └── tree_farm-base.json │ ├── tetra │ │ └── tetra.cfg │ ├── theoneprobe.cfg │ ├── togetherforever.cfg │ ├── tombstone.cfg │ ├── toolbelt.cfg │ ├── topaddons.cfg │ ├── topaddons_client.cfg │ ├── travelersbackpack.cfg │ ├── traverse │ │ └── traverse.cfg │ ├── unidict │ │ ├── IntegrationModule.cfg │ │ ├── ModConfigModule.cfg │ │ └── UniDict.cfg │ ├── unloader.cfg │ ├── untranslateditems.cfg │ ├── vanillafix.cfg │ ├── vanillafix │ │ └── config_version │ ├── wizardry.cfg │ ├── wizardry │ │ ├── fire_recipes │ │ │ └── sky_dust.json │ │ ├── fluid_recipes │ │ │ ├── codex.json │ │ │ ├── mana_orb.json │ │ │ ├── nacre.json │ │ │ ├── temp_real_halo.json │ │ │ ├── unicorn_dagger.json │ │ │ ├── wisdom_door.json │ │ │ ├── wisdom_fence.json │ │ │ ├── wisdom_fence_gate.json │ │ │ ├── wisdom_leaves.json │ │ │ ├── wisdom_log.json │ │ │ ├── wisdom_plank.json │ │ │ ├── wisdom_sapling.json │ │ │ ├── wisdom_slab.json │ │ │ ├── wisdom_stairs.json │ │ │ └── wisdom_stick.json │ │ ├── wizManifest.json │ │ └── wizmodules │ │ │ ├── effect_anti_gravity_well.json │ │ │ ├── effect_backup.json │ │ │ ├── effect_bouncing.json │ │ │ ├── effect_break.json │ │ │ ├── effect_burn.json │ │ │ ├── effect_crasher_fall.json │ │ │ ├── effect_decay.json │ │ │ ├── effect_extract.json │ │ │ ├── effect_frost.json │ │ │ ├── effect_grace.json │ │ │ ├── effect_gravity_well.json │ │ │ ├── effect_leap.json │ │ │ ├── effect_leech.json │ │ │ ├── effect_light.json │ │ │ ├── effect_lightning.json │ │ │ ├── effect_low_gravity.json │ │ │ ├── effect_phase.json │ │ │ ├── effect_place.json │ │ │ ├── effect_poison_cloud.json │ │ │ ├── effect_shatter.json │ │ │ ├── effect_sonic.json │ │ │ ├── effect_substitution.json │ │ │ ├── effect_suffocate.json │ │ │ ├── effect_telekinesis.json │ │ │ ├── effect_thrive.json │ │ │ ├── effect_time_lock.json │ │ │ ├── effect_time_slow.json │ │ │ ├── effect_vanish.json │ │ │ ├── effect_zoom.json │ │ │ ├── modifier_extend_range.json │ │ │ ├── modifier_extend_time.json │ │ │ ├── modifier_increase_aoe.json │ │ │ ├── modifier_increase_potency.json │ │ │ ├── modifier_increase_speed.json │ │ │ ├── shape_beam.json │ │ │ ├── shape_cone.json │ │ │ ├── shape_projectile.json │ │ │ ├── shape_self.json │ │ │ ├── shape_touch.json │ │ │ └── shape_zone.json │ ├── xnet │ │ └── xnet.cfg │ └── ynot.cfg ├── mods │ ├── AdvancedTweakery-1.0.jar │ └── trutils-1.1.5-build111.jar ├── oresources │ ├── base │ │ └── lang │ │ │ └── zh_cn.lang │ ├── deepmoblearning │ │ └── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ ├── embers │ │ └── lang │ │ │ ├── en_US.lang │ │ │ └── zh_CN.lang │ ├── enderio │ │ └── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ ├── extendedcrafting │ │ ├── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ │ ├── models │ │ │ └── block │ │ │ │ └── compressor.json │ │ └── textures │ │ │ ├── blocks │ │ │ └── compressor.png │ │ │ └── items │ │ │ ├── material_advanced_catalyst.png │ │ │ ├── material_advanced_catalyst.png.mcmeta │ │ │ ├── material_advanced_component.png │ │ │ ├── material_advanced_component.png.mcmeta │ │ │ ├── material_basic_catalyst.png │ │ │ ├── material_basic_catalyst.png.mcmeta │ │ │ ├── material_basic_component.png │ │ │ └── material_basic_component.png.mcmeta │ ├── minecraft │ │ ├── blockstates │ │ │ ├── furnace.json │ │ │ └── lit_furnace.json │ │ ├── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ │ ├── models │ │ │ ├── block │ │ │ │ ├── brick_kiln.json │ │ │ │ └── lit_brick_kiln.json │ │ │ └── item │ │ │ │ └── furnace.json │ │ └── textures │ │ │ └── blocks │ │ │ ├── brick_kiln_front_off.png │ │ │ ├── brick_kiln_front_on.png │ │ │ ├── brick_kiln_side.png │ │ │ └── brick_kiln_top.png │ ├── multiblocked │ │ └── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ ├── pneumaticcraft │ │ └── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ └── survivalist │ │ └── textures │ │ └── items │ │ ├── hatchet.png │ │ ├── pick.png │ │ └── plant_fibres.png ├── resources │ ├── athenaeum │ │ └── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ ├── base │ │ └── textures │ │ │ └── items │ │ │ ├── gear.png │ │ │ └── plate.png │ ├── contenttweaker │ │ ├── blockstates │ │ │ ├── advance_machine_circuitry.json │ │ │ ├── aura_coal_block.json │ │ │ ├── aura_flower.json │ │ │ ├── basic_machine_casing.json │ │ │ ├── basic_machine_circuitry.json │ │ │ ├── ember_crystal_block.json │ │ │ ├── ender_portal.json │ │ │ ├── endorelithium.json │ │ │ ├── endorerutile.json │ │ │ ├── eutrophic_water.json │ │ │ ├── germanium_slurry.json │ │ │ ├── glaze_slurry.json │ │ │ ├── hdpe.json │ │ │ ├── infused_slag_slurry.json │ │ │ ├── ironcoal_ore.json │ │ │ ├── mana_flower.json │ │ │ ├── materials │ │ │ │ ├── aluminum_ore_aura_infusion.json │ │ │ │ ├── aluminum_ore_enriched.json │ │ │ │ ├── boron_ore_aura_infusion.json │ │ │ │ ├── boron_ore_enriched.json │ │ │ │ ├── copper_ore_aura_infusion.json │ │ │ │ ├── copper_ore_enriched.json │ │ │ │ ├── crude_steel_ore_aura_infusion.json │ │ │ │ ├── crude_steel_ore_enriched.json │ │ │ │ ├── extreme_block.json │ │ │ │ ├── germanium_block.json │ │ │ │ ├── germanium_ore_aura_infusion.json │ │ │ │ ├── germanium_ore_enriched.json │ │ │ │ ├── gold_ore_aura_infusion.json │ │ │ │ ├── gold_ore_enriched.json │ │ │ │ ├── high_strength_aluminum_alloy_block.json │ │ │ │ ├── iridium_ore_aura_infusion.json │ │ │ │ ├── iridium_ore_enriched.json │ │ │ │ ├── iron_ore_aura_infusion.json │ │ │ │ ├── iron_ore_enriched.json │ │ │ │ ├── lead_ore_aura_infusion.json │ │ │ │ ├── lead_ore_enriched.json │ │ │ │ ├── lithium_ore_aura_infusion.json │ │ │ │ ├── lithium_ore_enriched.json │ │ │ │ ├── magnesium_ore_aura_infusion.json │ │ │ │ ├── magnesium_ore_enriched.json │ │ │ │ ├── mithril_ore_aura_infusion.json │ │ │ │ ├── mithril_ore_enriched.json │ │ │ │ ├── nickel_ore_aura_infusion.json │ │ │ │ ├── nickel_ore_enriched.json │ │ │ │ ├── osmium_ore_aura_infusion.json │ │ │ │ ├── osmium_ore_enriched.json │ │ │ │ ├── platinum_ore_aura_infusion.json │ │ │ │ ├── platinum_ore_enriched.json │ │ │ │ ├── pure_iron_block.json │ │ │ │ ├── rose_gold_block.json │ │ │ │ ├── silver_ore_aura_infusion.json │ │ │ │ ├── silver_ore_enriched.json │ │ │ │ ├── thorium_ore_aura_infusion.json │ │ │ │ ├── thorium_ore_enriched.json │ │ │ │ ├── tin_ore_aura_infusion.json │ │ │ │ ├── tin_ore_enriched.json │ │ │ │ ├── titanium_ore_aura_infusion.json │ │ │ │ ├── titanium_ore_enriched.json │ │ │ │ ├── tough_block.json │ │ │ │ ├── tritanium_ore_aura_infusion.json │ │ │ │ ├── tritanium_ore_enriched.json │ │ │ │ ├── uranium_ore_aura_infusion.json │ │ │ │ └── uranium_ore_enriched.json │ │ │ ├── sky_block.json │ │ │ ├── slag_waste_slurry.json │ │ │ ├── tartaric_acid_solution.json │ │ │ ├── toughed_machine_casing.json │ │ │ ├── udorealuminum.json │ │ │ ├── udoreboron.json │ │ │ ├── udorelithium.json │ │ │ ├── udoremagnesium.json │ │ │ ├── udorenickel.json │ │ │ ├── udorethorium.json │ │ │ └── udoreuranium.json │ │ ├── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ │ ├── models │ │ │ ├── block │ │ │ │ └── ender_portal.json │ │ │ └── item │ │ │ │ ├── Aura_coal.json │ │ │ │ ├── Blast_furnace_fuel.json │ │ │ │ ├── Insulating_substrate.json │ │ │ │ ├── PCB_Substrate.json │ │ │ │ ├── Token_of_Elven_Friendship_Big.json │ │ │ │ ├── Token_of_Elven_Friendship_Medium.json │ │ │ │ ├── Token_of_Elven_Friendship_Small.json │ │ │ │ ├── aluminum_clump.json │ │ │ │ ├── aluminum_crystal.json │ │ │ │ ├── aluminum_ore_clean_crushed_infused.json │ │ │ │ ├── aluminum_ore_crushed_enriched.json │ │ │ │ ├── aluminum_ore_crushed_infused.json │ │ │ │ ├── aluminum_shard.json │ │ │ │ ├── bark_wisdomwood.json │ │ │ │ ├── base_board_of_basic_ic.json │ │ │ │ ├── boron_clump.json │ │ │ │ ├── boron_crystal.json │ │ │ │ ├── boron_ore_clean_crushed_infused.json │ │ │ │ ├── boron_ore_crushed_enriched.json │ │ │ │ ├── boron_ore_crushed_infused.json │ │ │ │ ├── boron_shard.json │ │ │ │ ├── calm.json │ │ │ │ ├── compressed_crystaltine.json │ │ │ │ ├── compressed_draconium.json │ │ │ │ ├── compressed_signalum.json │ │ │ │ ├── contains_impurities_silicon_dust.json │ │ │ │ ├── copper_clump.json │ │ │ │ ├── copper_crystal.json │ │ │ │ ├── copper_ore_clean_crushed_infused.json │ │ │ │ ├── copper_ore_crushed_enriched.json │ │ │ │ ├── copper_ore_crushed_infused.json │ │ │ │ ├── copper_shard.json │ │ │ │ ├── crude_silicon_dust.json │ │ │ │ ├── crude_steel_clump.json │ │ │ │ ├── crude_steel_crystal.json │ │ │ │ ├── crude_steel_ore_clean_crushed_infused.json │ │ │ │ ├── crude_steel_ore_crushed_enriched.json │ │ │ │ ├── crude_steel_ore_crushed_infused.json │ │ │ │ ├── crude_steel_shard.json │ │ │ │ ├── damaged_data_pad.json │ │ │ │ ├── damaged_psd.json │ │ │ │ ├── dictionary_paper.json │ │ │ │ ├── dilithium_dust.json │ │ │ │ ├── dilithium_shard.json │ │ │ │ ├── dust_crude_steel.json │ │ │ │ ├── elixir_eyesight.json │ │ │ │ ├── end_portal_frame_debris.json │ │ │ │ ├── excavation.json │ │ │ │ ├── four_leaf_clover.json │ │ │ │ ├── four_leaf_clover_necklace.json │ │ │ │ ├── fury.json │ │ │ │ ├── ge_transistor.json │ │ │ │ ├── ge_wafer.json │ │ │ │ ├── germanium_clump.json │ │ │ │ ├── germanium_crystal.json │ │ │ │ ├── germanium_dust.json │ │ │ │ ├── germanium_gear.json │ │ │ │ ├── germanium_ingot.json │ │ │ │ ├── germanium_integrated_circuit_board.json │ │ │ │ ├── germanium_nugget.json │ │ │ │ ├── germanium_ore_clean_crushed_infused.json │ │ │ │ ├── germanium_ore_crushed_enriched.json │ │ │ │ ├── germanium_ore_crushed_infused.json │ │ │ │ ├── germanium_plate.json │ │ │ │ ├── germanium_rod.json │ │ │ │ ├── germanium_shard.json │ │ │ │ ├── glaze.json │ │ │ │ ├── glazed_refractory_brick.json │ │ │ │ ├── gold_clump.json │ │ │ │ ├── gold_crystal.json │ │ │ │ ├── gold_ore_clean_crushed_infused.json │ │ │ │ ├── gold_ore_crushed_enriched.json │ │ │ │ ├── gold_ore_crushed_infused.json │ │ │ │ ├── gold_shard.json │ │ │ │ ├── graphene_nickel_plate.json │ │ │ │ ├── gravitational_anomaly_container.json │ │ │ │ ├── high_strength_aluminum_alloy_dust.json │ │ │ │ ├── high_strength_aluminum_alloy_gear.json │ │ │ │ ├── high_strength_aluminum_alloy_ingot.json │ │ │ │ ├── high_strength_aluminum_alloy_nugget.json │ │ │ │ ├── high_strength_aluminum_alloy_plate.json │ │ │ │ ├── high_strength_aluminum_alloy_rod.json │ │ │ │ ├── inactive_energytablet.json │ │ │ │ ├── inactive_view_cell.json │ │ │ │ ├── infused_crude_silicon_dust.json │ │ │ │ ├── infused_protective_layer_crude_silicon_dust.json │ │ │ │ ├── iridium_clump.json │ │ │ │ ├── iridium_crystal.json │ │ │ │ ├── iridium_ore_clean_crushed_infused.json │ │ │ │ ├── iridium_ore_crushed_enriched.json │ │ │ │ ├── iridium_ore_crushed_infused.json │ │ │ │ ├── iridium_shard.json │ │ │ │ ├── iron_clump.json │ │ │ │ ├── iron_compressed_plate.json │ │ │ │ ├── iron_crystal.json │ │ │ │ ├── iron_ore_clean_crushed_infused.json │ │ │ │ ├── iron_ore_crushed_enriched.json │ │ │ │ ├── iron_ore_crushed_infused.json │ │ │ │ ├── iron_shard.json │ │ │ │ ├── lead_clump.json │ │ │ │ ├── lead_crystal.json │ │ │ │ ├── lead_ore_clean_crushed_infused.json │ │ │ │ ├── lead_ore_crushed_enriched.json │ │ │ │ ├── lead_ore_crushed_infused.json │ │ │ │ ├── lead_shard.json │ │ │ │ ├── lithium_clump.json │ │ │ │ ├── lithium_crystal.json │ │ │ │ ├── lithium_ore_clean_crushed_infused.json │ │ │ │ ├── lithium_ore_crushed_enriched.json │ │ │ │ ├── lithium_ore_crushed_infused.json │ │ │ │ ├── lithium_shard.json │ │ │ │ ├── magnesium_clump.json │ │ │ │ ├── magnesium_crystal.json │ │ │ │ ├── magnesium_ore_clean_crushed_infused.json │ │ │ │ ├── magnesium_ore_crushed_enriched.json │ │ │ │ ├── magnesium_ore_crushed_infused.json │ │ │ │ ├── magnesium_shard.json │ │ │ │ ├── mana_crystal.json │ │ │ │ ├── mana_infused_crude_silicon_dust.json │ │ │ │ ├── mana_petals.json │ │ │ │ ├── menril_essence_crystal.json │ │ │ │ ├── mithril_clump.json │ │ │ │ ├── mithril_crystal.json │ │ │ │ ├── mithril_ore_clean_crushed_infused.json │ │ │ │ ├── mithril_ore_crushed_enriched.json │ │ │ │ ├── mithril_ore_crushed_infused.json │ │ │ │ ├── mithril_shard.json │ │ │ │ ├── mystery_dust.json │ │ │ │ ├── nickel_clump.json │ │ │ │ ├── nickel_crystal.json │ │ │ │ ├── nickel_ore_clean_crushed_infused.json │ │ │ │ ├── nickel_ore_crushed_enriched.json │ │ │ │ ├── nickel_ore_crushed_infused.json │ │ │ │ ├── nickel_shard.json │ │ │ │ ├── osmium_clump.json │ │ │ │ ├── osmium_crystal.json │ │ │ │ ├── osmium_ore_clean_crushed_infused.json │ │ │ │ ├── osmium_ore_crushed_enriched.json │ │ │ │ ├── osmium_ore_crushed_infused.json │ │ │ │ ├── osmium_shard.json │ │ │ │ ├── platinum_clump.json │ │ │ │ ├── platinum_crystal.json │ │ │ │ ├── platinum_ore_clean_crushed_infused.json │ │ │ │ ├── platinum_ore_crushed_enriched.json │ │ │ │ ├── platinum_ore_crushed_infused.json │ │ │ │ ├── platinum_shard.json │ │ │ │ ├── pure_iron_dust.json │ │ │ │ ├── pure_iron_gear.json │ │ │ │ ├── pure_iron_ingot.json │ │ │ │ ├── pure_iron_nugget.json │ │ │ │ ├── pure_iron_plate.json │ │ │ │ ├── pure_iron_rod.json │ │ │ │ ├── raw_stamp_nugget.json │ │ │ │ ├── refractory_brick.json │ │ │ │ ├── refractory_clay_ball.json │ │ │ │ ├── research_icon.json │ │ │ │ ├── research_point_Lv0.json │ │ │ │ ├── research_point_Lv1.json │ │ │ │ ├── research_point_Lv1_incomplete.json │ │ │ │ ├── rose_gold_dust.json │ │ │ │ ├── rose_gold_gear.json │ │ │ │ ├── rose_gold_ingot.json │ │ │ │ ├── rose_gold_nugget.json │ │ │ │ ├── rose_gold_plate.json │ │ │ │ ├── rose_gold_rod.json │ │ │ │ ├── rune.json │ │ │ │ ├── rune1.json │ │ │ │ ├── rusty_iron_ingot.json │ │ │ │ ├── sensitive_element.json │ │ │ │ ├── si_gr_ge_transistor.json │ │ │ │ ├── si_transistor.json │ │ │ │ ├── silicon_dust.json │ │ │ │ ├── silver_clump.json │ │ │ │ ├── silver_crystal.json │ │ │ │ ├── silver_ore_clean_crushed_infused.json │ │ │ │ ├── silver_ore_crushed_enriched.json │ │ │ │ ├── silver_ore_crushed_infused.json │ │ │ │ ├── silver_shard.json │ │ │ │ ├── soul_extract.json │ │ │ │ ├── stamp_nugget.json │ │ │ │ ├── straw_rope.json │ │ │ │ ├── tartaric_acid.json │ │ │ │ ├── teleport_rune.json │ │ │ │ ├── thin_film_transistor.json │ │ │ │ ├── thirdrebirth.json │ │ │ │ ├── thorium_clump.json │ │ │ │ ├── thorium_crystal.json │ │ │ │ ├── thorium_ore_clean_crushed_infused.json │ │ │ │ ├── thorium_ore_crushed_enriched.json │ │ │ │ ├── thorium_ore_crushed_infused.json │ │ │ │ ├── thorium_shard.json │ │ │ │ ├── tin_clump.json │ │ │ │ ├── tin_crystal.json │ │ │ │ ├── tin_ore_clean_crushed_infused.json │ │ │ │ ├── tin_ore_crushed_enriched.json │ │ │ │ ├── tin_ore_crushed_infused.json │ │ │ │ ├── tin_shard.json │ │ │ │ ├── tinned_copper_wire.json │ │ │ │ ├── titanium_clump.json │ │ │ │ ├── titanium_crystal.json │ │ │ │ ├── titanium_ore_clean_crushed_infused.json │ │ │ │ ├── titanium_ore_crushed_enriched.json │ │ │ │ ├── titanium_ore_crushed_infused.json │ │ │ │ ├── titanium_shard.json │ │ │ │ ├── tough_alloy_plate.json │ │ │ │ ├── tough_gear.json │ │ │ │ ├── tritanium_clump.json │ │ │ │ ├── tritanium_crystal.json │ │ │ │ ├── tritanium_ore_clean_crushed_infused.json │ │ │ │ ├── tritanium_ore_crushed_enriched.json │ │ │ │ ├── tritanium_ore_crushed_infused.json │ │ │ │ ├── tritanium_shard.json │ │ │ │ ├── uranium_clump.json │ │ │ │ ├── uranium_crystal.json │ │ │ │ ├── uranium_ore_clean_crushed_infused.json │ │ │ │ ├── uranium_ore_crushed_enriched.json │ │ │ │ ├── uranium_ore_crushed_infused.json │ │ │ │ ├── uranium_shard.json │ │ │ │ ├── villager_language_dictionary.json │ │ │ │ └── wine_stone.json │ │ └── textures │ │ │ ├── blocks │ │ │ ├── Aura_coal_block.png │ │ │ ├── Overworld_Anchor_point.png │ │ │ ├── advance_machine_circuitry.png │ │ │ ├── aura_flower.png │ │ │ ├── basic_machine_casing.png │ │ │ ├── basic_machine_circuitry.png │ │ │ ├── ember_crystal_block.png │ │ │ ├── endOreLithium.png │ │ │ ├── endOreRutile.png │ │ │ ├── ender_portal.png │ │ │ ├── ironcoal_ore.png │ │ │ ├── mana_flower.png │ │ │ ├── ore_aura_infusion.png │ │ │ ├── ore_aura_infusion_shadow.png │ │ │ ├── ore_enriched.png │ │ │ ├── ore_enriched_shadow.png │ │ │ ├── sky_block.png │ │ │ ├── toughed_machine_casing.png │ │ │ ├── udOreAluminum.png │ │ │ ├── udOreBoron.png │ │ │ ├── udOreLithium.png │ │ │ ├── udOreMagnesium.png │ │ │ ├── udOreNickel.png │ │ │ ├── udOreThorium.png │ │ │ └── udOreUranium.png │ │ │ ├── fluids │ │ │ ├── hdpe_flow.png │ │ │ ├── hdpe_flow.png.mcmeta │ │ │ ├── hdpe_still.png │ │ │ └── hdpe_still.png.mcmeta │ │ │ └── items │ │ │ ├── PCB_Substrate.png │ │ │ ├── aura_coal.png │ │ │ ├── bark_wisdomwood.png │ │ │ ├── blast_furnace_fuel.png │ │ │ ├── calm.png │ │ │ ├── compressed_crystaltine.png │ │ │ ├── compressed_draconium.png │ │ │ ├── compressed_signalum.png │ │ │ ├── contains_impurities_silicon_dust.png │ │ │ ├── crude_silicon_dust.png │ │ │ ├── crushed_enriched_ore.png │ │ │ ├── damaged_data_pad.png │ │ │ ├── damaged_psd.png │ │ │ ├── dictionary_paper.png │ │ │ ├── dust_crude_steel.png │ │ │ ├── elixir_eyesight.png │ │ │ ├── end_portal_frame_debris.png │ │ │ ├── excavation.png │ │ │ ├── four_leaf_clover.png │ │ │ ├── four_leaf_clover_necklace.png │ │ │ ├── fury.png │ │ │ ├── ge_transistor.png │ │ │ ├── ge_wafer.png │ │ │ ├── germanium_integrated_circuit_board.png │ │ │ ├── germanium_matrix.png │ │ │ ├── glaze.png │ │ │ ├── glazed_refractory_brick.png │ │ │ ├── graphene_nickel_plate.png │ │ │ ├── gravitational_anomaly_container.png │ │ │ ├── inactive_energytablet.png │ │ │ ├── inactive_view_cell.png │ │ │ ├── infused_crude_silicon_dust.png │ │ │ ├── infused_protective_layer_crude_silicon_dust.png │ │ │ ├── insulating_substrate.png │ │ │ ├── iron_rod.png │ │ │ ├── mana_crystal.png │ │ │ ├── mana_infused_crude_silicon_dust.png │ │ │ ├── mana_petals.png │ │ │ ├── menril_essence_crystal.png │ │ │ ├── mystery_dust.png │ │ │ ├── ore_clean_crushed_infused.png │ │ │ ├── ore_crushed_enriched.png │ │ │ ├── ore_crushed_infused.png │ │ │ ├── ore_crushed_infused_overlay.png │ │ │ ├── raw_stamp_nugget.png │ │ │ ├── refractory_brick.png │ │ │ ├── refractory_clay_ball.png │ │ │ ├── research_icon.png │ │ │ ├── research_point_Lv0.png │ │ │ ├── research_point_Lv1.png │ │ │ ├── research_point_Lv1_incomplete.png │ │ │ ├── rune.png │ │ │ ├── rune1.png │ │ │ ├── rusty_iron_ingot.png │ │ │ ├── sensitive_element.png │ │ │ ├── si_gr_ge_transistor.png │ │ │ ├── si_transistor.png │ │ │ ├── silicon_dust.png │ │ │ ├── soul_extract.png │ │ │ ├── stamp_nugget.png │ │ │ ├── straw_rope.png │ │ │ ├── tartaric_acid.png │ │ │ ├── teleport_rune.png │ │ │ ├── thin_film_transistor.png │ │ │ ├── thirdrebirth.png │ │ │ ├── tinned_copper_wire.png │ │ │ ├── token_of_elven_friendship_big.png │ │ │ ├── token_of_elven_friendship_medium.png │ │ │ ├── token_of_elven_friendship_small.png │ │ │ ├── tough_alloy_plate.png │ │ │ ├── villager_language_dictionary.png │ │ │ └── wine_stone.png │ ├── hardcoreitemstages │ │ └── textures │ │ │ └── items │ │ │ └── unknown.png │ ├── lightningcraft │ │ └── lang │ │ │ └── zh_cn.lang │ ├── mekanism │ │ └── textures │ │ │ └── items │ │ │ └── enrichedalloy.png │ ├── mekatweaker │ │ ├── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ │ └── textures │ │ │ └── blocks │ │ │ └── infuse │ │ │ ├── crystaltine.png │ │ │ ├── draconium.png │ │ │ ├── ember.png │ │ │ └── signalum.png │ ├── modularcontroller │ │ └── blockstates │ │ │ ├── aura_collector_controller.json │ │ │ ├── aura_perfusion_changer_controller.json │ │ │ ├── big_embers_furnace_controller.json │ │ │ ├── decipherer_controller.json │ │ │ ├── electronic_assembly_machine_controller.json │ │ │ ├── electronic_assembly_machine_mk1_controller.json │ │ │ ├── electronic_assembly_machine_mk2_controller.json │ │ │ ├── embers_air_compressor_controller.json │ │ │ ├── embers_perfusioner_controller.json │ │ │ ├── embers_power_tower_controller.json │ │ │ ├── exorcism_controller.json │ │ │ ├── experimental_stargate_controller.json │ │ │ ├── fmph_mk1_controller.json │ │ │ ├── fmph_mk2_controller.json │ │ │ ├── fmph_mk3_controller.json │ │ │ ├── fmph_mk4_controller.json │ │ │ ├── fmph_mk5_controller.json │ │ │ ├── fractionator_controller.json │ │ │ ├── high_energy_shredder_controller.json │ │ │ ├── ordinary_thermal_boilers_controller.json │ │ │ ├── ordinary_turbines_controller.json │ │ │ ├── refinery_controller.json │ │ │ ├── runes_engraving_controller.json │ │ │ ├── small_thermal_boilers_controller.json │ │ │ ├── small_turbine_controller.json │ │ │ ├── stargate_controller.json │ │ │ └── vacuum_alloy_arc_furnace_controller.json │ ├── modularmachinery │ │ ├── models │ │ │ └── block │ │ │ │ └── blockcontroller_boiler.json │ │ └── textures │ │ │ ├── blocks │ │ │ └── overlay_boiler_controller.png │ │ │ ├── gui │ │ │ ├── guicontroller.png │ │ │ ├── guicontroller_large.png │ │ │ └── guifactory.png │ │ │ └── items │ │ │ └── blueprint.png │ ├── mysticalworld │ │ └── lang │ │ │ ├── en_us.lang │ │ │ └── zh_cn.lang │ ├── netherendingores │ │ └── lang │ │ │ └── zh_cn.lang │ ├── pack.mcmeta │ ├── simplyjetpacks │ │ └── lang │ │ │ └── zh_cn.lang │ └── thirdrebirth │ │ └── lang │ │ ├── en_us.lang │ │ └── zh_cn.lang └── scripts │ ├── ContentTweaker │ ├── Blocks │ │ ├── blockCommon.zs │ │ ├── blockOre.zs │ │ └── flower.zs │ ├── Enchantment │ │ └── normal.zs │ ├── Fluids │ │ └── fluidCommon.zs │ ├── Items │ │ ├── itemBauble.zs │ │ ├── itemCommon.zs │ │ ├── itemStage.zs │ │ └── itemVLD.zs │ ├── MaterialSystem │ │ ├── oreProcess.zs │ │ └── otherMaterial.zs │ └── cot.zs │ ├── CraftTweaker │ ├── Events │ │ ├── BlockBreakEvent.zs │ │ ├── BlockHarvestDropsEvent.zs │ │ ├── BlockPlaceEvent.zs │ │ ├── PlayerInteractBlockEvent.zs │ │ ├── PlayerInteractEntityEvent.zs │ │ ├── PlayerLeftClickBlockEvent.zs │ │ ├── PortalSpawnEvent.zs │ │ ├── criticalSystem.zs │ │ ├── customCommand.zs │ │ └── stageSynchronisation.zs │ ├── Mods │ │ ├── AdvanedRocketry │ │ │ ├── Centrifuge.zs │ │ │ ├── Crystallizer.zs │ │ │ ├── Lathe.zs │ │ │ ├── Rollingmachine.zs │ │ │ ├── chemicalReactor.zs │ │ │ └── recipes.zs │ │ ├── AppliedEnergistics2 │ │ │ ├── grindstone.zs │ │ │ ├── inscriber.zs │ │ │ └── recipes.zs │ │ ├── ArtisanWorkTables │ │ │ └── recipes.zs │ │ ├── Botania │ │ │ ├── apothecary.zs │ │ │ ├── elvenTrade.zs │ │ │ ├── manaInfusion.zs │ │ │ ├── pureDaisy.zs │ │ │ ├── recipes.zs │ │ │ ├── runeAltar.zs │ │ │ ├── terraplate.zs │ │ │ └── tooldurability.zs │ │ ├── Botanianeedsthesethings │ │ │ └── recipe.zs │ │ ├── Bountifulbaubles │ │ │ └── recipes.zs │ │ ├── Compactmachines │ │ │ └── recipes.zs │ │ ├── ContentTweaker │ │ │ └── recipes.zs │ │ ├── Ember │ │ │ ├── Melter.zs │ │ │ ├── alchemy.zs │ │ │ ├── emberBord.zs │ │ │ ├── mixer.zs │ │ │ ├── recipes.zs │ │ │ └── stamper.zs │ │ ├── EnderIO │ │ │ ├── alloysmelter.zs │ │ │ ├── recipes.zs │ │ │ ├── soulbinder.zs │ │ │ └── tooldurability.zs │ │ ├── EnderStorage │ │ │ └── recipes.zs │ │ ├── Extrautils2 │ │ │ ├── recipes.zs │ │ │ └── resonator.zs │ │ ├── GameStage │ │ │ ├── allstages.zs │ │ │ ├── itemstage.zs │ │ │ ├── liquidstage.zs │ │ │ ├── modstage.zs │ │ │ └── orestage.zs │ │ ├── GuGuUtils │ │ │ ├── bursttransform.zs │ │ │ └── recipes.zs │ │ ├── HarvestCraft │ │ │ ├── grinder.zs │ │ │ ├── market.zs │ │ │ ├── presser.zs │ │ │ ├── recipes.zs │ │ │ └── trap.zs │ │ ├── ImmerSiveEngineering │ │ │ ├── alloysmelter.zs │ │ │ ├── arcfurnace.zs │ │ │ ├── blastFurnace.zs │ │ │ ├── blueprint.zs │ │ │ ├── cokeOven.zs │ │ │ ├── crusher.zs │ │ │ ├── fermenter.zs │ │ │ ├── metalPress.zs │ │ │ ├── mixer.zs │ │ │ ├── recipes.zs │ │ │ ├── refinery.zs │ │ │ └── squeezer.zs │ │ ├── InWorldCrafting │ │ │ └── recipes.zs │ │ ├── JEI │ │ │ ├── description.zs │ │ │ └── magneticAttractionJei.zs │ │ ├── JustEnoughCalculation │ │ │ └── recipes.zs │ │ ├── LightNingCraft │ │ │ ├── lightningInfusion.zs │ │ │ ├── lightningTransforming.zs │ │ │ └── recipes.zs │ │ ├── MatterOverdrive │ │ │ └── recipes.zs │ │ ├── Mekanism │ │ │ ├── compressor.zs │ │ │ ├── crusher.zs │ │ │ ├── enrichment.zs │ │ │ ├── infuser.zs │ │ │ └── recipes.zs │ │ ├── ModularController │ │ │ └── recipes.zs │ │ ├── ModularMachinery │ │ │ ├── machine │ │ │ │ ├── apc.zs │ │ │ │ ├── auraCollector.zs │ │ │ │ ├── electronicAssembly.zs │ │ │ │ ├── electronicLaserAssembly.zs │ │ │ │ ├── exorcism.zs │ │ │ │ ├── fmph.zs │ │ │ │ ├── machine.zs │ │ │ │ └── refinery.zs │ │ │ └── recipes.zs │ │ ├── Multiblocked │ │ │ └── recipes.zs │ │ ├── MysticalWorld │ │ │ └── recipes.zs │ │ ├── NatureSaura │ │ │ ├── natureAltar.zs │ │ │ ├── offering.zs │ │ │ ├── recipes.zs │ │ │ └── treeRitual.zs │ │ ├── Nuclearcraft │ │ │ ├── alloy_furnace.zs │ │ │ ├── assembler.zs │ │ │ ├── chemicalReactor.zs │ │ │ ├── crystallizer.zs │ │ │ ├── electrolyser.zs │ │ │ ├── enricher.zs │ │ │ ├── extractor.zs │ │ │ ├── fission.zs │ │ │ ├── fluidMixer.zs │ │ │ ├── former.zs │ │ │ ├── infuser.zs │ │ │ ├── manufactory.zs │ │ │ ├── melter.zs │ │ │ ├── pressurizer.zs │ │ │ ├── recipes.zs │ │ │ └── separator.zs │ │ ├── PackagedExcrafting │ │ │ └── recipes.zs │ │ ├── PneumaticCraft │ │ │ ├── assembly.zs │ │ │ ├── explosioncrafting.zs │ │ │ ├── pressurechamber.zs │ │ │ ├── recipes.zs │ │ │ └── thermopneumaticprocessingplant.zs │ │ ├── Pouchofunknown │ │ │ └── recipes.zs │ │ ├── PrimalTech │ │ │ ├── claykiln.zs │ │ │ ├── recipes.zs │ │ │ ├── stoneAnvil.zs │ │ │ └── woodenBasin.zs │ │ ├── Psi │ │ │ └── recipes.zs │ │ ├── Quark │ │ │ └── recipes.zs │ │ ├── RFTools │ │ │ └── recipes.zs │ │ ├── RandomTweaker │ │ │ └── hydroangeas.zs │ │ ├── Refraction │ │ │ ├── assemblyTable.zs │ │ │ └── recipes.zs │ │ ├── Roots │ │ │ ├── bark.zs │ │ │ ├── chrysopoeia.zs │ │ │ ├── fey.zs │ │ │ ├── mortar.zs │ │ │ ├── pyre.zs │ │ │ ├── recipes.zs │ │ │ ├── runicShears.zs │ │ │ ├── spells.zs │ │ │ └── transmutation.zs │ │ ├── ScalingHealth │ │ │ └── recipes.zs │ │ ├── Survivalist │ │ │ ├── dryable.zs │ │ │ └── recipes.zs │ │ ├── TRUtils │ │ │ ├── WashingMachine.zs │ │ │ └── recipes.zs │ │ ├── TeslacoreLib │ │ │ └── recipes.zs │ │ ├── Thermalfoundation │ │ │ ├── recipes.zs │ │ │ └── tooldurability.zs │ │ ├── ToolBelt │ │ │ └── recipes.zs │ │ ├── TravelersBackpack │ │ │ └── recipes.zs │ │ ├── Wizardry │ │ │ └── recipes.zs │ │ ├── Xnet │ │ │ └── recipes.zs │ │ ├── bedrockores │ │ │ └── recipes.zs │ │ ├── biomesoplenty │ │ │ └── recipes.zs │ │ ├── chisel │ │ │ └── Carving.zs │ │ ├── deepmoblearning │ │ │ └── recipes.zs │ │ ├── dracoevolution │ │ │ └── recipes.zs │ │ ├── extendedcrafting │ │ │ ├── endercrafting.zs │ │ │ ├── recipes.zs │ │ │ └── tablecrafting.zs │ │ ├── familiarfauna │ │ │ └── recipe.zs │ │ ├── fluiddrawers │ │ │ └── recipes.zs │ │ ├── integrateddynamics │ │ │ ├── dryingBasin.zs │ │ │ ├── recipes.zs │ │ │ └── squeezer.zs │ │ ├── libvulpes │ │ │ └── recipes.zs │ │ ├── packagedauto │ │ │ └── recipes.zs │ │ └── poweredThingies │ │ │ └── itemLiquefier.zs │ ├── Utils │ │ ├── alloy.zs │ │ ├── artisanUtils.zs │ │ ├── ban.zs │ │ ├── common.zs │ │ ├── crusher.zs │ │ ├── dropt.zs │ │ ├── fuel.zs │ │ ├── misc.zs │ │ ├── oreDicts.zs │ │ ├── oreMetal.zs │ │ └── oreProcess.zs │ └── Vanilla │ │ ├── entity.zs │ │ └── recipes.zs │ ├── Mekatweaker │ └── infuser.zs │ └── grassUtils │ ├── CotUtils.zs │ ├── EventUtils.zs │ ├── EventUtilsCot.zs │ ├── GrassUtils.zs │ ├── GrassUtilsCot.zs │ ├── IngredientHelper.zs │ ├── Logger.zs │ ├── LoggerCot.zs │ ├── RecipeUtils.zs │ ├── StringHelper.zs │ ├── StringHelperCot.zs │ ├── classes │ ├── ConditionedItemStack.zs │ └── MaterialSystemHelper.zs │ └── scriptLoaderMessageHandler │ ├── ContentTweaker.zs │ ├── CraftTweaker.zs │ └── Preinit.zs ├── LICENSE ├── manifest.json ├── modlist.html └── runners ├── build.sh └── ftbq_lang_processor.py /.minecraft/config/JustEnoughCalculation/main.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # Set to true to force client mode: no item and recipe allowed, use key bindings instead. 5 | B:clientMode=false 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /.minecraft/config/JustEnoughCalculation/record.json: -------------------------------------------------------------------------------- 1 | { 2 | "craft": { 3 | "amount": "", 4 | "recents": [], 5 | "inventory": 0b 6 | }, 7 | "math": { 8 | "current": "", 9 | "last": "0", 10 | "state": 0, 11 | "operator": 0 12 | }, 13 | "player": { 14 | "recipes": {}, 15 | "last": "" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.minecraft/config/NonUpdate.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | address { 4 | # Redirect address. [default: 0.0.0.0] 5 | S:redirectAddress=0.0.0.0 6 | } 7 | 8 | 9 | thread { 10 | # Only prevent main thread url access. [default: false] 11 | B:onlyPreventMainThread=false 12 | } 13 | 14 | 15 | -------------------------------------------------------------------------------- /.minecraft/config/OreDictInit.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | compat { 4 | S:blacklist < 5 | > 6 | } 7 | 8 | 9 | custom { 10 | # Format: oreDictEntry,modID,Block,damageValue;oreDictEntry,modID,Block,damageValue;etc. 11 | S:blocks < 12 | > 13 | 14 | # Format: oreDictEntry,modID,Item,damageValue;oreDictEntry,modID,Item,damageValue;etc. 15 | S:items < 16 | > 17 | } 18 | 19 | 20 | -------------------------------------------------------------------------------- /.minecraft/config/Probe.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | B:enableEnchantments=true 5 | B:enableEntities=true 6 | B:enableFluids=true 7 | B:enableGlobals=true 8 | B:enableItems=true 9 | B:enableMods=true 10 | B:enableOreDictionary=true 11 | B:enableZenPackage=true 12 | B:enableZenType=true 13 | B:setPrettyPrinting=false 14 | } 15 | 16 | 17 | -------------------------------------------------------------------------------- /.minecraft/config/acronym/contenttweaker/General.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | module { 4 | B:"Chickens enabled"=true 5 | B:"Materials enabled"=true 6 | B:"Tinkers enabled"=true 7 | B:"Vanilla CraftTweaker enabled"=true 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /.minecraft/config/acronym/material_system.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | item { 4 | # 0 - All Item Parts on a Single MC Item, 1 - All Item Parts have their own MC Item, > 1 - That many Parts per item 5 | I:size=1 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /.minecraft/config/adlods/adlods.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/adlods/adlods.cfg -------------------------------------------------------------------------------- /.minecraft/config/advRocketry/oreConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.minecraft/config/aireducer/taskDelay.json: -------------------------------------------------------------------------------- 1 | { 2 | "minecraft:rabbit": 6 3 | } -------------------------------------------------------------------------------- /.minecraft/config/artisanintegrations/module.Botania.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # If enabled, player's mana will be consumed before tool durability when 5 | # crafting with a mana tool. 6 | B:ENABLE_CRAFT_WITH_MANA=true 7 | 8 | # The amount of mana to charge per damage when repairing mana tools and crafting. 9 | # Default: 60 10 | I:MANA_PER_TOOL_DAMAGE=60 11 | } 12 | 13 | 14 | -------------------------------------------------------------------------------- /.minecraft/config/baubles.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | client { 4 | # Set this to false to disable rendering of baubles in the player. [default: true] 5 | B:baubleRender.enabled=true 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /.minecraft/config/biomesoplenty/gameplay.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | "convenience settings" { 4 | # Require shears to be used to collect flower drops. [default: false] 5 | B:"Flower Drops Need Shears"=false 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /.minecraft/config/botanianeedsit.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # Allow you to craft Manacapacitors 5 | B:allowCapacitors=true 6 | 7 | # Min: 0 8 | # Max: 1000000 9 | I:elementiumManaCapacitorVolume=25000 10 | 11 | # Min: 0 12 | # Max: 1000000 13 | I:manasteelManaCapacitorVolume=5000 14 | 15 | # Min: 0 16 | # Max: 1000000 17 | I:terrasteelManacapacitorVolume=100000 18 | } 19 | 20 | 21 | -------------------------------------------------------------------------------- /.minecraft/config/brandon3055/ProjectIntelligence/manifest.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Draconic Evolution", 4 | "modid": "draconicevolution", 5 | "downloads": { 6 | "https://raw.githubusercontent.com/brandon3055/Project-Intelligence-Docs/master/ModDocs/Draconic%20Evolution/draconicevolution-en_US.xml": 16 7 | } 8 | } 9 | ] -------------------------------------------------------------------------------- /.minecraft/config/brandon3055/ProjectIntelligence/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "colourNavWindow": "ff3c3f41", 3 | "colourContentWindow": "ff3c3f41", 4 | "colourMenuBar": "ff3c3f41", 5 | "colourNavText": "ffff", 6 | "colourText2": "8c8c8c", 7 | "editMode": false, 8 | "editTarget": "[CONFIG]" 9 | } -------------------------------------------------------------------------------- /.minecraft/config/bringmetherings.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # How many ring slots should there be in addition to the existing 2. [WARNING:] lowering this number will *destroy* every bauble in excess and may cause unforeseen side effects. [range: 1 ~ 36, default: 2] 5 | I:extraSlots=2 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /.minecraft/config/chunkgenlimit.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # Max chunks to generate per tick per dimension 5 | I:chunksPerTick=2 6 | 7 | # Max time to spend generating chunks per tick per dimension 8 | I:maxChunkGenMillis=5 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/cofh/core/friends.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/cofh/core/friends.cfg -------------------------------------------------------------------------------- /.minecraft/config/cofh/world/01_thermalfoundation_ores.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.minecraft/config/cofh/world/02_thermalfoundation_oil.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.minecraft/config/cofh/world/03_thermalfoundation_clathrates.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.minecraft/config/consolefilter.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # Any console messages containing one of these strings will be hidden. 5 | S:messagesToFilter < 6 | > 7 | } 8 | 9 | 10 | -------------------------------------------------------------------------------- /.minecraft/config/ctm.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # Choose whether the inside corner is disconnected on a CTM block - http://imgur.com/eUywLZ4 5 | B:connectInsideCTM=false 6 | 7 | # Disable connected textures entirely. 8 | B:disableCTM=false 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/dimensionalcontrol/DimensionalControl.cfg: -------------------------------------------------------------------------------- 1 | printDocumentation(false) 2 | printDefaultConfigs(false) -------------------------------------------------------------------------------- /.minecraft/config/dimensionalcontrol/Dimensions.cfg: -------------------------------------------------------------------------------- 1 | setPortal(123, 0, -1, "trutils:evil_stone", 5) 2 | setPortalIgniter(123, "minecraft:flint_and_steel") -------------------------------------------------------------------------------- /.minecraft/config/dropt.module.Dropt.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # Set to true to enable profiling output to the log file. 5 | B:ENABLE_PROFILE_LOG_OUTPUT=false 6 | 7 | # Set to true to inject about 100,000 unique rules to assist in profiling. 8 | # Used in development to test performance. 9 | B:INJECT_PROFILING_RULES=false 10 | 11 | # Set to false to ignore unknown fields when deserializing JSON. 12 | B:JSON_STRICT_MODE=true 13 | } 14 | 15 | 16 | -------------------------------------------------------------------------------- /.minecraft/config/enderio/recipes/user/user_recipes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.minecraft/config/familiarfauna/pixie_biomes.json: -------------------------------------------------------------------------------- 1 | [ 2 | "minecraft:mutated_forest", 3 | "biomesoplenty:mystic_grove", 4 | "twilightforest:enchanted_forest" 5 | ] -------------------------------------------------------------------------------- /.minecraft/config/fancymenu/customizablemenus.txt: -------------------------------------------------------------------------------- 1 | type = customizablemenus 2 | 3 | com.feed_the_beast.ftblib.lib.gui.GuiWrapper { 4 | } 5 | 6 | -------------------------------------------------------------------------------- /.minecraft/config/fastbench.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | crafting { 4 | # If the recipe book and all associated functionality are fully removed. [default: true] 5 | B:"Disable Recipe Book"=true 6 | 7 | # If a testing variant of shift-click crafting is enabled. [default: true] 8 | B:"Experiemental Shift Crafting"=true 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/fastfurnace.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # If the furnace uses nbt-sensitive output matching. [default: true] 5 | B:"Strict Matching"=true 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /.minecraft/config/ftbquests/normal/chapters/index.snbt: -------------------------------------------------------------------------------- 1 | { 2 | index: [] 3 | } 4 | -------------------------------------------------------------------------------- /.minecraft/config/ftbquests/normal/file.snbt: -------------------------------------------------------------------------------- 1 | { 2 | version: 9, 3 | default_reward_team: false, 4 | default_consume_items: false, 5 | default_autoclaim_rewards: "disabled", 6 | default_quest_shape: "circle", 7 | default_quest_disable_jei: false, 8 | emergency_items_cooldown: "5m", 9 | drop_loot_crates: false, 10 | loot_crate_no_drop: { 11 | passive: 4000, 12 | monster: 600, 13 | boss: 0 14 | }, 15 | disable_gui: false, 16 | grid_scale: 0.5d 17 | } 18 | -------------------------------------------------------------------------------- /.minecraft/config/ftbquests/normal/reward_tables/index.snbt: -------------------------------------------------------------------------------- 1 | { 2 | index: [] 3 | } 4 | -------------------------------------------------------------------------------- /.minecraft/config/gamestages.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | 5 | debug { 6 | # Debug logging for any kind of syncing or changes to a players stage. 7 | B:"Log Debug Data"=true 8 | } 9 | 10 | } 11 | 12 | 13 | -------------------------------------------------------------------------------- /.minecraft/config/hardcoreitemstages.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # If unknown items should be dropped from every slot in the inventory [default: true] 5 | B:dropUnknownItems=true 6 | 7 | # If unknown items should be hidden with a question mark instead of showing their model [default: true] 8 | B:hideUnknownItems=true 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/integrateddynamics/_override/mechanical_squeezer_ores.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.minecraft/config/integrateddynamics/_override/squeezer_ores.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.minecraft/config/ironchest.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | ~CONFIG_VERSION: 0.2 4 | 5 | enable-disable { 6 | B:"Add Shulker Boxes to Creative Menu"=true 7 | B:"Enable Shulker Box Recipes"=true 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /.minecraft/config/jeivillagers.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # A list of blacklisted VillagerCareer classes that causes incompatibilities as they are implemented differently (not using the MC way) or just don't want to be shown in JEI. Removing the defaults can cause issues 5 | S:BlackListedVillagerClasses < 6 | XUVillagerCareer 7 | > 8 | 9 | # If enabled will reduce the amount of text displayed in JEI recipes 10 | B:CompactMode=false 11 | } 12 | 13 | 14 | -------------------------------------------------------------------------------- /.minecraft/config/justenoughdimensions/dimensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "dimensions":[] 3 | } -------------------------------------------------------------------------------- /.minecraft/config/kac.xml: -------------------------------------------------------------------------------- 1 | mcpFMLforgekinetic anti-cheatminecraft -------------------------------------------------------------------------------- /.minecraft/config/libvulpes.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # How many FE one EU makes 5 | I:EUPowerMultiplier=7 6 | 7 | # Power multiplier on machines 8 | I:PowerMultiplier=1 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/mekanism/BoxBlacklist.txt: -------------------------------------------------------------------------------- 1 | # Use this file to tell Mekanism which blocks should not be picked up by a cardboard box. 2 | # Proper syntax is "NAME META". Example (for stone): 3 | # minecraft:stone 0 -------------------------------------------------------------------------------- /.minecraft/config/modnametooltip.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | ~CONFIG_VERSION: 1.0.0 4 | 5 | formatting { 6 | # 如何在提示文本中格式化 mod 名称。留空以禁用。有效的修饰符:[black, dark_blue, dark_green, dark_aqua, dark_red, dark_purple, gold, gray, dark_gray, blue, green, aqua, red, light_purple, yellow, white, obfuscated, bold, strikethrough, underline, italic] 7 | S:modNameFormat=blue italic 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /.minecraft/config/modulardiversity.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | hatch { 4 | # Determines size of the mana hatch. [range: 0 ~ 2147483647, default: 10000000] 5 | I:manaHatchSize=10000000 6 | 7 | # Determines size of the mekanism laser hatch. [range: 0.0 ~ 3.4028235E38, default: 5.0E9] 8 | S:mekanismLaserHatchSize=5.0E9 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/animations/mana_remover.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "mana_remover": { 5 | "animation_length": 2 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/animations/turbine_generator.animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.8.0", 3 | "animations": { 4 | "animation.model.new": { 5 | "loop": "hold_on_last_frame", 6 | "bones": { 7 | "turbine": { 8 | "position": { 9 | "vector": [0, -0.16, 0] 10 | } 11 | } 12 | } 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/beacon_light_beam_assembly_machine.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.3.1 2 | newmtl m_0 3 | map_Kd multiblocked:beacon_light_beam_assembly_machine 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/boiler.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.2.3 2 | newmtl m_1 3 | map_Kd multiblocked:boiler 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/boiler_controller.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.2.3 2 | newmtl m_0 3 | map_Kd multiblocked:boiler_controller 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/boiler_controller.obj: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.2.3 2 | mtllib boiler_controller.mtl 3 | 4 | o 控制器 5 | v 1 0.9999999999999997 4.440892098500626e-16 6 | v 1 -4.440892098500626e-16 0 7 | v 0 0.9999999999999997 4.440892098500626e-16 8 | v 0 -4.440892098500626e-16 0 9 | vt 1 1 10 | vt 1 0 11 | vt 0 0 12 | vt 0 1 13 | vn 0 2.220446049250313e-16 -1 14 | usemtl m_0 15 | f 1/1/1 2/2/1 4/3/1 3/4/1 -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/boiler_light.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.2.3 2 | newmtl m_1 3 | map_Kd multiblocked:boiler_light 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/distillation_tower.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.4.1 2 | newmtl m_0 3 | map_Kd multiblocked:distillation_tower 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/mana_remover.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.4.2 2 | newmtl m_0 3 | map_Kd multiblocked:mana_remover 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/refinery.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.4.1 2 | newmtl m_2 3 | map_Kd multiblocked:refinery 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/steam_boiler.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.2.3 2 | newmtl m_1 3 | map_Kd multiblocked:steam_boiler_export 4 | newmtl m_2 5 | map_Kd multiblocked:steam_boiler_controller 6 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/steam_boiler_light.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.2.3 2 | newmtl m_1 3 | map_Kd multiblocked:steam_boiler_export 4 | newmtl m_2 5 | map_Kd multiblocked:steam_boiler_controller_light 6 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/obj/turbine_generator.mtl: -------------------------------------------------------------------------------- 1 | # Made in Blockbench 4.2.5 2 | newmtl m_7 3 | map_Kd multiblocked:turbine_generator 4 | newmtl none -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/beacon_light_beam_assembly_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/beacon_light_beam_assembly_machine.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/boiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/boiler.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/boiler_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/boiler_controller.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/boiler_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/boiler_light.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/controller/chiseledmanaquartz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/controller/chiseledmanaquartz1.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/controller/mana_remover_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/controller/mana_remover_controller.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/controller/refinery_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/controller/refinery_controller.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/controller/steam_boiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/controller/steam_boiler.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/controller/turbine_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/controller/turbine_controller.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/controller/turbine_controller_surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/controller/turbine_controller_surface.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/mana_remover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/mana_remover.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/refinery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/refinery.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/steam_boiler_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/steam_boiler_controller.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/steam_boiler_controller_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/steam_boiler_controller_light.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/steam_boiler_controller_light.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "multiblocked": { 3 | "emissive": true 4 | } 5 | } -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/steam_boiler_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/steam_boiler_export.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/assets/multiblocked/textures/turbine_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/multiblocked/assets/multiblocked/textures/turbine_generator.png -------------------------------------------------------------------------------- /.minecraft/config/multiblocked/definition/part/mod_id_component_id.json: -------------------------------------------------------------------------------- 1 | { 2 | "canShared": false, 3 | "location": "mod_id:component_id", 4 | "traits": {}, 5 | "allowRotate": false, 6 | "showInJei": true, 7 | "baseRenderer": { 8 | "modelLocation": "multiblocked:obj/boiler_controller.obj", 9 | "type": "obj" 10 | }, 11 | "formedRenderer": { 12 | "modelLocation": "multiblocked:obj/boiler_controller.obj", 13 | "type": "obj" 14 | }, 15 | "isOpaqueCube": false 16 | } -------------------------------------------------------------------------------- /.minecraft/config/phosphor.json: -------------------------------------------------------------------------------- 1 | { 2 | "enable_illegal_thread_access_warnings": true, 3 | "enable_phosphor": true 4 | } -------------------------------------------------------------------------------- /.minecraft/config/placebo.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # If placebo will dump all event handlers to the log in post init. [default: false] 5 | B:"Dump event handlers"=false 6 | 7 | # If placebo will replace all ShapelessRecipes and ShapelessOreRecipes with FastShapelessRecipes. [default: true] 8 | B:"Fast Shapeless Recipes"=true 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/pneumaticcraft/AmadronTradingSettings.cfg: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Various options to limit the ability of the trading system, to manage spam/abuse on public servers. Most can be changed client-side as well to for example stop notifications if the client wishes. Limitations apply to non-OP players only.", 3 | "maxTradesPerPlayer": 50, 4 | "notifyOfTradeAddition": true, 5 | "notifyOfTradeRemoval": true, 6 | "notifyOfDealMade": true 7 | } -------------------------------------------------------------------------------- /.minecraft/config/pneumaticcraft/HelmetWidgetDefaults.cfg: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Tracks the active upgrades for the Pneumatic Armor", 3 | "active": [ 4 | "pneumaticHelmet.upgrade.coreComponents" 5 | ] 6 | } -------------------------------------------------------------------------------- /.minecraft/config/pneumaticcraft/MicromissileDefaults.cfg: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Stores default Micromissile settings on a per-player basis", 3 | "defaults": {} 4 | } -------------------------------------------------------------------------------- /.minecraft/config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg: -------------------------------------------------------------------------------- 1 | { 2 | "description": "In the \u0027blacklist\u0027 tag you can put the programming puzzle names that need to blacklisted from this instance. When they were used in existing programs already they will be deleted. A list of all programming puzzle names can be seen in \u0027allWidgets\u0027.", 3 | "allWidgets": [], 4 | "blacklist": [] 5 | } -------------------------------------------------------------------------------- /.minecraft/config/recipestages.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | general { 4 | # Toggle whether to display the item recipe in JEI. 5 | B:"Show item recipe"=false 6 | 7 | # Toggle whether to display which stage is needed for a recipe to work in the JEI entries. 8 | B:"Show stage name"=true 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /.minecraft/config/requious.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/config/requious.cfg -------------------------------------------------------------------------------- /.minecraft/config/snad.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | "general configs" { 4 | I:"Speed Increase Multiplier"=2 5 | } 6 | 7 | 8 | -------------------------------------------------------------------------------- /.minecraft/config/teslathingies/fluid_burner_coolant-base.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "water", 4 | "quantity": 100, 5 | "time": 1.2 6 | }, 7 | { 8 | "name": "tf-molten_tesla", 9 | "quantity": 100, 10 | "time": 1.5 11 | } 12 | ] -------------------------------------------------------------------------------- /.minecraft/config/teslathingies/fluid_burner_fuel-base.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "lava", 4 | "quantity": 100, 5 | "ticks": 600 6 | }, 7 | { 8 | "name": "redstone", 9 | "quantity": 100, 10 | "ticks": 1000 11 | } 12 | ] -------------------------------------------------------------------------------- /.minecraft/config/teslathingies/incinerator-base.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "_comment": "Porkchop => 4200 T + maybe Cooked Porkchop", 4 | "input_stack": { 5 | "name": "porkchop" 6 | }, 7 | "power": 4200, 8 | "outputs": [ 9 | { 10 | "name": "cooked_porkchop", 11 | "chance": 0.05 12 | } 13 | ] 14 | } 15 | ] -------------------------------------------------------------------------------- /.minecraft/config/teslathingies/powered_kiln-base.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "_comment": "Cooked Porkchop => Ash", 4 | "input_stack": { 5 | "name": "cooked_porkchop" 6 | }, 7 | "output_stack": { 8 | "ore": "ash" 9 | } 10 | } 11 | ] -------------------------------------------------------------------------------- /.minecraft/config/unidict/ModConfigModule.cfg: -------------------------------------------------------------------------------- 1 | # Configuration file 2 | 3 | modconfigs { 4 | B:Nuclearcraft=true 5 | B:Tconstruct=true 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /.minecraft/config/vanillafix/config_version: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fire_recipes/sky_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "input": { 3 | "item": "wizardry:fairy_dust" 4 | }, 5 | "output": { 6 | "item": "wizardry:sky_dust" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/codex.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:book" 4 | }, 5 | "input": { 6 | "item": "minecraft:book" 7 | }, 8 | "explode": true 9 | } 10 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/mana_orb.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:orb", 4 | "data": 1 5 | }, 6 | "input": { 7 | "item": "wizardry:orb", 8 | "data": 0 9 | }, 10 | "duration": 0, 11 | "harp": false 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/nacre.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "block", 3 | "output": { 4 | "block": "wizardry:nacre_fluid" 5 | }, 6 | "input": { 7 | "type": "forge:ore_dict", 8 | "ore": "nuggetGold" 9 | }, 10 | "consume": true 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/unicorn_dagger.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:unicorn_dagger" 4 | }, 5 | "input": { 6 | "item": "wizardry:unicorn_horn" 7 | }, 8 | "extraInputs": [ 9 | { 10 | "type": "forge:ore_dict", 11 | "ore": "ingotGold" 12 | }, 13 | { 14 | "item": "wizardry:devil_dust" 15 | }, 16 | { 17 | "item": "minecraft:quartz_block", 18 | "data": 0 19 | } 20 | ], 21 | "harp": false 22 | } 23 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_wood_door" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "doorWood" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_wood_fence" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "fenceWood" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_wood_fence_gate" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "fenceGateWood" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_leaves" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "treeLeaves" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_wood_log" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "logWood" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_wood_planks" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "plankWood" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_sapling" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "treeSapling" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_wood_slab", 4 | "data": 0 5 | }, 6 | "input": { 7 | "type": "forge:ore_dict", 8 | "ore": "slabWood" 9 | }, 10 | "duration": 0, 11 | "harp": false 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_wood_stairs" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "stairWood" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/fluid_recipes/wisdom_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "output": { 3 | "item": "wizardry:wisdom_stick" 4 | }, 5 | "input": { 6 | "type": "forge:ore_dict", 7 | "ore": "stickWood" 8 | }, 9 | "duration": 0, 10 | "harp": false 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_backup.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_backup", 3 | "reference_module_id": "effect_backup", 4 | "item": "minecraft:rotten_flesh", 5 | "primary_color": "381700", 6 | "secondary_color": "8e0000", 7 | "mana": { "min": 50 }, 8 | "burnout": { "min": 40 }, 9 | "cooldown": { "min": 20 }, 10 | "duration": { "min": 5, "max": 30 }, 11 | "tags": [ "summon" ], 12 | "hidden_tags": [ "zachriel" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_bouncing.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_bouncing", 3 | "reference_module_id": "effect_bouncing", 4 | "item": "minecraft:slime_ball", 5 | "primary_color": "48ff00", 6 | "secondary_color": "ffff00", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 50 }, 9 | "duration": { "min": 5, "max": 20 }, 10 | "tags": [ "block" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_break.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_break", 3 | "reference_module_id": "effect_break", 4 | "item": "minecraft:sand", 5 | "primary_color": "A52A2A", 6 | "secondary_color": "FFA7A7", 7 | "mana": { "min": 30 }, 8 | "burnout": { "min": 15 }, 9 | "area": { "min": 1, "max": 64 }, 10 | "potency": { "min": 2, "max": 50 }, 11 | "tags": [ "block" ], 12 | "hidden_tags": [ "normal" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_burn.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_burn", 3 | "reference_module_id": "effect_burn", 4 | "item": "minecraft:blaze_powder", 5 | "primary_color": "FF3C3C", 6 | "secondary_color": "A10000", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 50 }, 9 | "area": { "min": 2, "max": 16 }, 10 | "duration": { "min": 5, "max": 20 }, 11 | "tags": [ "fire", "combat", "block" ], 12 | "hidden_tags": [ "normal" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_crasher_fall.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_crasher_fall", 3 | "reference_module_id": "effect_crasher_fall", 4 | "item": "minecraft:obsidian", 5 | "primary_color": "FF0000", 6 | "secondary_color": "FF0000", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 300 }, 9 | "range": { "min": 2, "max": 20 }, 10 | "duration": { "min": 5, "max": 40 }, 11 | "tags": [ "gravity", "combat", "movement" ], 12 | "hidden_tags": [ "uriel" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_decay.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_decay", 3 | "reference_module_id": "effect_decay", 4 | "item": "minecraft:fermented_spider_eye", 5 | "primary_color": "208000", 6 | "secondary_color": "000000", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 50 }, 9 | "duration": { "min": 10, "max": 60 }, 10 | "potency": { "min": 1, "max": 20 }, 11 | "tags": [ "decay", "combat", "block" ], 12 | "hidden_tags": [ "zachriel" ] 13 | } -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_extract.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_extract", 3 | "reference_module_id": "effect_extract", 4 | "item": "minecraft:blaze_rod", 5 | "primary_color": "FFFFFF", 6 | "secondary_color": "FF0000", 7 | "potency": { "min": 1, "max": 64 }, 8 | "duration": { "min": 25, "max": 80 }, 9 | "mana": { "min": 100 }, 10 | "burnout": { "min": 200 }, 11 | "tags": [ "automation" ], 12 | "hidden_tags": [ "normal" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_frost.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_frost", 3 | "reference_module_id": "effect_frost", 4 | "item": "minecraft:snowball", 5 | "primary_color": "FFFFFF", 6 | "secondary_color": "FFFFFF", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 50 }, 9 | "area": { "min": 1, "max": 16 }, 10 | "duration": { "min": 5, "max": 40 }, 11 | "tags": [ "water", "combat", "block" ], 12 | "hidden_tags": [ "normal" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_grace.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_grace", 3 | "reference_module_id": "effect_grace", 4 | "item": "minecraft:waterlily", 5 | "primary_color": "FFFFFF", 6 | "secondary_color": "ffee00", 7 | "mana": { "min": 50 }, 8 | "burnout": { "min": 10 }, 9 | "duration": { "min": 5, "max": 20 }, 10 | "tags": [ "air", "combat" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_leap.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_leap", 3 | "reference_module_id": "effect_leap", 4 | "item": "minecraft:rabbit_foot", 5 | "primary_color": "FFFFFF", 6 | "secondary_color": "FFFFFF", 7 | "mana": { "min": 50 }, 8 | "burnout": { "min": 20 }, 9 | "potency": { "min": 1, "max": 64 }, 10 | "tags": [ "movement" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_leech.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_leech", 3 | "reference_module_id": "effect_leech", 4 | "item": "minecraft:lead", 5 | "primary_color": "00ffff", 6 | "secondary_color": "00ff61", 7 | "mana": { "min": 35 }, 8 | "burnout": { "min": 45 }, 9 | "potency": { "min": 4, "max": 30 }, 10 | "tags": [ "combat" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_light", 3 | "reference_module_id": "effect_light", 4 | "item": "minecraft:glowstone", 5 | "primary_color": "00FFFF", 6 | "secondary_color": "FF0000", 7 | "mana": { "min": 50 }, 8 | "burnout": { "min": 0 }, 9 | "tags": [ "light" ], 10 | "hidden_tags": [ "normal" ] 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_low_gravity.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_low_gravity", 3 | "reference_module_id": "effect_low_gravity", 4 | "item": "minecraft:feather", 5 | "primary_color": "FFFFFF", 6 | "secondary_color": "00FFFF", 7 | "mana": { "min": 60 }, 8 | "burnout": { "min": 40 }, 9 | "potency": { "min": 2, "max": 16 }, 10 | "duration": { "min": 5, "max": 40 }, 11 | "tags": [ "gravity", "movement" ], 12 | "hidden_tags": [ "uriel" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_place.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_place", 3 | "reference_module_id": "effect_place", 4 | "item": "minecraft:clay", 5 | "primary_color": "2EFFFF", 6 | "secondary_color": "F3FFFF", 7 | "mana": { "min": 30 }, 8 | "burnout": { "min": 20 }, 9 | "area": { "min": 1, "max": 64 }, 10 | "tags": [ "block" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_shatter.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_shatter", 3 | "reference_module_id": "effect_shatter", 4 | "item": "minecraft:packed_ice", 5 | "primary_color": "C4C4C4", 6 | "secondary_color": "0080FF", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 50 }, 9 | "potency": { "min": 2, "max": 20 }, 10 | "tags": [ "water", "combat" ], 11 | "hidden_tags": [ "normal" ] 12 | } -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_sonic.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_sonic", 3 | "reference_module_id": "effect_sonic", 4 | "item": "minecraft:noteblock", 5 | "primary_color": "00d8ff", 6 | "secondary_color": "ff00ff", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 50 }, 9 | "area": { "min": 2, "max": 8 }, 10 | "potency": { "min": 4, "max": 24 }, 11 | "tags": [ "air", "explosion", "combat" ], 12 | "hidden_tags": [ "normal" ] 13 | } -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_substitution.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_substitution", 3 | "reference_module_id": "effect_substitution", 4 | "item": "minecraft:ender_eye", 5 | "primary_color": "FF0000", 6 | "secondary_color": "00FFFF", 7 | "mana": { "min": 50 }, 8 | "burnout": { "min": 100 }, 9 | "area": { "min": 10, "max": 64 }, 10 | "tags": [ "block", "movement" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_suffocate.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_suffocate", 3 | "reference_module_id": "effect_suffocate", 4 | "item": "minecraft:fish", 5 | "meta": 3, 6 | "primary_color": "00003C", 7 | "secondary_color": "2A2A70", 8 | "mana": { "min": 100 }, 9 | "burnout": { "min": 50 }, 10 | "duration": { "min": 5, "max": 20 }, 11 | "tags": [ "water", "combat" ], 12 | "hidden_tags": [ "normal" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_telekinesis.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_telekinesis", 3 | "reference_module_id": "effect_telekinesis", 4 | "item": "minecraft:reeds", 5 | "primary_color": "FFFFFF", 6 | "secondary_color": "FFFFFF", 7 | "mana": { "min": 5 }, 8 | "burnout": { "min": 5 }, 9 | "area": { "min": 3, "max": 10 }, 10 | "tags": [ "continuous" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_thrive.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_thrive", 3 | "reference_module_id": "effect_thrive", 4 | "item": "minecraft:bone", 5 | "primary_color": "00FFFF", 6 | "secondary_color": "00FFFF", 7 | "mana": { "min": 100 }, 8 | "burnout": { "min": 50 }, 9 | "potency": { "min": 3, "max": 20 }, 10 | "tags": [ "life" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_time_lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_time_lock", 3 | "reference_module_id": "effect_time_lock", 4 | "item": "minecraft:chorus_fruit", 5 | "primary_color": "ff1952", 6 | "secondary_color": "18fff3", 7 | "mana": { "min": 300 }, 8 | "burnout": { "min": 400 }, 9 | "cooldown": { "min": 100 }, 10 | "duration": { "min": 40, "max": 200 }, 11 | "tags": [ "time" ], 12 | "hidden_tags": [ "zachriel" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_time_slow.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_time_slow", 3 | "reference_module_id": "effect_time_slow", 4 | "item": "minecraft:red_flower", 5 | "primary_color": "8D0000", 6 | "secondary_color": "FFA5A5", 7 | "mana": { "min": 300 }, 8 | "burnout": { "min": 200 }, 9 | "cooldown": { "min": 80 }, 10 | "potency": { "min": 2, "max": 20 }, 11 | "duration": { "min": 5, "max": 40 }, 12 | "tags": [ "time" ], 13 | "hidden_tags": [ "zachriel" ] 14 | } 15 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_vanish.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_vanish", 3 | "reference_module_id": "effect_vanish", 4 | "item": "minecraft:golden_carrot", 5 | "primary_color": "FFFFFF", 6 | "secondary_color": "42D1D1", 7 | "mana": { "min": 180 }, 8 | "burnout": { "min": 150 }, 9 | "duration": { "min": 5, "max": 60 }, 10 | "tags": [ ], 11 | "hidden_tags": [ "raziel" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/effect_zoom.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "effect_zoom", 3 | "reference_module_id": "effect_zoom", 4 | "item": "wizardry:fairy_wings", 5 | "primary_color": "f442ce", 6 | "secondary_color": "41d9f4", 7 | "mana": { "min": 50 }, 8 | "burnout": { "min": 30 }, 9 | "cooldown": { "min": 10 }, 10 | "range": { "min": 10, "max": 32 }, 11 | "tags": [ "movement" ], 12 | "hidden_tags": [ "normal" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/modifier_extend_time.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "modifier_extend_time", 3 | "reference_module_id": "modifier", 4 | "item": "minecraft:gold_nugget", 5 | "modifiers": [ 6 | { "attribute": "duration", "operation": "add", "amount": 1 }, 7 | { "attribute": "mana", "operation": "multiply", "amount": 1.1 }, 8 | { "attribute": "burnout", "operation": "multiply", "amount": 1.1 } 9 | ], 10 | "tags": [ ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/modifier_increase_aoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "modifier_increase_aoe", 3 | "reference_module_id": "modifier", 4 | "item": "minecraft:emerald", 5 | "modifiers": [ 6 | { "attribute": "area", "operation": "add", "amount": 1 }, 7 | { "attribute": "mana", "operation": "multiply", "amount": 1.2 }, 8 | { "attribute": "burnout", "operation": "multiply", "amount": 1.2 } 9 | ], 10 | "tags": [ ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/modifier_increase_speed.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "modifier_increase_speed", 3 | "reference_module_id": "modifier", 4 | "item": "minecraft:dragon_breath", 5 | "modifiers": [ 6 | { "attribute": "speed", "operation": "add", "amount": 1 }, 7 | { "attribute": "mana", "operation": "multiply", "amount": 1.1 }, 8 | { "attribute": "burnout", "operation": "multiply", "amount": 1.1 } 9 | ], 10 | "tags": [ ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/shape_beam.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "shape_beam", 3 | "reference_module_id": "shape_beam", 4 | "item": "wizardry:unicorn_horn", 5 | "mana": { "min": 5 }, 6 | "burnout": { "min": 2 }, 7 | "range": { "min": 10, "max": 30 }, 8 | "potency": { "min": 1, "max": 10 }, 9 | "tags": [ "continuous" ], 10 | "hidden_tags": [ "normal" ] 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/shape_cone.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "shape_cone", 3 | "reference_module_id": "shape_cone", 4 | "item": "minecraft:gunpowder", 5 | "mana": { "min": 10 }, 6 | "burnout": { "min": 10 }, 7 | "cooldown": { "min": 30 }, 8 | "chargupup": { "min": 5 }, 9 | "range": { "min": 5, "max": 16 }, 10 | "potency": { "min": 5, "max": 32 }, 11 | "tags": [ "area" ], 12 | "hidden_tags": [ "normal" ] 13 | } 14 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/shape_projectile.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "shape_projectile", 3 | "reference_module_id": "shape_projectile", 4 | "item": "minecraft:nether_wart", 5 | "mana": { "min": 30 }, 6 | "burnout": { "min": 20 }, 7 | "cooldown": { "min": 20 }, 8 | "range": { "min": 15, "max": 60 }, 9 | "speed": { "min": 1, "max": 20 }, 10 | "tags": [ "projectile" ], 11 | "hidden_tags": [ "normal" ] 12 | } 13 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/shape_self.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "shape_self", 3 | "reference_module_id": "shape_self", 4 | "item": "minecraft:diamond", 5 | "mana": { "min": 30 }, 6 | "burnout": { "min": 20 }, 7 | "cooldown": { "min": 30 }, 8 | "tags": [ ], 9 | "hidden_tags": [ "normal" ] 10 | } 11 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/shape_touch.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "shape_touch", 3 | "reference_module_id": "shape_touch", 4 | "item": "minecraft:beef", 5 | "mana": { "min": 30 }, 6 | "burnout": { "min": 20 }, 7 | "cooldown": { "min": 30 }, 8 | "tags": [ ], 9 | "hidden_tags": [ "normal" ] 10 | } 11 | -------------------------------------------------------------------------------- /.minecraft/config/wizardry/wizmodules/shape_zone.json: -------------------------------------------------------------------------------- 1 | { 2 | "sub_module_id": "shape_zone", 3 | "reference_module_id": "shape_zone", 4 | "item": "minecraft:glass", 5 | "mana": { "min": 10 }, 6 | "burnout": { "min": 5 }, 7 | "cooldown": { "min": 20 }, 8 | "area": { "min": 3, "max": 10 }, 9 | "potency": { "min": 1, "max": 20 }, 10 | "range": { "min": 1, "max": 20 }, 11 | "duration": { "min": 10, "max": 100 }, 12 | "tags": [ "area", "lingering" ], 13 | "hidden_tags": [ "normal" ] 14 | } 15 | -------------------------------------------------------------------------------- /.minecraft/mods/AdvancedTweakery-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/mods/AdvancedTweakery-1.0.jar -------------------------------------------------------------------------------- /.minecraft/mods/trutils-1.1.5-build111.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/mods/trutils-1.1.5-build111.jar -------------------------------------------------------------------------------- /.minecraft/oresources/base/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | base.part.crystal=%s晶体 -------------------------------------------------------------------------------- /.minecraft/oresources/deepmoblearning/lang/en_us.lang: -------------------------------------------------------------------------------- 1 | item.deepmoblearning.soot_covered_plate.name=Soot-covered Plate 2 | tile.deepmoblearning.machine_casing.name=Soot-covered Machine Casing -------------------------------------------------------------------------------- /.minecraft/oresources/deepmoblearning/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | item.deepmoblearning.soot_covered_plate.name=曜黑板材 2 | tile.deepmoblearning.machine_casing.name=曜黑板材机械外壳 -------------------------------------------------------------------------------- /.minecraft/oresources/enderio/lang/en_us.lang: -------------------------------------------------------------------------------- 1 | item.item_material.silicon.name=Coarse Silicon 2 | item.item_material.glazed_nether_brick.name=Ultra High Temperature Material Brick -------------------------------------------------------------------------------- /.minecraft/oresources/enderio/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | item.item_material.silicon.name=粗硅 2 | item.item_material.glazed_nether_brick.name=超高温材料砖 -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/lang/en_us.lang: -------------------------------------------------------------------------------- 1 | tile.ec.frame.name=Tough Frame 2 | 3 | tile.ec.lamp_glowstone.name=Tough Lamp 4 | tile.ec.lamp_luminessence.name=Tough Lamp 5 | 6 | tile.ec.trimmed_crystaltine.name=Tough Block 7 | tile.ec.trimmed_diamond.name=Tough Block 8 | tile.ec.trimmed_emerald.name=Tough Block 9 | tile.ec.trimmed_gold.name=Tough Block 10 | tile.ec.trimmed_iron.name=Tough Block 11 | tile.ec.trimmed_ultimate.name=Tough Block -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | tile.ec.frame.name=高强合金框架 2 | 3 | tile.ec.lamp_glowstone.name=高强合金灯 4 | tile.ec.lamp_luminessence.name=高强合金灯 5 | 6 | tile.ec.trimmed_crystaltine.name=高强合金块 7 | tile.ec.trimmed_diamond.name=高强合金块 8 | tile.ec.trimmed_emerald.name=高强合金块 9 | tile.ec.trimmed_gold.name=高强合金块 10 | tile.ec.trimmed_iron.name=高强合金块 11 | tile.ec.trimmed_ultimate.name=高强合金块 -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/blocks/compressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/extendedcrafting/textures/blocks/compressor.png -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_advanced_catalyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/extendedcrafting/textures/items/material_advanced_catalyst.png -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_advanced_catalyst.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_advanced_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/extendedcrafting/textures/items/material_advanced_component.png -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_advanced_component.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_basic_catalyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/extendedcrafting/textures/items/material_basic_catalyst.png -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_basic_catalyst.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_basic_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/extendedcrafting/textures/items/material_basic_component.png -------------------------------------------------------------------------------- /.minecraft/oresources/extendedcrafting/textures/items/material_basic_component.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/blockstates/furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": { "model": "brick_kiln" }, 4 | "facing=south": { "model": "brick_kiln", "y": 180 }, 5 | "facing=west": { "model": "brick_kiln", "y": 270 }, 6 | "facing=east": { "model": "brick_kiln", "y": 90 } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/blockstates/lit_furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": { "model": "lit_brick_kiln" }, 4 | "facing=south": { "model": "lit_brick_kiln", "y": 180 }, 5 | "facing=west": { "model": "lit_brick_kiln", "y": 270 }, 6 | "facing=east": { "model": "lit_brick_kiln", "y": 90 } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/lang/en_us.lang: -------------------------------------------------------------------------------- 1 | tile.furnace.name=Brick Kiln 2 | container.furnace=Brick Kiln 3 | subtitles.block.furnace.fire_crackle=Brick Kiln crackles -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | tile.furnace.name=砖窑 2 | container.furnace=砖窑 3 | subtitles.block.furnace.fire_crackle=砖窑:噼啪作响 -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/models/block/brick_kiln.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/orientable", 3 | "textures": { 4 | "top": "blocks/brick_kiln_top", 5 | "front": "blocks/brick_kiln_front_off", 6 | "side": "blocks/brick_kiln_side" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/models/block/lit_brick_kiln.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/orientable", 3 | "textures": { 4 | "top": "blocks/brick_kiln_top", 5 | "front": "blocks/brick_kiln_front_on", 6 | "side": "blocks/brick_kiln_side" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/models/item/furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/brick_kiln" 3 | } 4 | -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/textures/blocks/brick_kiln_front_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/minecraft/textures/blocks/brick_kiln_front_off.png -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/textures/blocks/brick_kiln_front_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/minecraft/textures/blocks/brick_kiln_front_on.png -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/textures/blocks/brick_kiln_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/minecraft/textures/blocks/brick_kiln_side.png -------------------------------------------------------------------------------- /.minecraft/oresources/minecraft/textures/blocks/brick_kiln_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/minecraft/textures/blocks/brick_kiln_top.png -------------------------------------------------------------------------------- /.minecraft/oresources/pneumaticcraft/lang/en_us.lang: -------------------------------------------------------------------------------- 1 | tile.compressed_iron_block.name=Weathering Steel Block 2 | 3 | item.ingot_iron_compressed.name=Weathering Steel Ingot 4 | item.compressed_iron_gear.name=Weathering Steel Gear -------------------------------------------------------------------------------- /.minecraft/oresources/pneumaticcraft/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | tile.compressed_iron_block.name=耐候钢块 2 | 3 | item.ingot_iron_compressed.name=耐候钢锭 4 | item.compressed_iron_gear.name=耐候钢齿轮 -------------------------------------------------------------------------------- /.minecraft/oresources/survivalist/textures/items/hatchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/survivalist/textures/items/hatchet.png -------------------------------------------------------------------------------- /.minecraft/oresources/survivalist/textures/items/pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/survivalist/textures/items/pick.png -------------------------------------------------------------------------------- /.minecraft/oresources/survivalist/textures/items/plant_fibres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/oresources/survivalist/textures/items/plant_fibres.png -------------------------------------------------------------------------------- /.minecraft/resources/base/textures/items/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/base/textures/items/gear.png -------------------------------------------------------------------------------- /.minecraft/resources/base/textures/items/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/base/textures/items/plate.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/advance_machine_circuitry.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/advance_machine_circuitry", 6 | "particle": "contenttweaker:blocks/advance_machine_circuitry" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/aura_coal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/aura_coal_block", 6 | "particle": "contenttweaker:blocks/aura_coal_block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/basic_machine_casing.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/basic_machine_casing", 6 | "particle": "contenttweaker:blocks/basic_machine_casing" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/basic_machine_circuitry.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/basic_machine_circuitry", 6 | "particle": "contenttweaker:blocks/basic_machine_circuitry" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/ember_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/ember_crystal_block", 6 | "particle": "contenttweaker:blocks/ember_crystal_block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/ender_portal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "contenttweaker:ender_portal", 5 | "transform": "forge:default-block" 6 | }, 7 | "variants": { 8 | "normal": [{}], 9 | "inventory": [{}] 10 | } 11 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/endorelithium.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/endorelithium", 6 | "particle": "contenttweaker:blocks/endorelithium" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/endorerutile.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/endorerutile", 6 | "particle": "contenttweaker:blocks/endorerutile" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/eutrophic_water.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "forge:fluid", 5 | "custom": { 6 | "fluid": "eutrophic_water" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}] 11 | } 12 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/germanium_slurry.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "forge:fluid", 5 | "custom": { 6 | "fluid": "germanium_slurry" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}] 11 | } 12 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/glaze_slurry.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "forge:fluid", 5 | "custom": { 6 | "fluid": "glaze_slurry" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}] 11 | } 12 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/hdpe.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "forge:fluid", 5 | "custom": { 6 | "fluid": "hdpe" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}] 11 | } 12 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/infused_slag_slurry.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "forge:fluid", 5 | "custom": { 6 | "fluid": "infused_slag_slurry" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}] 11 | } 12 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/ironcoal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/ironcoal_ore", 6 | "particle": "contenttweaker:blocks/ironcoal_ore" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/materials/extreme_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "base:blocks/block", 6 | "particle": "base:blocks/block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/materials/germanium_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "base:blocks/block", 6 | "particle": "base:blocks/block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/materials/high_strength_aluminum_alloy_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "base:blocks/block", 6 | "particle": "base:blocks/block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/materials/pure_iron_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "base:blocks/block", 6 | "particle": "base:blocks/block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/materials/rose_gold_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "base:blocks/block", 6 | "particle": "base:blocks/block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/materials/tough_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "base:blocks/block", 6 | "particle": "base:blocks/block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/sky_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/sky_block", 6 | "particle": "contenttweaker:blocks/sky_block" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/slag_waste_slurry.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "forge:fluid", 5 | "custom": { 6 | "fluid": "slag_waste_slurry" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}] 11 | } 12 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/tartaric_acid_solution.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "forge:fluid", 5 | "custom": { 6 | "fluid": "tartaric_acid_solution" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}] 11 | } 12 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/toughed_machine_casing.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/toughed_machine_casing", 6 | "particle": "contenttweaker:blocks/toughed_machine_casing" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/udorealuminum.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/udorealuminum", 6 | "particle": "contenttweaker:blocks/udorealuminum" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/udoreboron.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/udoreboron", 6 | "particle": "contenttweaker:blocks/udoreboron" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/udorelithium.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/udorelithium", 6 | "particle": "contenttweaker:blocks/udorelithium" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/udoremagnesium.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/udoremagnesium", 6 | "particle": "contenttweaker:blocks/udoremagnesium" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/udorenickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/udorenickel", 6 | "particle": "contenttweaker:blocks/udorenickel" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/udorethorium.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/udorethorium", 6 | "particle": "contenttweaker:blocks/udorethorium" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/blockstates/udoreuranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "textures": { 5 | "texture": "contenttweaker:blocks/udoreuranium", 6 | "particle": "contenttweaker:blocks/udoreuranium" 7 | }, 8 | "model": "base:storage", 9 | "uvlock": true, 10 | "transform": "forge:default-block" 11 | }, 12 | "variants": { 13 | "normal": [{}], 14 | "inventory": [{}] 15 | } 16 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/Aura_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/aura_coal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/Blast_furnace_fuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/blast_furnace_fuel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/Insulating_substrate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/insulating_substrate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/PCB_Substrate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/PCB_Substrate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/Token_of_Elven_Friendship_Big.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/Token_of_Elven_Friendship_Big" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/Token_of_Elven_Friendship_Medium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/Token_of_Elven_Friendship_Medium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/Token_of_Elven_Friendship_Small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/Token_of_Elven_Friendship_Small" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/aluminum_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/aluminum_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/aluminum_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/aluminum_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/aluminum_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/aluminum_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/bark_wisdomwood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/bark_wisdomwood" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/base_board_of_basic_ic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/base_board_of_basic_ic" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/boron_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/boron_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/boron_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/boron_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/boron_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/boron_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/calm.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/calm" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/compressed_crystaltine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/compressed_crystaltine" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/compressed_draconium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/compressed_draconium" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/compressed_signalum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/compressed_signalum" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/contains_impurities_silicon_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/contains_impurities_silicon_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/copper_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/copper_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/copper_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/copper_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/copper_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/copper_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/crude_silicon_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/crude_silicon_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/crude_steel_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/crude_steel_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/crude_steel_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/crude_steel_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/crude_steel_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/crude_steel_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/damaged_data_pad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/damaged_data_pad" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/damaged_psd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/damaged_psd" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/dictionary_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/dictionary_paper" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/dilithium_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/dilithium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/dust_crude_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/dust_crude_steel" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/elixir_eyesight.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/elixir_eyesight" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/end_portal_frame_debris.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/end_portal_frame_debris" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/excavation.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/excavation" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/four_leaf_clover.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/four_leaf_clover" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/four_leaf_clover_necklace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/four_leaf_clover_necklace" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/fury.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/fury" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/ge_transistor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ge_transistor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/ge_wafer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ge_wafer" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_gear.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/gear" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_integrated_circuit_board.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/germanium_integrated_circuit_board" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/nugget" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/rod" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/germanium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/glaze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/glaze" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/glazed_refractory_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/glazed_refractory_brick" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/gold_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/gold_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/gold_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/gold_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/gold_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/gold_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/graphene_nickel_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/graphene_nickel_plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/gravitational_anomaly_container.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/gravitational_anomaly_container" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/high_strength_aluminum_alloy_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/high_strength_aluminum_alloy_gear.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/gear" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/high_strength_aluminum_alloy_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/high_strength_aluminum_alloy_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/nugget" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/high_strength_aluminum_alloy_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/high_strength_aluminum_alloy_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/rod" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/inactive_energytablet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/inactive_energytablet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/inactive_view_cell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/inactive_view_cell" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/infused_crude_silicon_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/infused_crude_silicon_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/infused_protective_layer_crude_silicon_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/infused_protective_layer_crude_silicon_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iridium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iridium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iridium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iridium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iridium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iridium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iron_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iron_compressed_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iron_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iron_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iron_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iron_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/iron_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lead_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lead_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lead_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lead_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lead_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lead_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lithium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lithium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lithium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lithium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lithium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/lithium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/magnesium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/magnesium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/magnesium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/magnesium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/magnesium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/magnesium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mana_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/mana_crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mana_infused_crude_silicon_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/mana_infused_crude_silicon_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mana_petals.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/mana_petals" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/menril_essence_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/menril_essence_crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mithril_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mithril_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mithril_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mithril_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mithril_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mithril_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/mystery_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/mystery_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/nickel_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/nickel_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/nickel_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/nickel_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/nickel_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/nickel_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/osmium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/osmium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/osmium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/osmium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/osmium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/osmium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/platinum_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/platinum_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/platinum_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/platinum_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/platinum_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/platinum_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/pure_iron_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/pure_iron_gear.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/gear" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/pure_iron_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/pure_iron_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/nugget" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/pure_iron_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/pure_iron_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/rod" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/raw_stamp_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/raw_stamp_nugget" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/refractory_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/refractory_brick" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/refractory_clay_ball.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/refractory_clay_ball" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/research_icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/research_icon" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/research_point_Lv0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/research_point_Lv0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/research_point_Lv1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/research_point_Lv1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/research_point_Lv1_incomplete.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/research_point_Lv1_incomplete" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rose_gold_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rose_gold_gear.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/gear" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rose_gold_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rose_gold_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/nugget" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rose_gold_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rose_gold_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/rod" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rune.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/rune" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rune1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/rune1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/rusty_iron_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/rusty_iron_ingot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/sensitive_element.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/sensitive_element" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/si_gr_ge_transistor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/si_gr_ge_transistor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/si_transistor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/si_transistor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/silicon_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/silicon_dust" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/silver_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/silver_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/silver_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/silver_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/silver_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/silver_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/soul_extract.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/soul_extract" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/stamp_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/stamp_nugget" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/straw_rope.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/straw_rope" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tartaric_acid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/tartaric_acid" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/teleport_rune.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/teleport_rune" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thin_film_transistor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/thin_film_transistor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thirdrebirth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/thirdrebirth" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thorium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thorium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thorium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thorium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thorium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/thorium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tin_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tin_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tin_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tin_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tin_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tin_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tinned_copper_wire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/tinned_copper_wire" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/titanium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/titanium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/titanium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/titanium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/titanium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/titanium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tough_alloy_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/tough_alloy_plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tough_gear.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/gear" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tritanium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tritanium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tritanium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tritanium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tritanium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/tritanium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/uranium_clump.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/clump" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/uranium_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/crystal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/uranium_ore_clean_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_clean_crushed_infused" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/uranium_ore_crushed_enriched.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_enriched" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/uranium_ore_crushed_infused.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/ore_crushed_infused", 5 | "layer1": "contenttweaker:items/ore_crushed_infused_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/uranium_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "base:items/shard" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/villager_language_dictionary.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/villager_language_dictionary" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/models/item/wine_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "contenttweaker:items/wine_stone" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/Aura_coal_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/Aura_coal_block.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/Overworld_Anchor_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/Overworld_Anchor_point.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/advance_machine_circuitry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/advance_machine_circuitry.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/aura_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/aura_flower.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/basic_machine_casing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/basic_machine_casing.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/basic_machine_circuitry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/basic_machine_circuitry.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/ember_crystal_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/ember_crystal_block.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/endOreLithium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/endOreLithium.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/endOreRutile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/endOreRutile.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/ender_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/ender_portal.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/ironcoal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/ironcoal_ore.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/mana_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/mana_flower.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/ore_aura_infusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/ore_aura_infusion.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/ore_aura_infusion_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/ore_aura_infusion_shadow.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/ore_enriched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/ore_enriched.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/ore_enriched_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/ore_enriched_shadow.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/sky_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/sky_block.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/toughed_machine_casing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/toughed_machine_casing.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/udOreAluminum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/udOreAluminum.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/udOreBoron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/udOreBoron.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/udOreLithium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/udOreLithium.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/udOreMagnesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/udOreMagnesium.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/udOreNickel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/udOreNickel.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/udOreThorium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/udOreThorium.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/blocks/udOreUranium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/blocks/udOreUranium.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/fluids/hdpe_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/fluids/hdpe_flow.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/fluids/hdpe_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/fluids/hdpe_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/fluids/hdpe_still.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/fluids/hdpe_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 16, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/PCB_Substrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/PCB_Substrate.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/aura_coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/aura_coal.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/bark_wisdomwood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/bark_wisdomwood.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/blast_furnace_fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/blast_furnace_fuel.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/calm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/calm.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/compressed_crystaltine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/compressed_crystaltine.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/compressed_draconium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/compressed_draconium.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/compressed_signalum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/compressed_signalum.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/contains_impurities_silicon_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/contains_impurities_silicon_dust.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/crude_silicon_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/crude_silicon_dust.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/crushed_enriched_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/crushed_enriched_ore.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/damaged_data_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/damaged_data_pad.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/damaged_psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/damaged_psd.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/dictionary_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/dictionary_paper.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/dust_crude_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/dust_crude_steel.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/elixir_eyesight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/elixir_eyesight.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/end_portal_frame_debris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/end_portal_frame_debris.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/excavation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/excavation.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/four_leaf_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/four_leaf_clover.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/four_leaf_clover_necklace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/four_leaf_clover_necklace.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/fury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/fury.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/ge_transistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/ge_transistor.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/ge_wafer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/ge_wafer.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/germanium_integrated_circuit_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/germanium_integrated_circuit_board.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/germanium_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/germanium_matrix.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/glaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/glaze.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/glazed_refractory_brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/glazed_refractory_brick.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/graphene_nickel_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/graphene_nickel_plate.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/gravitational_anomaly_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/gravitational_anomaly_container.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/inactive_energytablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/inactive_energytablet.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/inactive_view_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/inactive_view_cell.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/infused_crude_silicon_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/infused_crude_silicon_dust.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/infused_protective_layer_crude_silicon_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/infused_protective_layer_crude_silicon_dust.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/insulating_substrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/insulating_substrate.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/iron_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/iron_rod.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/mana_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/mana_crystal.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/mana_infused_crude_silicon_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/mana_infused_crude_silicon_dust.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/mana_petals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/mana_petals.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/menril_essence_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/menril_essence_crystal.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/mystery_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/mystery_dust.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/ore_clean_crushed_infused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/ore_clean_crushed_infused.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/ore_crushed_enriched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/ore_crushed_enriched.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/ore_crushed_infused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/ore_crushed_infused.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/ore_crushed_infused_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/ore_crushed_infused_overlay.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/raw_stamp_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/raw_stamp_nugget.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/refractory_brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/refractory_brick.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/refractory_clay_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/refractory_clay_ball.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/research_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/research_icon.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/research_point_Lv0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/research_point_Lv0.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/research_point_Lv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/research_point_Lv1.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/research_point_Lv1_incomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/research_point_Lv1_incomplete.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/rune.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/rune1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/rune1.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/rusty_iron_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/rusty_iron_ingot.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/sensitive_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/sensitive_element.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/si_gr_ge_transistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/si_gr_ge_transistor.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/si_transistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/si_transistor.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/silicon_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/silicon_dust.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/soul_extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/soul_extract.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/stamp_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/stamp_nugget.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/straw_rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/straw_rope.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/tartaric_acid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/tartaric_acid.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/teleport_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/teleport_rune.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/thin_film_transistor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/thin_film_transistor.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/thirdrebirth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/thirdrebirth.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/tinned_copper_wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/tinned_copper_wire.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/token_of_elven_friendship_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/token_of_elven_friendship_big.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/token_of_elven_friendship_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/token_of_elven_friendship_medium.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/token_of_elven_friendship_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/token_of_elven_friendship_small.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/tough_alloy_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/tough_alloy_plate.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/villager_language_dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/villager_language_dictionary.png -------------------------------------------------------------------------------- /.minecraft/resources/contenttweaker/textures/items/wine_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/contenttweaker/textures/items/wine_stone.png -------------------------------------------------------------------------------- /.minecraft/resources/hardcoreitemstages/textures/items/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/hardcoreitemstages/textures/items/unknown.png -------------------------------------------------------------------------------- /.minecraft/resources/mekanism/textures/items/enrichedalloy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/mekanism/textures/items/enrichedalloy.png -------------------------------------------------------------------------------- /.minecraft/resources/mekatweaker/lang/en_us.lang: -------------------------------------------------------------------------------- 1 | infuse.crystaltine=crystaltine 2 | infuse.draconium=draconium 3 | infuse.signalum=signalum 4 | infuse.ember=ember -------------------------------------------------------------------------------- /.minecraft/resources/mekatweaker/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | infuse.crystaltine=晶素 2 | infuse.draconium=龙素 3 | infuse.signalum=信素 4 | infuse.ember=灰烬 -------------------------------------------------------------------------------- /.minecraft/resources/mekatweaker/textures/blocks/infuse/crystaltine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/mekatweaker/textures/blocks/infuse/crystaltine.png -------------------------------------------------------------------------------- /.minecraft/resources/mekatweaker/textures/blocks/infuse/draconium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/mekatweaker/textures/blocks/infuse/draconium.png -------------------------------------------------------------------------------- /.minecraft/resources/mekatweaker/textures/blocks/infuse/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/mekatweaker/textures/blocks/infuse/ember.png -------------------------------------------------------------------------------- /.minecraft/resources/mekatweaker/textures/blocks/infuse/signalum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/mekatweaker/textures/blocks/infuse/signalum.png -------------------------------------------------------------------------------- /.minecraft/resources/modularmachinery/models/block/blockcontroller_boiler.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "modularmachinery:block/blockmodel_overlay_orientable_all", 3 | "textures": { 4 | "bg_all": "modularmachinery:blocks/blockcasing_plain", 5 | "ov_top": "modularmachinery:blocks/overlay_transparent", 6 | "ov_side": "modularmachinery:blocks/overlay_transparent", 7 | "ov_front": "modularmachinery:blocks/overlay_boiler_controller" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.minecraft/resources/modularmachinery/textures/blocks/overlay_boiler_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/modularmachinery/textures/blocks/overlay_boiler_controller.png -------------------------------------------------------------------------------- /.minecraft/resources/modularmachinery/textures/gui/guicontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/modularmachinery/textures/gui/guicontroller.png -------------------------------------------------------------------------------- /.minecraft/resources/modularmachinery/textures/gui/guicontroller_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/modularmachinery/textures/gui/guicontroller_large.png -------------------------------------------------------------------------------- /.minecraft/resources/modularmachinery/textures/gui/guifactory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/modularmachinery/textures/gui/guifactory.png -------------------------------------------------------------------------------- /.minecraft/resources/modularmachinery/textures/items/blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Project-AT/ThirdRebirth/8268885cc41a0bce3179d97cd3bf2fd739bb6e41/.minecraft/resources/modularmachinery/textures/items/blueprint.png -------------------------------------------------------------------------------- /.minecraft/resources/mysticalworld/lang/en_us.lang: -------------------------------------------------------------------------------- 1 | tile.gall_apple_crop.name=Gall Apple -------------------------------------------------------------------------------- /.minecraft/resources/mysticalworld/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | tile.gall_apple_crop.name=虫瘿苹果 -------------------------------------------------------------------------------- /.minecraft/resources/netherendingores/lang/zh_cn.lang: -------------------------------------------------------------------------------- 1 | tile.netherendingores:ore_end_modded_1.dilithium_ore.name=末地二锂矿石 2 | tile.netherendingores:ore_end_modded_1.tritanium_ore.name=末地三钛矿石 -------------------------------------------------------------------------------- /.minecraft/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | {"pack":{"pack_format":3,"description":"B.A.S.E External Resources"}} -------------------------------------------------------------------------------- /.minecraft/scripts/ContentTweaker/Enchantment/normal.zs: -------------------------------------------------------------------------------- 1 | #priority 30 2 | #modloaded trutils 3 | #loader contenttweaker 4 | 5 | import crafttweaker.entity.IEntityEquipmentSlot; 6 | import mods.contenttweaker.enchantments.EnchantmentBuilder; 7 | 8 | var critical as EnchantmentBuilder = EnchantmentBuilder.create("critical"); 9 | critical.maxLevel = 4; 10 | critical.setTypeWeapon(); 11 | critical.applicableSlots = [IEntityEquipmentSlot.mainHand(), IEntityEquipmentSlot.offhand()]; 12 | critical.register(); -------------------------------------------------------------------------------- /.minecraft/scripts/ContentTweaker/cot.zs: -------------------------------------------------------------------------------- 1 | #priority 30 2 | #modloaded trutils 3 | #loader contenttweaker 4 | 5 | import scripts.grassUtils.CotUtils; 6 | 7 | 8 | CotUtils.addCreativeTabAndNormalItem("thirdrebirth", "four_leaf_clover"); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Events/PortalSpawnEvent.zs: -------------------------------------------------------------------------------- 1 | #priority 10 2 | #modloaded trutils 3 | #loader crafttweaker reloadableevents 4 | 5 | import crafttweaker.player.IPlayer; 6 | 7 | import crafttweaker.event.PortalSpawnEvent; 8 | 9 | import scripts.CraftTweaker.Utils.common; 10 | 11 | events.onPortalSpawn(function(event as PortalSpawnEvent) { 12 | common.runCommand("summon minecraft:tnt " ~ event.x ~ " " ~ event.y ~ " " ~ event.z); 13 | event.cancel(); 14 | }); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Botania/tooldurability.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import crafttweaker.item.IItemStack; 5 | import crafttweaker.item.IItemDefinition; 6 | import crafttweaker.item.IIngredient; 7 | 8 | //封魔之布耐久 9 | var tools as int[IItemStack] = { 10 | : 64, 11 | }; 12 | 13 | for tool, damage in tools { 14 | tool.maxDamage = damage; 15 | } -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Ember/emberBord.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.embers.EmberBore; 5 | 6 | var default as EmberBore = EmberBore.getDefault(); 7 | default.addOutput( % 20); 8 | default.addOutput( % 0.5); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Ember/mixer.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.embers.Mixer; 5 | 6 | Mixer.add( * 1000, [ * 333, * 1000]); 7 | Mixer.add( * 10, [ * 10, * 10]); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/ImmerSiveEngineering/blueprint.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import crafttweaker.item.IItemStack; 5 | import mods.immersiveengineering.Blueprint; 6 | 7 | var remove as IItemStack[] = [ 8 | , , 9 | , 10 | ]; 11 | 12 | for Remove in remove { 13 | Blueprint.removeRecipe(Remove); 14 | } -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/ImmerSiveEngineering/crusher.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.immersiveengineering.Crusher; 5 | 6 | Crusher.removeRecipe(); 7 | Crusher.addRecipe(, , 1); 8 | 9 | Crusher.removeRecipe(); 10 | Crusher.removeRecipe(); 11 | Crusher.addRecipe(, , 1); 12 | -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/ImmerSiveEngineering/fermenter.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.immersiveengineering.Fermenter; 5 | 6 | Fermenter.addRecipe(null, * 100, , 3200); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/ImmerSiveEngineering/refinery.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.immersiveengineering.Refinery; 5 | 6 | Refinery.addRecipe( * 20, * 10, * 10, 150); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/LightNingCraft/lightningTransforming.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.lightningcraft.LightningTransforming; 5 | 6 | LightningTransforming.add(, 7 | [.firstItem, .firstItem, .firstItem]); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/MatterOverdrive/recipes.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import scripts.grassUtils.RecipeUtils; 5 | 6 | 7 | RecipeUtils.recipeTweak(true, , [ 8 | [null, , null], 9 | [, , ], 10 | [null, , null] 11 | ]); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Mekanism/crusher.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.mekanism.crusher; 5 | 6 | for i in 0 .. 7 { 7 | crusher.removeRecipe(.definition.makeStack(i)); 8 | } 9 | 10 | crusher.removeRecipe(); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/NatureSaura/offering.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | import mods.naturesaura.Offering; 4 | 5 | Offering.removeRecipe(); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Nuclearcraft/enricher.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.nuclearcraft.Enricher; 5 | 6 | Enricher.addRecipe(, * 333, * 333, 1.0, 0.2); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Nuclearcraft/fission.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | import mods.nuclearcraft.FissionIrradiator; 4 | 5 | mods.nuclearcraft.FissionIrradiator.addRecipe(, , 50000, 0, 0, 0); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Nuclearcraft/pressurizer.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.nuclearcraft.Pressurizer; 5 | 6 | Pressurizer.addRecipe(, .firstItem); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/PneumaticCraft/assembly.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.pneumaticcraft.assembly; 5 | 6 | assembly.addLaserRecipe(, * 4); 7 | assembly.addLaserRecipe(.firstItem, ); 8 | -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/PneumaticCraft/explosioncrafting.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.pneumaticcraft.explosioncrafting; 5 | 6 | explosioncrafting.removeRecipe(); 7 | explosioncrafting.removeRecipe(); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/PneumaticCraft/thermopneumaticprocessingplant.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.pneumaticcraft.thermopneumaticprocessingplant; 5 | 6 | thermopneumaticprocessingplant.removeRecipe(); 7 | thermopneumaticprocessingplant.addRecipe( * 250, , 1.0, 373, * 250); 8 | //thermopneumaticprocessingplant.addRecipe( * 250, , 3.0, 573, * 250); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Pouchofunknown/recipes.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import scripts.grassUtils.RecipeUtils; 5 | 6 | RecipeUtils.recipeTweak(true, , [ 7 | [null, ], 8 | [, , ], 9 | [null, ] 10 | ]); 11 | -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/PrimalTech/woodenBasin.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.primaltech.WoodenBasin; 5 | 6 | WoodenBasin.addRecipe(, * 250, 7 | [, , ]); 8 | -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Psi/recipes.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import scripts.grassUtils.RecipeUtils; 5 | 6 | recipes.remove(); 7 | recipes.remove(); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Roots/bark.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import mods.roots.Bark; 5 | 6 | Bark.addRecipe("wisdom", , *4); 7 | -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Roots/spells.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | #norun 4 | import mods.roots.Spells; 5 | import mods.roots.Spell; 6 | import mods.roots.Costs; 7 | import mods.roots.Herbs; 8 | 9 | 10 | var chrysopoeia = Spells.getSpell("spell_chrysopoeia") as Spell; 11 | chrysopoeia.setCost(Herbs.infernal_bulb, 0.2); 12 | chrysopoeia.setCost(Herbs.spirit_herb, 0.5); 13 | -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/Survivalist/dryable.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import gigaherz.survivalist.Dryable; 5 | 6 | gigaherz.survivalist.Dryable.removeRecipe(, ); 7 | 8 | gigaherz.survivalist.Dryable.addRecipe(, , 300); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Mods/familiarfauna/recipe.zs: -------------------------------------------------------------------------------- 1 | #priority 5 2 | #modloaded trutils 3 | 4 | import scripts.grassUtils.RecipeUtils; 5 | import scripts.CraftTweaker.Utils.artisanUtils; 6 | 7 | recipes.addShapeless( * 3, [ 8 | 9 | ]); -------------------------------------------------------------------------------- /.minecraft/scripts/CraftTweaker/Vanilla/entity.zs: -------------------------------------------------------------------------------- 1 | #priority 15 2 | #modloaded trutils 3 | 4 | import crafttweaker.entity.IEntityDefinition; 5 | 6 | .addDrop(.firstItem, 0, 2); 7 | .addDrop(, 0, 3); 8 | .removeDrop(.firstItem); 9 | .addDrop(.firstItem % 10); 10 | 11 | -------------------------------------------------------------------------------- /.minecraft/scripts/Mekatweaker/infuser.zs: -------------------------------------------------------------------------------- 1 | #priority 15 2 | #loader mekatweaker 3 | #modloaded trutils 4 | 5 | import mods.mekatweaker.InfuserType; 6 | 7 | var typeNames as string[] = ["Signalum", "Draconium", "Crystaltine", "Ember"]; 8 | 9 | for typeName in typeNames { 10 | InfuserType.addType(typeName.toLowerCase()); 11 | } 12 | -------------------------------------------------------------------------------- /.minecraft/scripts/grassUtils/scriptLoaderMessageHandler/ContentTweaker.zs: -------------------------------------------------------------------------------- 1 | #priority 32768 2 | #loader contenttweaker 3 | 4 | function getMessageKey(freq as int) as string { 5 | return "grassutils.message." ~ freq; 6 | } 7 | 8 | function send(freq as int, message as string) as void { 9 | game.setLocalization(getMessageKey(freq), message); 10 | } 11 | 12 | function receive(freq as int) as string { 13 | return game.localize(getMessageKey(freq)); 14 | } 15 | -------------------------------------------------------------------------------- /.minecraft/scripts/grassUtils/scriptLoaderMessageHandler/CraftTweaker.zs: -------------------------------------------------------------------------------- 1 | #priority 32768 2 | #loader crafttweaker 3 | 4 | function getMessageKey(freq as int) as string { 5 | return "grassutils.message." ~ freq; 6 | } 7 | 8 | function send(freq as int, message as string) as void { 9 | game.setLocalization(getMessageKey(freq), message); 10 | } 11 | 12 | function receive(freq as int) as string { 13 | return game.localize(getMessageKey(freq)); 14 | } 15 | -------------------------------------------------------------------------------- /.minecraft/scripts/grassUtils/scriptLoaderMessageHandler/Preinit.zs: -------------------------------------------------------------------------------- 1 | #priority 32768 2 | #loader preinit 3 | 4 | function getMessageKey(freq as int) as string { 5 | return "grassutils.message." ~ freq; 6 | } 7 | 8 | function send(freq as int, message as string) as void { 9 | game.setLocalization(getMessageKey(freq), message); 10 | } 11 | 12 | function receive(freq as int) as string { 13 | return game.localize(getMessageKey(freq)); 14 | } 15 | -------------------------------------------------------------------------------- /runners/build.sh: -------------------------------------------------------------------------------- 1 | #From https://github.com/ProjectHDS/Herodotus/blob/master/build.sh 2 | 3 | #!/bin/sh -x 4 | 5 | [ -d "${GITHUB_WORKSPACE}" ] && PROJECT_DIR="${GITHUB_WORKSPACE}" 6 | [ "${PROJECT_DIR}" != "${PWD}" ] && cd "${PROJECT_DIR}" 7 | 8 | mkdir artifacts 9 | mv .minecraft artifacts/overrides 10 | mv manifest.json artifacts 11 | mv modlist.html artifacts --------------------------------------------------------------------------------