├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── GNU GENERAL PUBLIC LICENSE.md ├── GNU LESSER GENERAL PUBLIC LICENSE.md ├── Geolosys Logo.png ├── LICENSE ├── README.md ├── REFACTOR.md ├── build.gradle ├── changelog.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── issue_template.md ├── pending features.md ├── scripts └── gen_patchouli_from_dp.py └── src └── main ├── java └── com │ └── oitsjustjose │ └── geolosys │ ├── Geolosys.java │ ├── api │ ├── GeolosysAPI.java │ └── world │ │ ├── DepositUtils.java │ │ ├── IDeposit.java │ │ └── deposit │ │ ├── DenseDeposit.java │ │ ├── DikeDeposit.java │ │ ├── LayerDeposit.java │ │ ├── SparseDeposit.java │ │ └── TopLayerDeposit.java │ ├── client │ ├── ClientProxy.java │ ├── patchouli │ │ └── processors │ │ │ └── PatronProcessor.java │ └── render │ │ ├── BlockColorInit.java │ │ ├── Cutouts.java │ │ └── GeolosysRenderType.java │ └── common │ ├── CommonProxy.java │ ├── blocks │ ├── ModBlocks.java │ ├── OreBlock.java │ ├── PeatBlock.java │ ├── PlantBlock.java │ ├── SampleBlock.java │ └── Types.java │ ├── config │ ├── ClientConfig.java │ ├── CommonConfig.java │ ├── CompatConfig.java │ └── ModItemsParser.java │ ├── data │ ├── WorldGenDataLoader.java │ ├── modifiers │ │ ├── OsmiumDropModifier.java │ │ ├── QuartzDropModifier.java │ │ ├── SulfurDropModifier.java │ │ └── YelloriumDropModifier.java │ └── serializer │ │ ├── DenseDepositSerializer.java │ │ ├── DikeDepositSerializer.java │ │ ├── LayerDepositSerializer.java │ │ ├── SerializerUtils.java │ │ ├── SparseDepositSerializer.java │ │ └── TopLayerDepositSerializer.java │ ├── event │ └── ManualGifting.java │ ├── items │ ├── CoalItem.java │ ├── ModItems.java │ ├── ProPickItem.java │ └── Types.java │ ├── network │ ├── NetworkManager.java │ ├── PacketHelpers.java │ ├── PacketStackSurface.java │ └── PacketStackUnderground.java │ ├── utils │ ├── Constants.java │ ├── GeolosysGroup.java │ ├── Prospecting.java │ └── Utils.java │ └── world │ ├── OreRemover.java │ ├── PlutonRegistry.java │ ├── SampleUtils.java │ ├── capability │ ├── CapUtils.java │ ├── Chunk │ │ ├── ChunkGennedCapProvider.java │ │ ├── ChunkGennedCapStorage.java │ │ ├── ChunkGennedCapability.java │ │ └── IChunkGennedCapability.java │ └── Deposit │ │ ├── DepositCapProvider.java │ │ ├── DepositCapStorage.java │ │ ├── DepositCapability.java │ │ └── IDepositCapability.java │ └── feature │ ├── DepositFeature.java │ └── FeatureUtils.java └── resources ├── META-INF └── mods.toml ├── assets ├── geolosys │ ├── blockstates │ │ ├── ancient_debris_ore.json │ │ ├── ancient_debris_ore_sample.json │ │ ├── anthracite_coal_ore.json │ │ ├── anthracite_coal_ore_sample.json │ │ ├── autunite_ore.json │ │ ├── autunite_ore_sample.json │ │ ├── azurite_ore.json │ │ ├── azurite_ore_sample.json │ │ ├── bauxite_ore.json │ │ ├── bauxite_ore_sample.json │ │ ├── beryl_ore.json │ │ ├── beryl_ore_sample.json │ │ ├── bituminous_coal_ore.json │ │ ├── bituminous_coal_ore_sample.json │ │ ├── cassiterite_ore.json │ │ ├── cassiterite_ore_sample.json │ │ ├── cinnabar_ore.json │ │ ├── cinnabar_ore_sample.json │ │ ├── coal_ore.json │ │ ├── coal_ore_sample.json │ │ ├── galena_ore.json │ │ ├── galena_ore_sample.json │ │ ├── gold_ore.json │ │ ├── gold_ore_sample.json │ │ ├── hematite_ore.json │ │ ├── hematite_ore_sample.json │ │ ├── kimberlite_ore.json │ │ ├── kimberlite_ore_sample.json │ │ ├── lapis_ore.json │ │ ├── lapis_ore_sample.json │ │ ├── lignite_ore.json │ │ ├── lignite_ore_sample.json │ │ ├── limonite_ore.json │ │ ├── limonite_ore_sample.json │ │ ├── malachite_ore.json │ │ ├── malachite_ore_sample.json │ │ ├── nether_gold_ore.json │ │ ├── nether_gold_ore_sample.json │ │ ├── peat.json │ │ ├── platinum_ore.json │ │ ├── platinum_ore_sample.json │ │ ├── quartz_ore.json │ │ ├── quartz_ore_sample.json │ │ ├── rhododendron.json │ │ ├── sphalerite_ore.json │ │ ├── sphalerite_ore_sample.json │ │ ├── teallite_ore.json │ │ └── teallite_ore_sample.json │ ├── lang │ │ ├── en_us.json │ │ ├── fr_fr.json │ │ ├── ko_kr.json │ │ ├── pt_br.json │ │ ├── ru_ru.json │ │ └── zh_cn.json │ ├── models │ │ ├── block │ │ │ ├── ancient_debris_ore.json │ │ │ ├── ancient_debris_ore_sample.json │ │ │ ├── anthracite_coal_ore.json │ │ │ ├── anthracite_coal_ore_sample.json │ │ │ ├── autunite_ore.json │ │ │ ├── autunite_ore_sample.json │ │ │ ├── azurite_ore.json │ │ │ ├── azurite_ore_sample.json │ │ │ ├── bauxite_ore.json │ │ │ ├── bauxite_ore_sample.json │ │ │ ├── beryl_ore.json │ │ │ ├── beryl_ore_sample.json │ │ │ ├── bituminous_coal_ore.json │ │ │ ├── bituminous_coal_ore_sample.json │ │ │ ├── cassiterite_ore.json │ │ │ ├── cassiterite_ore_sample.json │ │ │ ├── cinnabar_ore.json │ │ │ ├── cinnabar_ore_sample.json │ │ │ ├── coal_ore.json │ │ │ ├── coal_ore_sample.json │ │ │ ├── galena_ore.json │ │ │ ├── galena_ore_sample.json │ │ │ ├── gold_ore.json │ │ │ ├── gold_ore_sample.json │ │ │ ├── hematite_ore.json │ │ │ ├── hematite_ore_sample.json │ │ │ ├── kimberlite_ore.json │ │ │ ├── kimberlite_ore_sample.json │ │ │ ├── lapis_ore.json │ │ │ ├── lapis_ore_sample.json │ │ │ ├── lignite_ore.json │ │ │ ├── lignite_ore_sample.json │ │ │ ├── limonite_ore.json │ │ │ ├── limonite_ore_sample.json │ │ │ ├── malachite_ore.json │ │ │ ├── malachite_ore_sample.json │ │ │ ├── nether_gold_ore.json │ │ │ ├── nether_gold_ore_sample.json │ │ │ ├── ore_sample.json │ │ │ ├── peat.json │ │ │ ├── peat_top.json │ │ │ ├── platinum_ore.json │ │ │ ├── platinum_ore_sample.json │ │ │ ├── quartz_ore.json │ │ │ ├── quartz_ore_sample.json │ │ │ ├── rhododendron.json │ │ │ ├── sphalerite_ore.json │ │ │ ├── sphalerite_ore_sample.json │ │ │ ├── teallite_ore.json │ │ │ └── teallite_ore_sample.json │ │ └── item │ │ │ ├── aluminum_cluster.json │ │ │ ├── aluminum_ingot.json │ │ │ ├── aluminum_nugget.json │ │ │ ├── ancient_debris_cluster.json │ │ │ ├── ancient_debris_ore.json │ │ │ ├── ancient_debris_ore_sample.json │ │ │ ├── anthracite_coal.json │ │ │ ├── anthracite_coal_ore.json │ │ │ ├── anthracite_coal_ore_sample.json │ │ │ ├── autunite_ore.json │ │ │ ├── autunite_ore_sample.json │ │ │ ├── azurite_ore.json │ │ │ ├── azurite_ore_sample.json │ │ │ ├── bauxite_ore.json │ │ │ ├── bauxite_ore_sample.json │ │ │ ├── beryl_ore.json │ │ │ ├── beryl_ore_sample.json │ │ │ ├── bituminous_coal.json │ │ │ ├── bituminous_coal_coke.json │ │ │ ├── bituminous_coal_ore.json │ │ │ ├── bituminous_coal_ore_sample.json │ │ │ ├── cassiterite_ore.json │ │ │ ├── cassiterite_ore_sample.json │ │ │ ├── cinnabar_ore.json │ │ │ ├── cinnabar_ore_sample.json │ │ │ ├── coal_ore.json │ │ │ ├── coal_ore_sample.json │ │ │ ├── copper_cluster.json │ │ │ ├── copper_ingot.json │ │ │ ├── copper_nugget.json │ │ │ ├── field_manual.json │ │ │ ├── galena_ore.json │ │ │ ├── galena_ore_sample.json │ │ │ ├── gold_cluster.json │ │ │ ├── gold_ore.json │ │ │ ├── gold_ore_sample.json │ │ │ ├── hematite_ore.json │ │ │ ├── hematite_ore_sample.json │ │ │ ├── iron_cluster.json │ │ │ ├── kimberlite_ore.json │ │ │ ├── kimberlite_ore_sample.json │ │ │ ├── lapis_ore.json │ │ │ ├── lapis_ore_sample.json │ │ │ ├── lead_cluster.json │ │ │ ├── lead_ingot.json │ │ │ ├── lead_nugget.json │ │ │ ├── lignite_coal.json │ │ │ ├── lignite_coal_coke.json │ │ │ ├── lignite_ore.json │ │ │ ├── lignite_ore_sample.json │ │ │ ├── limonite_ore.json │ │ │ ├── limonite_ore_sample.json │ │ │ ├── malachite_ore.json │ │ │ ├── malachite_ore_sample.json │ │ │ ├── nether_gold_cluster.json │ │ │ ├── nether_gold_ore.json │ │ │ ├── nether_gold_ore_sample.json │ │ │ ├── nickel_cluster.json │ │ │ ├── nickel_ingot.json │ │ │ ├── nickel_nugget.json │ │ │ ├── osmium_cluster.json │ │ │ ├── peat.json │ │ │ ├── peat_coal.json │ │ │ ├── platinum_cluster.json │ │ │ ├── platinum_ingot.json │ │ │ ├── platinum_nugget.json │ │ │ ├── platinum_ore.json │ │ │ ├── platinum_ore_sample.json │ │ │ ├── prospectors_pick.json │ │ │ ├── quartz_ore.json │ │ │ ├── quartz_ore_sample.json │ │ │ ├── rhododendron.json │ │ │ ├── silver_cluster.json │ │ │ ├── silver_ingot.json │ │ │ ├── silver_nugget.json │ │ │ ├── sphalerite_ore.json │ │ │ ├── sphalerite_ore_sample.json │ │ │ ├── teallite_ore.json │ │ │ ├── teallite_ore_sample.json │ │ │ ├── test_block.json │ │ │ ├── tin_cluster.json │ │ │ ├── tin_ingot.json │ │ │ ├── tin_nugget.json │ │ │ ├── uranium_cluster.json │ │ │ ├── yellorium_cluster.json │ │ │ ├── zinc_cluster.json │ │ │ ├── zinc_ingot.json │ │ │ └── zinc_nugget.json │ └── textures │ │ ├── blocks │ │ ├── ancient_debris_ore.ase │ │ ├── ancient_debris_ore.png │ │ ├── anthracite.ase │ │ ├── anthracite_coal_ore.png │ │ ├── autunite_ore.png │ │ ├── azurite_ore.png │ │ ├── bauxite_ore.png │ │ ├── beryl_ore.png │ │ ├── bituminous_coal_ore.ase │ │ ├── bituminous_coal_ore.png │ │ ├── cassiterite_ore.png │ │ ├── cassiterite_sample_ore.png │ │ ├── cinnabar_ore.png │ │ ├── coal_ore.png │ │ ├── galena_ore.png │ │ ├── gold_ore.png │ │ ├── hematite_ore.png │ │ ├── kimberlite_ore.png │ │ ├── lapis_ore.png │ │ ├── lignite_ore.ase │ │ ├── lignite_ore.png │ │ ├── limonite_ore.png │ │ ├── malachite_ore.png │ │ ├── nether_gold_ore.png │ │ ├── peat │ │ │ ├── bottom.png │ │ │ ├── raw │ │ │ │ ├── peat_bottom.ase │ │ │ │ └── peat_side.ase │ │ │ ├── side.png │ │ │ ├── side_overlay.png │ │ │ └── top.png │ │ ├── platinum_ore.png │ │ ├── quartz_ore.png │ │ ├── rhododendron.ase │ │ ├── rhododendron.png │ │ ├── rhododendron_base.png │ │ ├── rhododendron_overlay.png │ │ ├── sphalerite_ore.png │ │ └── teallite_ore.png │ │ ├── gui │ │ └── patchouli │ │ │ └── introduction │ │ │ ├── dense.png │ │ │ ├── dike.png │ │ │ ├── layer.png │ │ │ ├── samples.png │ │ │ └── sparse.png │ │ └── items │ │ ├── aluminum_cluster.png │ │ ├── aluminum_ingot.png │ │ ├── aluminum_nugget.png │ │ ├── ancient_debris_cluster.ase │ │ ├── ancient_debris_cluster.png │ │ ├── anthracite_coal.png │ │ ├── bituminous_coal.png │ │ ├── bituminous_coal_coke.png │ │ ├── copper_cluster.png │ │ ├── copper_ingot.png │ │ ├── copper_nugget.png │ │ ├── field_manual.png │ │ ├── gold_cluster.png │ │ ├── iron_cluster.png │ │ ├── lead_cluster.png │ │ ├── lead_ingot.png │ │ ├── lead_nugget.png │ │ ├── lignite_coal.png │ │ ├── lignite_coal_coke.png │ │ ├── nether_gold_cluster.ase │ │ ├── nether_gold_cluster.png │ │ ├── nickel_cluster.png │ │ ├── nickel_ingot.png │ │ ├── nickel_nugget.png │ │ ├── osmium_cluster.png │ │ ├── osmium_ingot.png │ │ ├── peat_coal.png │ │ ├── platinum_cluster.png │ │ ├── platinum_ingot.png │ │ ├── platinum_nugget.png │ │ ├── prospectors_pick.png │ │ ├── silver_cluster.png │ │ ├── silver_ingot.png │ │ ├── silver_nugget.png │ │ ├── tin_cluster.png │ │ ├── tin_ingot.png │ │ ├── tin_nugget.png │ │ ├── uranium_cluster.png │ │ ├── yellorium_cluster.png │ │ ├── zinc_cluster.png │ │ ├── zinc_ingot.png │ │ └── zinc_nugget.png └── minecraft │ └── textures │ ├── block │ ├── diamond_block.png │ └── emerald_block.png │ └── item │ ├── emerald.aseprite │ └── emerald.png ├── data ├── forge │ ├── loot_modifiers │ │ └── global_loot_modifiers.json │ └── tags │ │ ├── blocks │ │ ├── ores.json │ │ └── ores │ │ │ ├── aluminum.json │ │ │ ├── coal.json │ │ │ ├── copper.json │ │ │ ├── diamond.json │ │ │ ├── emerald.json │ │ │ ├── gold.json │ │ │ ├── iron.json │ │ │ ├── lapis.json │ │ │ ├── lead.json │ │ │ ├── netherite_scrap.json │ │ │ ├── nickel.json │ │ │ ├── osmium.json │ │ │ ├── platinum.json │ │ │ ├── quartz.json │ │ │ ├── redstone.json │ │ │ ├── silver.json │ │ │ ├── tin.json │ │ │ ├── uranium.json │ │ │ ├── yellorium.json │ │ │ └── zinc.json │ │ └── items │ │ ├── ingots.json │ │ ├── ingots │ │ ├── aluminum.json │ │ ├── copper.json │ │ ├── lead.json │ │ ├── nickel.json │ │ ├── platinum.json │ │ ├── silver.json │ │ ├── tin.json │ │ └── zinc.json │ │ ├── nuggets.json │ │ ├── nuggets │ │ ├── aluminum.json │ │ ├── copper.json │ │ ├── lead.json │ │ ├── nickel.json │ │ ├── platinum.json │ │ ├── silver.json │ │ ├── tin.json │ │ └── zinc.json │ │ ├── ores.json │ │ └── ores │ │ ├── aluminum.json │ │ ├── coal.json │ │ ├── copper.json │ │ ├── diamond.json │ │ ├── emerald.json │ │ ├── gold.json │ │ ├── iron.json │ │ ├── lapis.json │ │ ├── lead.json │ │ ├── netherite_scrap.json │ │ ├── nickel.json │ │ ├── osmium.json │ │ ├── platinum.json │ │ ├── quartz.json │ │ ├── redstone.json │ │ ├── silver.json │ │ ├── tin.json │ │ ├── uranium.json │ │ ├── yellorium.json │ │ └── zinc.json ├── geolosys │ ├── deposits │ │ ├── ore │ │ │ ├── ancient_debris.json │ │ │ ├── anthracitic_coal.json │ │ │ ├── assorted_quartz.json │ │ │ ├── autunite.json │ │ │ ├── bauxite.json │ │ │ ├── beryl.json │ │ │ ├── bituminous_coal.json │ │ │ ├── cassiterite.json │ │ │ ├── cinnabar.json │ │ │ ├── coal.json │ │ │ ├── galena.json │ │ │ ├── gold.json │ │ │ ├── gold_nether.json │ │ │ ├── hematite.json │ │ │ ├── kimberlite.json │ │ │ ├── lapis.json │ │ │ ├── lignite.json │ │ │ ├── limonite.json │ │ │ ├── malachite_and_azurite.json │ │ │ ├── platinum.json │ │ │ ├── sphalerite.json │ │ │ └── teallite_and_emerald.json │ │ ├── other │ │ │ └── peat.json │ │ └── stone │ │ │ ├── andesite.json │ │ │ ├── diorite.json │ │ │ └── granite.json │ ├── loot_modifiers │ │ ├── osmium.json │ │ ├── quartzes.json │ │ ├── sulfur.json │ │ └── yellorium.json │ ├── loot_tables │ │ └── blocks │ │ │ ├── ancient_debris_ore.json │ │ │ ├── ancient_debris_ore_sample.json │ │ │ ├── anthracite_coal_ore.json │ │ │ ├── anthracite_coal_ore_sample.json │ │ │ ├── autunite_ore.json │ │ │ ├── autunite_ore_sample.json │ │ │ ├── azurite_ore.json │ │ │ ├── azurite_ore_sample.json │ │ │ ├── bauxite_ore.json │ │ │ ├── bauxite_ore_sample.json │ │ │ ├── beryl_ore.json │ │ │ ├── beryl_ore_sample.json │ │ │ ├── bituminous_coal_ore.json │ │ │ ├── bituminous_coal_ore_sample.json │ │ │ ├── cassiterite_ore.json │ │ │ ├── cassiterite_ore_sample.json │ │ │ ├── cinnabar_ore.json │ │ │ ├── cinnabar_ore_sample.json │ │ │ ├── coal_ore.json │ │ │ ├── coal_ore_sample.json │ │ │ ├── galena_ore.json │ │ │ ├── galena_ore_sample.json │ │ │ ├── gold_ore.json │ │ │ ├── gold_ore_sample.json │ │ │ ├── hematite_ore.json │ │ │ ├── hematite_ore_sample.json │ │ │ ├── kimberlite_ore.json │ │ │ ├── kimberlite_ore_sample.json │ │ │ ├── lapis_ore.json │ │ │ ├── lapis_ore_sample.json │ │ │ ├── lignite_ore.json │ │ │ ├── lignite_ore_sample.json │ │ │ ├── limonite_ore.json │ │ │ ├── limonite_ore_sample.json │ │ │ ├── malachite_ore.json │ │ │ ├── malachite_ore_sample.json │ │ │ ├── nether_gold_ore.json │ │ │ ├── nether_gold_ore_sample.json │ │ │ ├── peat.json │ │ │ ├── platinum_ore.json │ │ │ ├── platinum_ore_sample.json │ │ │ ├── quartz_ore.json │ │ │ ├── quartz_ore_sample.json │ │ │ ├── rhododendron.json │ │ │ ├── sphalerite_ore.json │ │ │ ├── sphalerite_ore_sample.json │ │ │ ├── teallite_ore.json │ │ │ └── teallite_ore_sample.json │ ├── patchouli_books │ │ └── field_manual │ │ │ ├── book.json │ │ │ └── en_us │ │ │ ├── categories │ │ │ ├── 01_introduction.json │ │ │ ├── 02_prospecting.json │ │ │ ├── 03_resources.json │ │ │ └── 04_patrons.json │ │ │ ├── entries │ │ │ ├── 01_introduction │ │ │ │ ├── 01_getting_started.json │ │ │ │ ├── 02_ore_plutons.json │ │ │ │ ├── 03_vanilla_ores.json │ │ │ │ └── 04_configuring.json │ │ │ ├── 02_prospecting │ │ │ │ ├── 01_samples.json │ │ │ │ └── 02_prospectors_pick.json │ │ │ ├── 03_resources │ │ │ │ ├── ancient_debris.json │ │ │ │ ├── andesite.json │ │ │ │ ├── anthracitic_coal.json │ │ │ │ ├── assorted_quartz.json │ │ │ │ ├── autunite.json │ │ │ │ ├── bauxite.json │ │ │ │ ├── beryl.json │ │ │ │ ├── bituminous_coal.json │ │ │ │ ├── cassiterite.json │ │ │ │ ├── cinnabar.json │ │ │ │ ├── coal.json │ │ │ │ ├── diorite.json │ │ │ │ ├── galena.json │ │ │ │ ├── gold.json │ │ │ │ ├── gold_nether.json │ │ │ │ ├── granite.json │ │ │ │ ├── hematite.json │ │ │ │ ├── kimberlite.json │ │ │ │ ├── lapis.json │ │ │ │ ├── lignite.json │ │ │ │ ├── limonite.json │ │ │ │ ├── malachite_and_azurite.json │ │ │ │ ├── peat.json │ │ │ │ ├── platinum.json │ │ │ │ ├── sphalerite.json │ │ │ │ └── teallite_and_emerald.json │ │ │ └── 04_patrons │ │ │ │ └── list.json │ │ │ └── templates │ │ │ ├── include │ │ │ └── patron_list_template.json │ │ │ └── patron_list.json │ ├── recipes │ │ ├── blasting │ │ │ ├── aluminum_ingot_from_cluster_blasting.json │ │ │ ├── copper_ingot_from_cluster_blasting.json │ │ │ ├── gold_ingot_from_cluster_blasting.json │ │ │ ├── gold_nugget_from_poor_cluster_blasting.json │ │ │ ├── iron_ingot_from_cluster_blasting.json │ │ │ ├── lead_ingot_from_cluster_blasting.json │ │ │ ├── netherite_scrap_from_cluster_blasting.json │ │ │ ├── nickel_ingot_from_cluster_blasting.json │ │ │ ├── platinum_ingot_from_cluster_blasting.json │ │ │ ├── silver_ingot_from_cluster_blasting.json │ │ │ ├── tin_ingot_from_cluster_blasting.json │ │ │ └── zinc_ingot_from_cluster_blasting.json │ │ ├── compat │ │ │ └── immersiveengineering │ │ │ │ ├── bituminous_coke_from_coke_oven.json │ │ │ │ └── lignite_coke_from_coke_oven.json │ │ ├── crafting │ │ │ ├── field_manual_from_crafting.json │ │ │ ├── nuggets │ │ │ │ ├── aluminum_ingot_to_aluminum_nugget.json │ │ │ │ ├── aluminum_nugget_to_aluminum_ingot.json │ │ │ │ ├── copper_ingot_to_copper_nugget.json │ │ │ │ ├── copper_nugget_to_copper_ingot.json │ │ │ │ ├── lead_ingot_to_lead_nugget.json │ │ │ │ ├── lead_nugget_to_lead_ingot.json │ │ │ │ ├── nickel_ingot_to_nickel_nugget.json │ │ │ │ ├── nickel_nugget_to_nickel_ingot.json │ │ │ │ ├── platinum_ingot_to_platinum_nugget.json │ │ │ │ ├── platinum_nugget_to_platinum_ingot.json │ │ │ │ ├── silver_ingot_to_silver_nugget.json │ │ │ │ ├── silver_nugget_to_silver_ingot.json │ │ │ │ ├── tin_ingot_to_tin_nugget.json │ │ │ │ ├── tin_nugget_to_tin_ingot.json │ │ │ │ ├── zinc_ingot_to_zinc_nugget.json │ │ │ │ └── zinc_nugget_to_zinc_ingot.json │ │ │ ├── prospectors_pick_from_crafting.json │ │ │ └── purple_dye_from_rhododendron_crafting.json │ │ └── smelting │ │ │ ├── aluminum_ingot_from_cluster_smelting.json │ │ │ ├── copper_ingot_from_cluster_smelting.json │ │ │ ├── gold_ingot_from_cluster_smelting.json │ │ │ ├── gold_nugget_from_poor_cluster_smelting.json │ │ │ ├── iron_ingot_from_cluster_smelting.json │ │ │ ├── lead_ingot_from_cluster_smelting.json │ │ │ ├── netherite_scrap_from_cluster_smelting.json │ │ │ ├── nickel_ingot_from_cluster_smelting.json │ │ │ ├── platinum_ingot_from_cluster_smelting.json │ │ │ ├── silver_ingot_from_cluster_smelting.json │ │ │ ├── tin_ingot_from_cluster_smelting.json │ │ │ └── zinc_ingot_from_cluster_smelting.json │ └── tags │ │ └── blocks │ │ └── world_generation_debug.json └── minecraft │ └── tags │ └── blocks │ ├── gold_ores.json │ └── guarded_by_piglins.json └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: oitsjustjose 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /build/ 3 | /run/ 4 | /out/ 5 | *.DS_STORE 6 | *.iml 7 | *.ipr 8 | *.launch 9 | *.iws 10 | /bin/ 11 | .settings/* 12 | 13 | # Ignore Gradle GUI config 14 | gradle-app.setting 15 | 16 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 17 | !gradle-wrapper.jar 18 | 19 | # Cache of project 20 | .gradletasknamecache 21 | 22 | # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 23 | # gradle/wrapper/gradle-wrapper.properties 24 | .project 25 | .classpath 26 | .settings/org.eclipse.buildship.core.prefs 27 | src/main/resources/assets/base/models/item/wrench.json 28 | .idea 29 | .vscode/** 30 | logs -------------------------------------------------------------------------------- /Geolosys Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/Geolosys Logo.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | .# Sets default memory used for gradle commands. Can be overridden by user or command line properties. 2 | # This is required to provide enough memory for the Minecraft decompilation process. 3 | mod_version=6.0.2 4 | game_version=1.16.5 5 | forge_version=36.2.0 6 | mappings_version=20210309-1.16.5 7 | 8 | # Mod Impl 9 | patchouli_version=1.16.4-50 10 | 11 | org.gradle.jvmargs=-Xmx3G 12 | org.gradle.daemon=false 13 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Sep 17 16:35:47 EDT 2019 2 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip 3 | distributionBase=GRADLE_USER_HOME 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- 1 | # If your issue has **_anything_** to do with Cascading Lag, **DO NOT REPORT IT**. 2 | 3 | (Deleting this and the above line indicates that you have read this :smile: ) 4 | 5 | ## Versions: 6 | 7 | - Minecraft Forge: 8 | - Geolosys: 9 | - JourneyMap (optional): 10 | - ImmersiveEngineering (optional): 11 | 12 | ## What happens: 13 | 14 | ## What should happen: 15 | 16 | ## Logs (if necessary): 17 | 18 | ## Additional Comments: 19 | -------------------------------------------------------------------------------- /pending features.md: -------------------------------------------------------------------------------- 1 | # TODO for the 1.16 Port 2 | 3 | ## Internal / Vanilla 4 | 5 | - [x] Make nether gold a Piglin Protected item (anger Piglins if broken) 6 | - [ ] Coal / Peat integration 7 | 8 | ## Mods 9 | 10 | - [ ] CraftTweaker compat 11 | - [ ] IE Compat 12 | - [x] AE Compat 13 | - [x] Sulfur Compat 14 | - [x] Mekanism Compat 15 | - [x] BR / ER2 Compat (Yellorium) 16 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/client/render/Cutouts.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.client.render; 2 | 3 | import com.oitsjustjose.geolosys.common.blocks.ModBlocks; 4 | 5 | import net.minecraft.client.renderer.RenderType; 6 | import net.minecraft.client.renderer.RenderTypeLookup; 7 | 8 | public class Cutouts { 9 | public static void init() { 10 | RenderTypeLookup.setRenderLayer(ModBlocks.getInstance().peat, RenderType.getCutoutMipped()); 11 | RenderTypeLookup.setRenderLayer(ModBlocks.getInstance().rhododendron, RenderType.getCutoutMipped()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/blocks/OreBlock.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.blocks; 2 | 3 | import net.minecraft.block.Block; 4 | import net.minecraft.block.BlockState; 5 | import net.minecraft.util.math.BlockPos; 6 | import net.minecraft.util.math.MathHelper; 7 | import net.minecraft.world.IWorldReader; 8 | 9 | public class OreBlock extends Block { 10 | int xp; 11 | 12 | public OreBlock(Properties props, int experience) { 13 | super(props); 14 | this.xp = experience; 15 | } 16 | 17 | /** 18 | * Spawns the given amount of experience into the World as XP orb entities 19 | */ 20 | @Override 21 | public int getExpDrop(BlockState state, IWorldReader reader, BlockPos pos, int fortune, int silktouch) { 22 | return silktouch == 0 ? MathHelper.nextInt(RANDOM, this.xp / 2, this.xp) : 0; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/data/serializer/DenseDepositSerializer.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.data.serializer; 2 | 3 | import com.google.gson.JsonDeserializationContext; 4 | import com.google.gson.JsonElement; 5 | import com.google.gson.JsonObject; 6 | import com.google.gson.JsonSerializationContext; 7 | import com.oitsjustjose.geolosys.api.world.deposit.DenseDeposit; 8 | 9 | public class DenseDepositSerializer { 10 | public DenseDeposit deserialize(JsonObject json, JsonDeserializationContext ctx) { 11 | return DenseDeposit.deserialize(json, ctx); 12 | } 13 | 14 | public JsonElement serialize(DenseDeposit dep, JsonSerializationContext ctx) { 15 | return dep.serialize(dep, ctx); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/data/serializer/DikeDepositSerializer.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.data.serializer; 2 | 3 | import com.google.gson.JsonDeserializationContext; 4 | import com.google.gson.JsonElement; 5 | import com.google.gson.JsonObject; 6 | import com.google.gson.JsonSerializationContext; 7 | import com.oitsjustjose.geolosys.api.world.deposit.DikeDeposit; 8 | 9 | public class DikeDepositSerializer { 10 | public DikeDeposit deserialize(JsonObject json, JsonDeserializationContext ctx) { 11 | return DikeDeposit.deserialize(json, ctx); 12 | } 13 | 14 | public JsonElement serialize(DikeDeposit dep, JsonSerializationContext ctx) { 15 | return dep.serialize(dep, ctx); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/data/serializer/LayerDepositSerializer.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.data.serializer; 2 | 3 | import com.google.gson.JsonDeserializationContext; 4 | import com.google.gson.JsonElement; 5 | import com.google.gson.JsonObject; 6 | import com.google.gson.JsonSerializationContext; 7 | import com.oitsjustjose.geolosys.api.world.deposit.LayerDeposit; 8 | 9 | public class LayerDepositSerializer { 10 | public LayerDeposit deserialize(JsonObject json, JsonDeserializationContext ctx) { 11 | return LayerDeposit.deserialize(json, ctx); 12 | } 13 | 14 | public JsonElement serialize(LayerDeposit dep, JsonSerializationContext ctx) { 15 | return dep.serialize(dep, ctx); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/data/serializer/SparseDepositSerializer.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.data.serializer; 2 | 3 | import com.google.gson.JsonDeserializationContext; 4 | import com.google.gson.JsonElement; 5 | import com.google.gson.JsonObject; 6 | import com.google.gson.JsonSerializationContext; 7 | import com.oitsjustjose.geolosys.api.world.deposit.SparseDeposit; 8 | 9 | public class SparseDepositSerializer { 10 | public SparseDeposit deserialize(JsonObject json, JsonDeserializationContext ctx) { 11 | return SparseDeposit.deserialize(json, ctx); 12 | } 13 | 14 | public JsonElement serialize(SparseDeposit dep, JsonSerializationContext ctx) { 15 | return dep.serialize(dep, ctx); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/data/serializer/TopLayerDepositSerializer.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.data.serializer; 2 | 3 | import com.google.gson.JsonDeserializationContext; 4 | import com.google.gson.JsonElement; 5 | import com.google.gson.JsonObject; 6 | import com.google.gson.JsonSerializationContext; 7 | import com.oitsjustjose.geolosys.api.world.deposit.TopLayerDeposit; 8 | 9 | public class TopLayerDepositSerializer { 10 | public TopLayerDeposit deserialize(JsonObject json, JsonDeserializationContext ctx) { 11 | return TopLayerDeposit.deserialize(json, ctx); 12 | } 13 | 14 | public JsonElement serialize(TopLayerDeposit dep, JsonSerializationContext ctx) { 15 | return dep.serialize(dep, ctx); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/items/CoalItem.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.items; 2 | 3 | import com.oitsjustjose.geolosys.common.items.Types.Coals; 4 | import com.oitsjustjose.geolosys.common.utils.GeolosysGroup; 5 | 6 | import net.minecraft.item.Item; 7 | import net.minecraft.item.ItemStack; 8 | 9 | public class CoalItem extends Item { 10 | private Coals type; 11 | 12 | public CoalItem(Coals type) { 13 | super(new Properties().group(GeolosysGroup.getInstance()).isImmuneToFire()); 14 | this.type = type; 15 | } 16 | 17 | @Override 18 | public int getBurnTime(ItemStack stack) { 19 | return this.type.getBurnTime(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/network/NetworkManager.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.network; 2 | 3 | import com.oitsjustjose.geolosys.common.utils.Constants; 4 | 5 | import net.minecraft.util.ResourceLocation; 6 | import net.minecraftforge.fml.network.NetworkRegistry; 7 | import net.minecraftforge.fml.network.simple.SimpleChannel; 8 | 9 | public class NetworkManager { 10 | public SimpleChannel networkWrapper; 11 | private static final String PROTOCOL_VERSION = "1"; 12 | 13 | public NetworkManager() { 14 | networkWrapper = NetworkRegistry.newSimpleChannel(new ResourceLocation(Constants.MODID, "main"), 15 | () -> PROTOCOL_VERSION, PROTOCOL_VERSION::equals, PROTOCOL_VERSION::equals); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/utils/Constants.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.utils; 2 | 3 | import net.minecraft.util.ResourceLocation; 4 | 5 | public class Constants { 6 | public static final String MODID = "geolosys"; 7 | public static final String MODNAME = "Geolosys"; 8 | public static final ResourceLocation CAPABILITY_NAME = new ResourceLocation(MODID, "plutons"); 9 | } 10 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/utils/Prospecting.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.utils; 2 | 3 | import java.util.HashSet; 4 | 5 | import com.oitsjustjose.geolosys.api.GeolosysAPI; 6 | 7 | import net.minecraft.block.BlockState; 8 | 9 | public class Prospecting { 10 | private static HashSet depositBlocks; 11 | 12 | public static HashSet getDepositBlocks() { 13 | if (depositBlocks == null) { 14 | depositBlocks = new HashSet(); 15 | populateDepositBlocks(); 16 | } 17 | return depositBlocks; 18 | } 19 | 20 | public static void populateDepositBlocks() { 21 | depositBlocks = new HashSet(); 22 | 23 | GeolosysAPI.plutonRegistry.getOres().forEach((pluton) -> { 24 | HashSet ores = pluton.getAllOres(); 25 | if (ores != null) { 26 | depositBlocks.addAll(ores); 27 | } 28 | }); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/world/capability/CapUtils.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.world.capability; 2 | 3 | import net.minecraft.util.math.BlockPos; 4 | 5 | public class CapUtils { 6 | public static String toString(BlockPos pos) { 7 | return "[" + pos.getX() + "," + pos.getY() + "," + pos.getZ() + "]"; 8 | } 9 | 10 | public static BlockPos fromString(String s) { 11 | String[] parts = s.replace("[", "").replace("]", "").split(","); 12 | return new BlockPos(Integer.parseInt(parts[0]), Integer.parseInt(parts[1]), Integer.parseInt(parts[2])); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/world/capability/Chunk/ChunkGennedCapStorage.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.world.capability.Chunk; 2 | 3 | import net.minecraft.nbt.CompoundNBT; 4 | import net.minecraft.nbt.INBT; 5 | import net.minecraft.util.Direction; 6 | import net.minecraftforge.common.capabilities.Capability; 7 | 8 | import javax.annotation.Nullable; 9 | 10 | public class ChunkGennedCapStorage implements Capability.IStorage { 11 | 12 | @Override 13 | public void readNBT(Capability capability, IChunkGennedCapability instance, Direction side, 14 | INBT nbt) { 15 | if (nbt instanceof CompoundNBT) { 16 | instance.deserializeNBT(((CompoundNBT) nbt)); 17 | } 18 | } 19 | 20 | @Nullable 21 | @Override 22 | public INBT writeNBT(Capability capability, IChunkGennedCapability instance, Direction side) { 23 | return instance.serializeNBT(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/world/capability/Chunk/IChunkGennedCapability.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.world.capability.Chunk; 2 | 3 | import net.minecraft.nbt.CompoundNBT; 4 | import net.minecraft.util.math.ChunkPos; 5 | import net.minecraftforge.common.util.INBTSerializable; 6 | 7 | public interface IChunkGennedCapability extends INBTSerializable { 8 | boolean hasChunkGenerated(ChunkPos pos); 9 | 10 | void setChunkGenerated(ChunkPos pos); 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/com/oitsjustjose/geolosys/common/world/capability/Deposit/DepositCapStorage.java: -------------------------------------------------------------------------------- 1 | package com.oitsjustjose.geolosys.common.world.capability.Deposit; 2 | 3 | import net.minecraft.nbt.CompoundNBT; 4 | import net.minecraft.nbt.INBT; 5 | import net.minecraft.util.Direction; 6 | import net.minecraftforge.common.capabilities.Capability; 7 | 8 | import javax.annotation.Nullable; 9 | 10 | public class DepositCapStorage implements Capability.IStorage { 11 | @Override 12 | public void readNBT(Capability capability, IDepositCapability instance, Direction side, 13 | INBT nbt) { 14 | if (nbt instanceof CompoundNBT) { 15 | instance.deserializeNBT(((CompoundNBT) nbt)); 16 | } 17 | } 18 | 19 | @Nullable 20 | @Override 21 | public INBT writeNBT(Capability capability, IDepositCapability instance, Direction side) { 22 | // Initialize the Compound with WorldDeposits and RetroGen: 23 | return instance.serializeNBT(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/ancient_debris_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/ancient_debris_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/ancient_debris_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/ancient_debris_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/anthracite_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/anthracite_coal_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/anthracite_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/anthracite_coal_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/autunite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/autunite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/autunite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/autunite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/azurite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/azurite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/azurite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/azurite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/bauxite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/bauxite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/bauxite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/bauxite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/beryl_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/beryl_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/beryl_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/beryl_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/bituminous_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/bituminous_coal_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/bituminous_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/bituminous_coal_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/cassiterite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/cassiterite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/cassiterite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/cassiterite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/cinnabar_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/cinnabar_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/cinnabar_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/cinnabar_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/coal_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/coal_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/galena_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/galena_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/galena_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/galena_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/gold_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/gold_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/hematite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/hematite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/hematite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/hematite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/kimberlite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/kimberlite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/kimberlite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/kimberlite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/lapis_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/lapis_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/lapis_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/lignite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/lignite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/lignite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/lignite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/limonite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/limonite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/limonite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/limonite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/malachite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/malachite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/malachite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/malachite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/nether_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/nether_gold_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/nether_gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/nether_gold_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/peat.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "bottom=true": [ 4 | { 5 | "model": "geolosys:block/peat" 6 | }, 7 | { 8 | "model": "geolosys:block/peat", 9 | "y": 90 10 | }, 11 | { 12 | "model": "geolosys:block/peat", 13 | "y": 180 14 | }, 15 | { 16 | "model": "geolosys:block/peat", 17 | "y": 270 18 | } 19 | ], 20 | "bottom=false": [ 21 | { 22 | "model": "geolosys:block/peat_top" 23 | }, 24 | { 25 | "model": "geolosys:block/peat_top", 26 | "y": 90 27 | }, 28 | { 29 | "model": "geolosys:block/peat_top", 30 | "y": 180 31 | }, 32 | { 33 | "model": "geolosys:block/peat_top", 34 | "y": 270 35 | } 36 | ] 37 | } 38 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/platinum_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/platinum_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/platinum_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/platinum_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/quartz_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/quartz_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/quartz_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/quartz_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/rhododendron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/rhododendron" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/sphalerite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/sphalerite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/sphalerite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/sphalerite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/teallite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/teallite_ore" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/blockstates/teallite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "geolosys:block/teallite_ore_sample" 6 | } 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/ancient_debris_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/ancient_debris_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/ancient_debris_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/netherrack", 5 | "ore": "geolosys:blocks/ancient_debris_ore", 6 | "_ore": "minecraft:block/ancient_debris_side", 7 | "stone": "minecraft:block/netherrack" 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/anthracite_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/anthracite_coal_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/anthracite_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/anthracite_coal_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/autunite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/autunite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/autunite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/autunite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/azurite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/azurite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/azurite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/azurite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/bauxite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/bauxite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/bauxite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/bauxite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/beryl_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/beryl_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/beryl_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/beryl_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/bituminous_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/bituminous_coal_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/bituminous_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/bituminous_coal_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/cassiterite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/cassiterite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/cassiterite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/cassiterite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/cinnabar_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/cinnabar_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/cinnabar_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/cinnabar_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/coal_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/coal_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/galena_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/galena_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/galena_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/galena_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/gold_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/gold_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/hematite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/hematite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/hematite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/hematite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/kimberlite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/kimberlite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/kimberlite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/kimberlite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/lapis_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/lapis_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/lapis_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/lignite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/lignite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/lignite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/lignite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/limonite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/limonite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/limonite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/limonite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/malachite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/malachite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/malachite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/malachite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/nether_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/nether_gold_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/nether_gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/netherrack", 5 | "ore": "geolosys:blocks/nether_gold_ore", 6 | "stone": "minecraft:block/netherrack" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/peat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/peat/bottom" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/peat_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/grass_block", 3 | "textures": { 4 | "particle": "geolosys:blocks/peat/bottom", 5 | "bottom": "geolosys:blocks/peat/bottom", 6 | "top": "geolosys:blocks/peat/top", 7 | "side": "geolosys:blocks/peat/bottom", 8 | "overlay": "geolosys:blocks/peat/side_overlay" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/platinum_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/platinum_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/platinum_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/platinum_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/quartz_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/quartz_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/quartz_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/quartz_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/sphalerite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/sphalerite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/sphalerite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/sphalerite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/teallite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "geolosys:blocks/teallite_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/block/teallite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ore_sample", 3 | "textures": { 4 | "particle": "minecraft:block/gravel", 5 | "ore": "geolosys:blocks/teallite_ore", 6 | "stone": "minecraft:block/gravel" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/aluminum_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/aluminum_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/aluminum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/aluminum_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/aluminum_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/aluminum_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/ancient_debris_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/ancient_debris_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/ancient_debris_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ancient_debris_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/ancient_debris_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/ancient_debris_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/anthracite_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/anthracite_coal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/anthracite_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/anthracite_coal_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/anthracite_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/anthracite_coal_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/autunite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/autunite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/autunite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/autunite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/azurite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/azurite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/azurite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/azurite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/bauxite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/bauxite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/bauxite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/bauxite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/beryl_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/beryl_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/beryl_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/beryl_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/bituminous_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/bituminous_coal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/bituminous_coal_coke.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/bituminous_coal_coke" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/bituminous_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/bituminous_coal_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/bituminous_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/bituminous_coal_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/cassiterite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/cassiterite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/cassiterite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/cassiterite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/cinnabar_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/cinnabar_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/cinnabar_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/cinnabar_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/coal_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/coal_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/copper_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/copper_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/copper_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/copper_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/copper_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/copper_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/field_manual.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/field_manual" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/galena_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/galena_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/galena_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/galena_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/gold_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/gold_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/gold_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/gold_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/hematite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/hematite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/hematite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/hematite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/iron_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/iron_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/kimberlite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/kimberlite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/kimberlite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/kimberlite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/lapis_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lapis_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/lapis_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lead_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/lead_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lead_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/lead_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lead_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/lead_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lignite_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/lignite_coal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lignite_coal_coke.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/lignite_coal_coke" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lignite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/lignite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/lignite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/bituminous_coal_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/limonite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/limonite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/limonite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/limonite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/malachite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/malachite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/malachite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/malachite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/nether_gold_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/nether_gold_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/nether_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/nether_gold_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/nether_gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/nether_gold_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/nickel_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/nickel_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/nickel_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/nickel_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/nickel_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/nickel_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/osmium_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/osmium_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/peat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/peat_top" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/peat_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/peat_coal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/platinum_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/platinum_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/platinum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/platinum_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/platinum_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/platinum_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/platinum_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/platinum_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/platinum_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/platinum_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/prospectors_pick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "geolosys:items/prospectors_pick" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/quartz_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/quartz_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/quartz_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/quartz_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/rhododendron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "geolosys:blocks/rhododendron" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/silver_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/silver_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/silver_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/silver_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/silver_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/silver_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/sphalerite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/sphalerite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/sphalerite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/sphalerite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/teallite_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/teallite_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/teallite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/teallite_ore_sample" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/test_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "geolosys:block/test_block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/tin_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/tin_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/tin_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/tin_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/tin_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/tin_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/uranium_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/uranium_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/yellorium_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/yellorium_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/zinc_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/zinc_cluster" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/zinc_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/zinc_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/models/item/zinc_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "geolosys:items/zinc_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/ancient_debris_ore.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/ancient_debris_ore.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/ancient_debris_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/ancient_debris_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/anthracite.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/anthracite.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/anthracite_coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/anthracite_coal_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/autunite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/autunite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/azurite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/azurite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/bauxite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/bauxite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/beryl_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/beryl_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/bituminous_coal_ore.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/bituminous_coal_ore.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/bituminous_coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/bituminous_coal_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/cassiterite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/cassiterite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/cassiterite_sample_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/cassiterite_sample_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/cinnabar_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/cinnabar_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/coal_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/galena_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/galena_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/gold_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/hematite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/hematite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/kimberlite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/kimberlite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/lapis_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/lapis_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/lignite_ore.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/lignite_ore.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/lignite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/lignite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/limonite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/limonite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/malachite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/malachite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/nether_gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/nether_gold_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/peat/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/peat/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/peat/raw/peat_bottom.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/peat/raw/peat_bottom.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/peat/raw/peat_side.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/peat/raw/peat_side.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/peat/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/peat/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/peat/side_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/peat/side_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/peat/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/peat/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/platinum_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/platinum_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/quartz_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/quartz_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/rhododendron.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/rhododendron.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/rhododendron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/rhododendron.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/rhododendron_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/rhododendron_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/rhododendron_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/rhododendron_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/sphalerite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/sphalerite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/blocks/teallite_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/blocks/teallite_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/dense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/dense.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/dike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/dike.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/layer.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/samples.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/sparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/gui/patchouli/introduction/sparse.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/aluminum_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/aluminum_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/aluminum_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/aluminum_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/aluminum_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/aluminum_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/ancient_debris_cluster.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/ancient_debris_cluster.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/ancient_debris_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/ancient_debris_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/anthracite_coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/anthracite_coal.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/bituminous_coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/bituminous_coal.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/bituminous_coal_coke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/bituminous_coal_coke.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/copper_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/copper_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/copper_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/copper_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/copper_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/copper_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/field_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/field_manual.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/gold_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/gold_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/iron_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/iron_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/lead_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/lead_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/lead_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/lead_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/lead_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/lead_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/lignite_coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/lignite_coal.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/lignite_coal_coke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/lignite_coal_coke.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/nether_gold_cluster.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/nether_gold_cluster.ase -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/nether_gold_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/nether_gold_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/nickel_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/nickel_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/nickel_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/nickel_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/nickel_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/nickel_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/osmium_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/osmium_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/osmium_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/osmium_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/peat_coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/peat_coal.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/platinum_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/platinum_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/platinum_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/platinum_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/platinum_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/platinum_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/prospectors_pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/prospectors_pick.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/silver_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/silver_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/silver_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/silver_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/silver_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/silver_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/tin_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/tin_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/tin_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/tin_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/tin_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/tin_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/uranium_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/uranium_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/yellorium_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/yellorium_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/zinc_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/zinc_cluster.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/zinc_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/zinc_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/geolosys/textures/items/zinc_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/geolosys/textures/items/zinc_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/block/diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/minecraft/textures/block/diamond_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/block/emerald_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/minecraft/textures/block/emerald_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/item/emerald.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/minecraft/textures/item/emerald.aseprite -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/item/emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oitsjustjose/Geolosys/a8e2ba469a2627bfee862f5d8b99774cc1b5981c/src/main/resources/assets/minecraft/textures/item/emerald.png -------------------------------------------------------------------------------- /src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "entries": [ 4 | "geolosys:osmium", 5 | "geolosys:quartzes", 6 | "geolosys:yellorium", 7 | "geolosys:sulfur" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:ores/iron", 5 | "#forge:ores/gold", 6 | "#forge:ores/copper", 7 | "#forge:ores/tin", 8 | "#forge:ores/silver", 9 | "#forge:ores/lead", 10 | "#forge:ores/aluminum", 11 | "#forge:ores/nickel", 12 | "#forge:ores/platinum", 13 | "#forge:ores/uranium", 14 | "#forge:ores/zinc", 15 | "#forge:ores/yellorium", 16 | "#forge:ores/osmium" 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/aluminum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:bauxite_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:lignite_ore", 5 | "geolosys:bituminous_coal_ore", 6 | "geolosys:anthracite_coal_ore", 7 | "geolosys:coal_ore" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:malachite_ore", 5 | "geolosys:azurite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:kimberlite_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/emerald.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:beryl_ore", 5 | "geolosys:teallite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:gold_ore", 5 | "geolosys:nether_gold_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:hematite_ore", 5 | "geolosys:limonite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/lapis.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:lapis_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:galena_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/netherite_scrap.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:ancient_debris_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/nickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:limonite_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/osmium.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:platinum_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/platinum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:platinum_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/quartz.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:quartz_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:cinnabar_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:galena_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:cassiterite_ore", 5 | "geolosys:teallite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:autunite_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/yellorium.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:autunite_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/blocks/ores/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:sphalerite_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:ingots/copper", 5 | "#forge:ingots/tin", 6 | "#forge:ingots/silver", 7 | "#forge:ingots/lead", 8 | "#forge:ingots/aluminum", 9 | "#forge:ingots/nickel", 10 | "#forge:ingots/platinum", 11 | "#forge:ingots/zinc" 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/aluminum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:aluminum_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:copper_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:lead_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/nickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:nickel_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/platinum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:platinum_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:silver_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:tin_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ingots/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:zinc_ingot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:nuggets/copper", 5 | "#forge:nuggets/tin", 6 | "#forge:nuggets/silver", 7 | "#forge:nuggets/lead", 8 | "#forge:nuggets/aluminum", 9 | "#forge:nuggets/nickel", 10 | "#forge:nuggets/platinum", 11 | "#forge:nuggets/zinc" 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/aluminum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:aluminum_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:copper_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:lead_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/nickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:nickel_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/platinum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:platinum_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:silver_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:tin_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/nuggets/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:zinc_nugget" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:ores/iron", 5 | "#forge:ores/gold", 6 | "#forge:ores/copper", 7 | "#forge:ores/tin", 8 | "#forge:ores/silver", 9 | "#forge:ores/lead", 10 | "#forge:ores/aluminum", 11 | "#forge:ores/nickel", 12 | "#forge:ores/platinum", 13 | "#forge:ores/uranium", 14 | "#forge:ores/zinc", 15 | "#forge:ores/yellorium", 16 | "#forge:ores/osmium" 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/aluminum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:aluminum_cluster", 5 | "geolosys:bauxite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:lignite_ore", 5 | "geolosys:bituminous_coal_ore", 6 | "geolosys:anthracite_coal_ore", 7 | "geolosys:coal_ore" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:copper_cluster", 5 | "geolosys:malachite_ore", 6 | "geolosys:azurite_ore" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:kimberlite_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/emerald.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:beryl_ore", 5 | "geolosys:teallite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:gold_cluster", 5 | "geolosys:gold_ore", 6 | "geolosys:nether_gold_ore" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:iron_cluster", 5 | "geolosys:hematite_ore", 6 | "geolosys:limonite_ore" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/lapis.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:lapis_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/lead.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:lead_cluster", 5 | "geolosys:galena_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/netherite_scrap.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:ancient_debris_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/nickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:nickel_cluster", 5 | "geolosys:limonite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/osmium.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:osmium_cluster", 5 | "geolosys:platinum_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/platinum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:platinum_cluster", 5 | "geolosys:platinum_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/quartz.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:quartz_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:cinnabar_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:silver_cluster", 5 | "geolosys:galena_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/tin.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:tin_cluster", 5 | "geolosys:cassiterite_ore", 6 | "geolosys:teallite_ore" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/uranium.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:uranium_cluster", 5 | "geolosys:autunite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/yellorium.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:yellorium_cluster", 5 | "geolosys:autunite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/forge/tags/items/ores/zinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:zinc_cluster", 5 | "geolosys:sphalerite_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/ancient_debris.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "yMin": 8, 5 | "yMax": 22, 6 | "baseRadius": 3, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "the_nether" 11 | ] 12 | }, 13 | "blockStateMatchers": [ 14 | "minecraft:netherrack", 15 | "minecraft:basalt", 16 | "minecraft:blackstone", 17 | "minecraft:magma_block", 18 | "minecraft:lava" 19 | ], 20 | "blocks": [ 21 | { 22 | "block": "geolosys:ancient_debris_ore", 23 | "chance": 0.6 24 | }, 25 | { 26 | "block": null, 27 | "chance": 0.4 28 | } 29 | ], 30 | "samples": [ 31 | { 32 | "block": "geolosys:ancient_debris_ore_sample", 33 | "chance": 1.0 34 | } 35 | ], 36 | "generationWeight": 1 37 | } 38 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/anthracitic_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_layer", 3 | "config": { 4 | "yMin": 2, 5 | "yMax": 10, 6 | "radius": 3, 7 | "depth": 4, 8 | "dimensions": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "overworld" 12 | ] 13 | }, 14 | "blocks": [ 15 | { 16 | "block": "geolosys:anthracite_coal_ore", 17 | "chance": 0.65 18 | }, 19 | { 20 | "block": null, 21 | "chance": 0.35 22 | } 23 | ], 24 | "samples": [ 25 | { 26 | "block": "geolosys:anthracite_coal_ore_sample", 27 | "chance": 1.0 28 | } 29 | ], 30 | "generationWeight": 4 31 | } 32 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/assorted_quartz.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "yMin": 6, 5 | "yMax": 29, 6 | "baseRadius": 7, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "geolosys:quartz_ore", 16 | "chance": 1.0 17 | } 18 | ], 19 | "samples": [ 20 | { 21 | "block": "geolosys:quartz_ore_sample", 22 | "chance": 1.0 23 | } 24 | ], 25 | "generationWeight": 6 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/autunite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_sparse", 3 | "config": { 4 | "blocks": [ 5 | { 6 | "block": "geolosys:autunite_ore", 7 | "chance": 0.85 8 | }, 9 | { 10 | "block": "minecraft:granite", 11 | "chance": 0.15 12 | } 13 | ], 14 | "samples": [ 15 | { 16 | "block": "geolosys:autunite_ore_sample", 17 | "chance": 1.0 18 | } 19 | ], 20 | "yMin": 8, 21 | "yMax": 33, 22 | "spread": 6, 23 | "size": 24, 24 | "biomes": { 25 | "isBlacklist": false, 26 | "filter": [ 27 | "MOUNTAIN" 28 | ] 29 | }, 30 | "dimensions": { 31 | "isBlacklist": false, 32 | "filter": [ 33 | "overworld" 34 | ] 35 | }, 36 | "generationWeight": 4 37 | } 38 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/bauxite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "yMin": 48, 5 | "yMax": 65, 6 | "size": 25, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "geolosys:bauxite_ore", 16 | "chance": 0.9 17 | }, 18 | { 19 | "block": null, 20 | "chance": 0.1 21 | } 22 | ], 23 | "samples": [ 24 | { 25 | "block": "geolosys:bauxite_ore_sample", 26 | "chance": 1.0 27 | } 28 | ], 29 | "generationWeight": 2 30 | } 31 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/beryl.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "yMin": 4, 5 | "yMax": 32, 6 | "baseRadius": 2, 7 | "biomes": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "MOUNTAIN" 11 | ] 12 | }, 13 | "dimensions": { 14 | "isBlacklist": false, 15 | "filter": [ 16 | "overworld" 17 | ] 18 | }, 19 | "blocks": [ 20 | { 21 | "block": "geolosys:beryl_ore", 22 | "chance": 0.45 23 | }, 24 | { 25 | "block": null, 26 | "chance": 0.55 27 | } 28 | ], 29 | "samples": [ 30 | { 31 | "block": "geolosys:beryl_ore_sample", 32 | "chance": 1.0 33 | } 34 | ], 35 | "generationWeight": 2 36 | } 37 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/bituminous_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_layer", 3 | "config": { 4 | "yMin": 30, 5 | "yMax": 50, 6 | "radius": 4, 7 | "depth": 5, 8 | "dimensions": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "overworld" 12 | ] 13 | }, 14 | "blocks": [ 15 | { 16 | "block": "geolosys:bituminous_coal_ore", 17 | "chance": 0.55 18 | }, 19 | { 20 | "block": null, 21 | "chance": 0.45 22 | } 23 | ], 24 | "samples": [ 25 | { 26 | "block": "geolosys:bituminous_coal_ore_sample", 27 | "chance": 1.0 28 | } 29 | ], 30 | "generationWeight": 5 31 | } 32 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/cassiterite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "yMin": 44, 5 | "yMax": 68, 6 | "size": 24, 7 | "density": 1.0, 8 | "biomes": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "BEACH", 12 | "OCEAN", 13 | "HOT" 14 | ] 15 | }, 16 | "dimensions": { 17 | "isBlacklist": false, 18 | "filter": [ 19 | "overworld" 20 | ] 21 | }, 22 | "blocks": [ 23 | { 24 | "block": "geolosys:cassiterite_ore", 25 | "chance": 0.75 26 | }, 27 | { 28 | "block": null, 29 | "chance": 0.25 30 | } 31 | ], 32 | "samples": [ 33 | { 34 | "block": "geolosys:cassiterite_ore_sample", 35 | "chance": 1.0 36 | } 37 | ], 38 | "generationWeight": 6 39 | } 40 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/cinnabar.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_sparse", 3 | "config": { 4 | "yMin": 5, 5 | "yMax": 12, 6 | "size": 64, 7 | "spread": 48, 8 | "dimensions": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "overworld" 12 | ] 13 | }, 14 | "blocks": [ 15 | { 16 | "block": "geolosys:cinnabar_ore", 17 | "chance": 1.0 18 | } 19 | ], 20 | "samples": [ 21 | { 22 | "block": "geolosys:cinnabar_ore_sample", 23 | "chance": 1.0 24 | } 25 | ], 26 | "generationWeight": 4 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_sparse", 3 | "config": { 4 | "yMin": 8, 5 | "yMax": 78, 6 | "size": 48, 7 | "spread": 48, 8 | "dimensions": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "overworld" 12 | ] 13 | }, 14 | "blocks": [ 15 | { 16 | "block": "geolosys:coal_ore", 17 | "chance": 1.0 18 | } 19 | ], 20 | "samples": [ 21 | { 22 | "block": "geolosys:coal_ore_sample", 23 | "chance": 1.0 24 | } 25 | ], 26 | "generationWeight": 6 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/galena.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_sparse", 3 | "config": { 4 | "yMin": 16, 5 | "yMax": 50, 6 | "size": 32, 7 | "spread": 32, 8 | "biomes": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "PLAINS" 12 | ] 13 | }, 14 | "dimensions": { 15 | "isBlacklist": false, 16 | "filter": [ 17 | "overworld" 18 | ] 19 | }, 20 | "blocks": [ 21 | { 22 | "block": "geolosys:galena_ore", 23 | "chance": 1.0 24 | } 25 | ], 26 | "samples": [ 27 | { 28 | "block": "geolosys:galena_ore_sample", 29 | "chance": 1.0 30 | } 31 | ], 32 | "generationWeight": 6 33 | } 34 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "yMin": 5, 5 | "yMax": 30, 6 | "size": 40, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "geolosys:gold_ore", 16 | "chance": 0.85 17 | }, 18 | { 19 | "block": null, 20 | "chance": 0.15 21 | } 22 | ], 23 | "samples": [ 24 | { 25 | "block": "geolosys:gold_ore_sample", 26 | "chance": 1.0 27 | } 28 | ], 29 | "generationWeight": 4 30 | } 31 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/gold_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "yMin": 10, 5 | "yMax": 40, 6 | "size": 35, 7 | "blockStateMatchers": [ 8 | "minecraft:netherrack", 9 | "minecraft:basalt", 10 | "minecraft:blackstone", 11 | "minecraft:magma_block", 12 | "minecraft:lava" 13 | ], 14 | "dimensions": { 15 | "isBlacklist": false, 16 | "filter": [ 17 | "the_nether" 18 | ] 19 | }, 20 | "blocks": [ 21 | { 22 | "block": "geolosys:nether_gold_ore", 23 | "chance": 0.30 24 | }, 25 | { 26 | "block": null, 27 | "chance": 0.70 28 | } 29 | ], 30 | "samples": [ 31 | { 32 | "block": "geolosys:nether_gold_ore_sample", 33 | "chance": 1.0 34 | } 35 | ], 36 | "generationWeight": 10 37 | } 38 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/hematite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "yMin": 32, 5 | "yMax": 60, 6 | "baseRadius": 2, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "geolosys:hematite_ore", 16 | "chance": 1.0 17 | } 18 | ], 19 | "samples": [ 20 | { 21 | "block": "geolosys:hematite_ore_sample", 22 | "chance": 1.0 23 | } 24 | ], 25 | "generationWeight": 6 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/kimberlite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "yMin": 3, 5 | "yMax": 16, 6 | "baseRadius": 3, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "geolosys:kimberlite_ore", 16 | "chance": 0.5 17 | }, 18 | { 19 | "block": null, 20 | "chance": 0.5 21 | } 22 | ], 23 | "samples": [ 24 | { 25 | "block": "geolosys:kimberlite_ore_sample", 26 | "chance": 1.0 27 | } 28 | ], 29 | "generationWeight": 2 30 | } 31 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/lapis.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_sparse", 3 | "config": { 4 | "yMin": 10, 5 | "yMax": 24, 6 | "size": 30, 7 | "spread": 24, 8 | "biomes": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "SANDY" 12 | ] 13 | }, 14 | "dimensions": { 15 | "isBlacklist": false, 16 | "filter": [ 17 | "overworld" 18 | ] 19 | }, 20 | "blocks": [ 21 | { 22 | "block": "geolosys:lapis_ore", 23 | "chance": 1.0 24 | } 25 | ], 26 | "samples": [ 27 | { 28 | "block": "geolosys:lapis_ore_sample", 29 | "chance": 1.0 30 | } 31 | ], 32 | "generationWeight": 5 33 | } 34 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/lignite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_layer", 3 | "config": { 4 | "yMin": 40, 5 | "yMax": 70, 6 | "radius": 3, 7 | "depth": 4, 8 | "dimensions": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "overworld" 12 | ] 13 | }, 14 | "blocks": [ 15 | { 16 | "block": "geolosys:lignite_ore", 17 | "chance": 0.85 18 | }, 19 | { 20 | "block": null, 21 | "chance": 0.15 22 | } 23 | ], 24 | "samples": [ 25 | { 26 | "block": "geolosys:lignite_ore_sample", 27 | "chance": 1.0 28 | } 29 | ], 30 | "generationWeight": 7 31 | } 32 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/limonite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "yMin": 6, 5 | "yMax": 32, 6 | "baseRadius": 6, 7 | "biomes": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "SWAMP", 11 | "MUSHROOM", 12 | "WET" 13 | ] 14 | }, 15 | "dimensions": { 16 | "isBlacklist": false, 17 | "filter": [ 18 | "overworld" 19 | ] 20 | }, 21 | "blocks": [ 22 | { 23 | "block": "geolosys:limonite_ore", 24 | "chance": 0.65 25 | }, 26 | { 27 | "block": null, 28 | "chance": 0.35 29 | } 30 | ], 31 | "samples": [ 32 | { 33 | "block": "geolosys:limonite_ore_sample", 34 | "chance": 1.0 35 | } 36 | ], 37 | "generationWeight": 4 38 | } 39 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/malachite_and_azurite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "blocks": [ 5 | { 6 | "block": "geolosys:malachite_ore", 7 | "chance": 0.4 8 | }, 9 | { 10 | "block": "geolosys:azurite_ore", 11 | "chance": 0.6 12 | } 13 | ], 14 | "samples": [ 15 | { 16 | "block": "geolosys:malachite_ore_sample", 17 | "chance": 0.4 18 | }, 19 | { 20 | "block": "geolosys:azurite_ore_sample", 21 | "chance": 0.6 22 | } 23 | ], 24 | "yMin": 12, 25 | "yMax": 44, 26 | "size": 80, 27 | "dimensions": { 28 | "isBlacklist": false, 29 | "filter": [ 30 | "overworld" 31 | ] 32 | }, 33 | "generationWeight": 4 34 | } 35 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/platinum.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "yMin": 12, 5 | "yMax": 25, 6 | "baseRadius": 4, 7 | "biomes": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "MOUNTAIN" 11 | ] 12 | }, 13 | "dimensions": { 14 | "isBlacklist": false, 15 | "filter": [ 16 | "overworld" 17 | ] 18 | }, 19 | "blocks": [ 20 | { 21 | "block": "geolosys:platinum_ore", 22 | "chance": 0.67 23 | }, 24 | { 25 | "block": null, 26 | "chance": 0.33 27 | } 28 | ], 29 | "samples": [ 30 | { 31 | "block": "geolosys:platinum_ore_sample", 32 | "chance": 1.0 33 | } 34 | ], 35 | "generationWeight": 4 36 | } 37 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/sphalerite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_sparse", 3 | "config": { 4 | "yMin": 37, 5 | "yMax": 46, 6 | "spread": 48, 7 | "size": 28, 8 | "dimensions": { 9 | "isBlacklist": false, 10 | "filter": [ 11 | "overworld" 12 | ] 13 | }, 14 | "blocks": [ 15 | { 16 | "block": "geolosys:sphalerite_ore", 17 | "chance": 1.0 18 | } 19 | ], 20 | "samples": [ 21 | { 22 | "block": "geolosys:sphalerite_ore_sample", 23 | "chance": 1.0 24 | } 25 | ], 26 | "generationWeight": 5 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/ore/teallite_and_emerald.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dike", 3 | "config": { 4 | "blocks": [ 5 | { 6 | "block": "geolosys:teallite_ore", 7 | "chance": 0.6 8 | }, 9 | { 10 | "block": "geolosys:beryl_ore", 11 | "chance": 0.15 12 | }, 13 | { 14 | "block": null, 15 | "chance": 0.25 16 | } 17 | ], 18 | "samples": [ 19 | { 20 | "block": "geolosys:teallite_ore_sample", 21 | "chance": 1.0 22 | } 23 | ], 24 | "yMin": 8, 25 | "yMax": 43, 26 | "baseRadius": 6, 27 | "biomes": { 28 | "isBlacklist": false, 29 | "filter": [ 30 | "RIVER", 31 | "HOT" 32 | ] 33 | }, 34 | "dimensions": { 35 | "isBlacklist": false, 36 | "filter": [ 37 | "overworld" 38 | ] 39 | }, 40 | "generationWeight": 2 41 | } 42 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/other/peat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_top_layer", 3 | "config": { 4 | "blocks": [ 5 | { 6 | "block": "geolosys:peat", 7 | "chance": 1.0 8 | } 9 | ], 10 | "samples": [ 11 | { 12 | "block": "geolosys:rhododendron", 13 | "chance": 1.0 14 | } 15 | ], 16 | "radius": 4, 17 | "depth": 4, 18 | "chanceForSample": 0.25, 19 | "generationWeight": 3, 20 | "dimensions": { 21 | "isBlacklist": true, 22 | "filter": [ 23 | "the_nether", 24 | "the_end" 25 | ] 26 | }, 27 | "blockStateMatchers": [ 28 | "minecraft:dirt", 29 | "minecraft:grass_block" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/stone/andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "size": 75, 5 | "yMin": 2, 6 | "yMax": 70, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "minecraft:andesite", 16 | "chance": 1.0 17 | } 18 | ], 19 | "samples": [ 20 | { 21 | "block": null, 22 | "chance": 1.0 23 | } 24 | ], 25 | "generationWeight": 2 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/stone/diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "size": 75, 5 | "yMin": 2, 6 | "yMax": 70, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "minecraft:diorite", 16 | "chance": 1.0 17 | } 18 | ], 19 | "samples": [ 20 | { 21 | "block": null, 22 | "chance": 1.0 23 | } 24 | ], 25 | "generationWeight": 2 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/deposits/stone/granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "geolosys:deposit_dense", 3 | "config": { 4 | "size": 75, 5 | "yMin": 2, 6 | "yMax": 70, 7 | "dimensions": { 8 | "isBlacklist": false, 9 | "filter": [ 10 | "overworld" 11 | ] 12 | }, 13 | "blocks": [ 14 | { 15 | "block": "minecraft:granite", 16 | "chance": 1.0 17 | } 18 | ], 19 | "samples": [ 20 | { 21 | "block": null, 22 | "chance": 1.0 23 | } 24 | ], 25 | "generationWeight": 2 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_modifiers/osmium.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "condition": "block_state_property", 5 | "block": "geolosys:platinum_ore" 6 | } 7 | ], 8 | "item": "geolosys:osmium_cluster", 9 | "chance": 0.5, 10 | "qty": 1 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_modifiers/quartzes.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "condition": "block_state_property", 5 | "block": "geolosys:quartz_ore" 6 | } 7 | ], 8 | "quartzes": [ 9 | { 10 | "item": "appliedenergistics2:certus_quartz_crystal", 11 | "chance": 0.4 12 | }, 13 | { 14 | "item": "appliedenergistics2:charged_certus_quartz_crystal", 15 | "chance": 0.2 16 | } 17 | ], 18 | "chance": 0.5 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_modifiers/sulfur.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "condition": "block_state_property", 5 | "block": "geolosys:coal_ore" 6 | } 7 | ], 8 | "tag": "forge:dusts/sulfur", 9 | "chance": 0.5, 10 | "qty": 1 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_modifiers/yellorium.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "condition": "block_state_property", 5 | "block": "geolosys:autunite_ore" 6 | } 7 | ], 8 | "item": "geolosys:yellorium_cluster", 9 | "chance": 0.5, 10 | "qty": 1 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/ancient_debris_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:ancient_debris_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/anthracite_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:anthracite_coal" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/autunite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:uranium_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/azurite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:copper_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/bauxite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:aluminum_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/beryl_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "minecraft:emerald" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/bituminous_coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:bituminous_coal" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/cassiterite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:tin_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/cinnabar_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "minecraft:redstone" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/coal_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "minecraft:coal" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/galena_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1.0, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:lead_cluster" 10 | }, 11 | { 12 | "type": "minecraft:item", 13 | "name": "geolosys:silver_cluster", 14 | "parameters": { 15 | "extra": 1, 16 | "probability": 0.5 17 | } 18 | } 19 | ] 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:gold_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/hematite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:iron_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/kimberlite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "minecraft:diamond" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/lapis_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "minecraft:lapis_lazuli" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/lignite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:lignite_coal" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/limonite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1.0, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:iron_cluster" 10 | }, 11 | { 12 | "type": "minecraft:item", 13 | "name": "geolosys:nickel_cluster", 14 | "parameters": { 15 | "extra": 1, 16 | "probability": 0.2 17 | } 18 | } 19 | ] 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/malachite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:copper_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/nether_gold_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:nether_gold_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/platinum_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:platinum_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/quartz_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "minecraft:quartz" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/rhododendron.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:alternatives", 9 | "children": [ 10 | { 11 | "type": "minecraft:item", 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:match_tool", 15 | "predicate": { 16 | "item": "minecraft:shears" 17 | } 18 | } 19 | ], 20 | "name": "geolosys:rhododendron" 21 | } 22 | ] 23 | } 24 | ] 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/sphalerite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:zinc_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/loot_tables/blocks/teallite_ore_sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "rolls": 1, 6 | "entries": [ 7 | { 8 | "type": "minecraft:item", 9 | "name": "geolosys:tin_cluster" 10 | } 11 | ], 12 | "conditions": [ 13 | { 14 | "condition": "minecraft:survives_explosion" 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/book.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "item.geolosys.field_manual", 3 | "landing_text": "item.geolosys.field_manual.landing", 4 | "model": "geolosys:field_manual", 5 | "version": 1, 6 | "creative_tab": "geolosys.name", 7 | "show_progress": false 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/categories/01_introduction.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Introduction", 3 | "description": "Getting Started With Geolosys", 4 | "icon": "minecraft:wooden_pickaxe", 5 | "sortnum": 1 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/categories/02_prospecting.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Prospecting", 3 | "description": "All About Finding and Gathering Ore Deposits", 4 | "icon": "geolosys:prospectors_pick", 5 | "sortnum": 2 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/categories/03_resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Resources", 3 | "description": "A Comprehensive Look at all Ores Generated by Geolosys", 4 | "icon": "geolosys:malachite_ore", 5 | "sortnum": 3 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/categories/04_patrons.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Patrons", 3 | "description": "If you have, thank you for supporting the development of Geolosys!", 4 | "icon": "minecraft:diamond", 5 | "sortnum": 4 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/01_introduction/03_vanilla_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vanilla Ores", 3 | "icon": "minecraft:iron_ore", 4 | "category": "geolosys:01_introduction", 5 | "sortnum": 3, 6 | "pages": [ 7 | { 8 | "type": "text", 9 | "text": "If configured, all Vanilla ores can be disabled from generating in the overworld, nether or end! Just enable the config option (it's on by default) and you can begin to rely on Geolosys as a provider for all of your Vanilla resources such as Iron and Redstone!" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/02_prospecting/01_samples.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Samples", 3 | "icon": "geolosys:hematite_ore_sample", 4 | "category": "geolosys:02_prospecting", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "Samples lie on the surface above underground mineral deposits, also referred to as Plutons. These samples can (if configured to) drop a cluster or item, which can help you determine what resource the pluton provides! You can break these either normally or with right-click." 9 | }, 10 | { 11 | "type": "image", 12 | "images": [ 13 | "geolosys:textures/gui/patchouli/introduction/samples.png" 14 | ], 15 | "border": true 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/ancient_debris.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ancient Debris", 3 | "icon": "geolosys:ancient_debris_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Ancient Debris", 9 | "item": "geolosys:ancient_debris_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 42 meters below and 56 meters below sea level. It can only be found in the nether and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Andesite", 3 | "icon": "minecraft:andesite", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Andesite", 9 | "item": "minecraft:andesite", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 6 meters above and 62 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/anthracitic_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Anthracite Coal", 3 | "icon": "geolosys:anthracite_coal_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Anthracite Coal", 9 | "item": "geolosys:anthracite_coal_ore", 10 | "link_recipe": false, 11 | "text": "This layer deposit can be found between 54 meters below and 62 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/assorted_quartz.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Quartz", 3 | "icon": "geolosys:quartz_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Quartz", 9 | "item": "geolosys:quartz_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 35 meters below and 58 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/autunite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Autunite and Granite", 3 | "icon": "geolosys:autunite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Autunite and Granite", 9 | "item": "geolosys:autunite_ore", 10 | "link_recipe": false, 11 | "text": "This sparse deposit can be found between 31 meters below and 56 meters below sea level. It can only be found in the overworld and is only found in mountain biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/bauxite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bauxite", 3 | "icon": "geolosys:bauxite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Bauxite", 9 | "item": "geolosys:bauxite_ore", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 1 meters above and 16 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/beryl.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Beryl", 3 | "icon": "geolosys:beryl_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Beryl", 9 | "item": "geolosys:beryl_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 32 meters below and 60 meters below sea level. It can only be found in the overworld and is only found in mountain biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/bituminous_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bituminous Coal", 3 | "icon": "geolosys:bituminous_coal_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Bituminous Coal", 9 | "item": "geolosys:bituminous_coal_ore", 10 | "link_recipe": false, 11 | "text": "This layer deposit can be found between 14 meters below and 34 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/cassiterite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cassiterite", 3 | "icon": "geolosys:cassiterite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Cassiterite", 9 | "item": "geolosys:cassiterite_ore", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 4 meters above and 20 meters below sea level. It can only be found in the overworld and is only found in beach, ocean and hot biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/cinnabar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Cinnabar", 3 | "icon": "geolosys:cinnabar_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Cinnabar", 9 | "item": "geolosys:cinnabar_ore", 10 | "link_recipe": false, 11 | "text": "This sparse deposit can be found between 52 meters below and 59 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Coal", 3 | "icon": "geolosys:coal_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Coal", 9 | "item": "geolosys:coal_ore", 10 | "link_recipe": false, 11 | "text": "This sparse deposit can be found between 14 meters above and 56 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Diorite", 3 | "icon": "minecraft:diorite", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Diorite", 9 | "item": "minecraft:diorite", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 6 meters above and 62 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/galena.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Galena", 3 | "icon": "geolosys:galena_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Galena", 9 | "item": "geolosys:galena_ore", 10 | "link_recipe": false, 11 | "text": "This sparse deposit can be found between 14 meters below and 48 meters below sea level. It can only be found in the overworld and is only found in plains biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gold", 3 | "icon": "geolosys:gold_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Gold", 9 | "item": "geolosys:gold_ore", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 34 meters below and 59 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/gold_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nether Gold", 3 | "icon": "geolosys:nether_gold_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Nether Gold", 9 | "item": "geolosys:nether_gold_ore", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 24 meters below and 54 meters below sea level. It can only be found in the nether and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Granite", 3 | "icon": "minecraft:granite", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Granite", 9 | "item": "minecraft:granite", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 6 meters above and 62 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/hematite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Hematite", 3 | "icon": "geolosys:hematite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Hematite", 9 | "item": "geolosys:hematite_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 4 meters below and 32 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/kimberlite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kimberlite", 3 | "icon": "geolosys:kimberlite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Kimberlite", 9 | "item": "geolosys:kimberlite_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 48 meters below and 61 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/lapis.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Lapis", 3 | "icon": "geolosys:lapis_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Lapis", 9 | "item": "geolosys:lapis_ore", 10 | "link_recipe": false, 11 | "text": "This sparse deposit can be found between 40 meters below and 54 meters below sea level. It can only be found in the overworld and is only found in sandy biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/lignite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Lignite", 3 | "icon": "geolosys:lignite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Lignite", 9 | "item": "geolosys:lignite_ore", 10 | "link_recipe": false, 11 | "text": "This layer deposit can be found between 6 meters above and 24 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/limonite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Limonite", 3 | "icon": "geolosys:limonite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Limonite", 9 | "item": "geolosys:limonite_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 32 meters below and 58 meters below sea level. It can only be found in the overworld and is only found in swamp, mushroom and wet biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/malachite_and_azurite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Malachite and Azurite", 3 | "icon": "geolosys:malachite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Malachite and Azurite", 9 | "item": "geolosys:malachite_ore", 10 | "link_recipe": false, 11 | "text": "This dense deposit can be found between 20 meters below and 52 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/peat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Peat", 3 | "icon": "geolosys:peat", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Peat", 9 | "item": "geolosys:peat", 10 | "link_recipe": false, 11 | "text": "This top layer deposit can be found directly on the surface with Rhododendron on top of it. It cannot be found in the nether or end and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/platinum.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Platinum", 3 | "icon": "geolosys:platinum_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Platinum", 9 | "item": "geolosys:platinum_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 39 meters below and 52 meters below sea level. It can only be found in the overworld and is only found in mountain biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/sphalerite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sphalerite", 3 | "icon": "geolosys:sphalerite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Sphalerite", 9 | "item": "geolosys:sphalerite_ore", 10 | "link_recipe": false, 11 | "text": "This sparse deposit can be found between 18 meters below and 27 meters below sea level. It can only be found in the overworld and can be found in any biome." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/03_resources/teallite_and_emerald.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Teallite and Beryl", 3 | "icon": "geolosys:teallite_ore", 4 | "category": "geolosys:03_resources", 5 | "pages": [ 6 | { 7 | "type": "spotlight", 8 | "title": "Teallite and Beryl", 9 | "item": "geolosys:teallite_ore", 10 | "link_recipe": false, 11 | "text": "This dike deposit can be found between 21 meters below and 56 meters below sea level. It can only be found in the overworld and is only found in river and hot biomes." 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/entries/04_patrons/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Patron Shoutout!", 3 | "icon": "minecraft:diamond", 4 | "category": "geolosys:04_patrons", 5 | "pages": [ 6 | { 7 | "type": "patron_list" 8 | }, 9 | { 10 | "type": "link", 11 | "link_text": "Patreon Page", 12 | "url": "https://patreon.com/oitsjustjose" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/templates/include/patron_list_template.json: -------------------------------------------------------------------------------- 1 | { 2 | "processor": "com.oitsjustjose.geolosys.client.patchouli.processors.PatronProcessor", 3 | "components": [ 4 | { 5 | "type": "text", 6 | "text": "#patrons", 7 | "x": 4, 8 | "y": 10 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/patchouli_books/field_manual/en_us/templates/patron_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": [ 3 | { 4 | "template": "include/patron_list_template", 5 | "as": "patron_list_template", 6 | "using": { 7 | "patrons": "#patrons" 8 | } 9 | } 10 | ], 11 | "components": [ 12 | { 13 | "type": "header", 14 | "text": "Thank You To...", 15 | "x": -1 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/aluminum_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:aluminum_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:aluminum_cluster" 20 | }, 21 | "result": "geolosys:aluminum_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/copper_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:copper_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:copper_cluster" 20 | }, 21 | "result": "geolosys:copper_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/gold_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "minecraft:gold_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:gold_cluster" 20 | }, 21 | "result": "minecraft:gold_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/gold_nugget_from_poor_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:blasting", 3 | "ingredient": { 4 | "item": "geolosys:nether_gold_cluster" 5 | }, 6 | "result": { 7 | "item": "minecraft:gold_nugget", 8 | "count": 4 9 | }, 10 | "experience": 0.15, 11 | "cookingtime": 100 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/iron_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "minecraft:iron_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:iron_cluster" 20 | }, 21 | "result": "minecraft:iron_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/lead_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:lead_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:lead_cluster" 20 | }, 21 | "result": "geolosys:lead_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/netherite_scrap_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "minecraft:netherite_scrap", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:ancient_debris_cluster" 20 | }, 21 | "result": "minecraft:netherite_scrap", 22 | "experience": 1.0, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/nickel_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:nickel_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:nickel_cluster" 20 | }, 21 | "result": "geolosys:nickel_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/platinum_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:platinum_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:platinum_cluster" 20 | }, 21 | "result": "geolosys:platinum_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/silver_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:silver_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:silver_cluster" 20 | }, 21 | "result": "geolosys:silver_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/tin_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:tin_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:tin_cluster" 20 | }, 21 | "result": "geolosys:tin_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/blasting/zinc_ingot_from_cluster_blasting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:zinc_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:blasting", 18 | "ingredient": { 19 | "item": "geolosys:zinc_cluster" 20 | }, 21 | "result": "geolosys:zinc_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 100 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/compat/immersiveengineering/bituminous_coke_from_coke_oven.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "type": "forge:mod_loaded", 10 | "modid": "immersiveengineering" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "immersiveengineering:coke_oven", 18 | "result": { 19 | "item": "geolosys:bituminous_coal_coke" 20 | }, 21 | "input": { 22 | "item": "geolosys:bituminous_coal" 23 | }, 24 | "creosote": 750, 25 | "time": 1500 26 | } 27 | } 28 | ] 29 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/compat/immersiveengineering/lignite_coke_from_coke_oven.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "type": "forge:mod_loaded", 10 | "modid": "immersiveengineering" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "immersiveengineering:coke_oven", 18 | "result": { 19 | "item": "geolosys:lignite_coal_coke" 20 | }, 21 | "input": { 22 | "item": "geolosys:lignite_coal" 23 | }, 24 | "creosote": 750, 25 | "time": 1500 26 | } 27 | } 28 | ] 29 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/field_manual_from_crafting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "minecraft:wooden_pickaxe" 6 | }, 7 | { 8 | "item": "minecraft:book" 9 | } 10 | ], 11 | "result": { 12 | "item": "patchouli:guide_book", 13 | "nbt": { 14 | "patchouli:book": "geolosys:field_manual" 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/aluminum_ingot_to_aluminum_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:aluminum_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:aluminum_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/aluminum_nugget_to_aluminum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/aluminum" 11 | }, 12 | "i": { 13 | "item": "geolosys:aluminum_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:aluminum_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/copper_ingot_to_copper_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:copper_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:copper_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/copper_nugget_to_copper_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/copper" 11 | }, 12 | "i": { 13 | "item": "geolosys:copper_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:copper_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/lead_ingot_to_lead_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:lead_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:lead_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/lead_nugget_to_lead_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/lead" 11 | }, 12 | "i": { 13 | "item": "geolosys:lead_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:lead_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/nickel_ingot_to_nickel_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:nickel_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:nickel_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/nickel_nugget_to_nickel_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/nickel" 11 | }, 12 | "i": { 13 | "item": "geolosys:nickel_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:nickel_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/platinum_ingot_to_platinum_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:platinum_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:platinum_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/platinum_nugget_to_platinum_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/platinum" 11 | }, 12 | "i": { 13 | "item": "geolosys:platinum_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:platinum_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/silver_ingot_to_silver_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:silver_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:silver_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/silver_nugget_to_silver_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/silver" 11 | }, 12 | "i": { 13 | "item": "geolosys:silver_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:silver_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/tin_ingot_to_tin_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:tin_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:tin_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/tin_nugget_to_tin_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/tin" 11 | }, 12 | "i": { 13 | "item": "geolosys:tin_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:tin_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/zinc_ingot_to_zinc_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:zinc_ingot" 6 | } 7 | ], 8 | "result": { 9 | "item": "geolosys:zinc_nugget", 10 | "count": 9 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/nuggets/zinc_nugget_to_zinc_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "sss", 5 | "sis", 6 | "sss" 7 | ], 8 | "key": { 9 | "s": { 10 | "tag": "forge:nuggets/zinc" 11 | }, 12 | "i": { 13 | "item": "geolosys:zinc_nugget" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:zinc_ingot" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/prospectors_pick_from_crafting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "III", 5 | " S", 6 | " S" 7 | ], 8 | "key": { 9 | "S": { 10 | "tag": "forge:rods/wooden" 11 | }, 12 | "I": { 13 | "tag": "forge:ingots/iron" 14 | } 15 | }, 16 | "result": { 17 | "item": "geolosys:prospectors_pick" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/crafting/purple_dye_from_rhododendron_crafting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "geolosys:rhododendron" 6 | } 7 | ], 8 | "result": { 9 | "item": "minecraft:purple_dye", 10 | "count": 2 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/aluminum_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:aluminum_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:aluminum_cluster" 20 | }, 21 | "result": "geolosys:aluminum_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/copper_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:copper_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:copper_cluster" 20 | }, 21 | "result": "geolosys:copper_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/gold_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "minecraft:gold_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:gold_cluster" 20 | }, 21 | "result": "minecraft:gold_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/gold_nugget_from_poor_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "ingredient": { 4 | "item": "geolosys:nether_gold_cluster" 5 | }, 6 | "result": { 7 | "item": "minecraft:gold_nugget", 8 | "count": 3 9 | }, 10 | "experience": 0.15, 11 | "cookingtime": 200 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/iron_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "minecraft:iron_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:iron_cluster" 20 | }, 21 | "result": "minecraft:iron_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/lead_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:lead_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:lead_cluster" 20 | }, 21 | "result": "geolosys:lead_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/netherite_scrap_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "minecraft:netherite_scrap", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:ancient_debris_cluster" 20 | }, 21 | "result": "minecraft:netherite_scrap", 22 | "experience": 1.0, 23 | "cookingtime": 400 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/nickel_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:nickel_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:nickel_cluster" 20 | }, 21 | "result": "geolosys:nickel_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/platinum_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:platinum_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:platinum_cluster" 20 | }, 21 | "result": "geolosys:platinum_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/silver_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:silver_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:silver_cluster" 20 | }, 21 | "result": "geolosys:silver_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/tin_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:tin_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:tin_cluster" 20 | }, 21 | "result": "geolosys:tin_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/recipes/smelting/zinc_ingot_from_cluster_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:conditional", 3 | "recipes": [ 4 | { 5 | "conditions": [ 6 | { 7 | "values": [ 8 | { 9 | "item": "geolosys:zinc_ingot", 10 | "type": "forge:item_exists" 11 | } 12 | ], 13 | "type": "forge:and" 14 | } 15 | ], 16 | "recipe": { 17 | "type": "minecraft:smelting", 18 | "ingredient": { 19 | "item": "geolosys:zinc_cluster" 20 | }, 21 | "result": "geolosys:zinc_ingot", 22 | "experience": 0.7, 23 | "cookingtime": 200 24 | } 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /src/main/resources/data/geolosys/tags/blocks/world_generation_debug.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:clay", 5 | "minecraft:dirt", 6 | "minecraft:kelp", 7 | "minecraft:seagrass", 8 | "#minecraft:sand", 9 | "minecraft:gravel", 10 | "#forge:stone", 11 | "minecraft:lava", 12 | "minecraft:water", 13 | "minecraft:sandstone", 14 | "minecraft:grass_block", 15 | "#minecraft:logs", 16 | "#minecraft:leaves" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/gold_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:nether_gold_ore", 5 | "geolosys:gold_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/guarded_by_piglins.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "geolosys:nether_gold_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Geolosys Resources", 4 | "pack_format": 4 5 | } 6 | } 7 | --------------------------------------------------------------------------------