Skip to content

Commit

Permalink
added adamantine and naquadah bedrock ores
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Feb 7, 2025
1 parent bbfd817 commit a1e0dd5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import net.minecraft.world.level.Level;
import net.minecraft.world.level.biome.Biomes;
import org.gtreimagined.gt5r.GT5RConfig;
import org.gtreimagined.gt5r.integration.SpaceModRegistrar;
import org.gtreimagined.gt5r.worldgen.OilSpoutFluid;
import org.gtreimagined.gt5r.worldgen.OilSpoutSavedData;

Expand Down Expand Up @@ -96,6 +97,11 @@ private static void initBedrockVeins(WorldGenEvent ev) {
ev.bedrockOre(WorldGenBedrockVein.create("bauxite", 2000, Bauxite, true, ORECHID, OVERWORLD.location()));
ev.bedrockOre(WorldGenBedrockVein.create("cassiterite", 2000, Cassiterite, true, ORECHID, OVERWORLD.location()));
ev.bedrockOre(WorldGenBedrockVein.create("chalcopyrite", 2000, Chalcopyrite, true, ALPINE_CATCHFLY, OVERWORLD.location()));
ev.bedrockOre(WorldGenBedrockVein.create("naquadah", 10000, Naquadah, true, BE_MARS.location(), AA_MARS.location()));
ev.bedrockOre(WorldGenBedrockVein.create("adamantine", 10000, Adamantine, true, BE_MARS.location(), AA_MARS.location()));
if (SpaceModRegistrar.INSTANCE.isEnabled()){
ev.bedrockOre(WorldGenBedrockVein.create("desh", 2000, SpaceModRegistrar.Desh, true, BE_MARS.location(), AA_MARS.location()));
}
}

private static void initTwilightForestOres(WorldGenEvent event){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class BedrockDrillLoader {
public static void init(){
//addBedrockDrillRecipe(Materials.Adamantite, 0);
addBedrockDrillRecipe(Materials.Adamantine, 105, Adamantium);
//addBedrockDrillRecipe(AntimatterMaterials.NetheriteScrap, 63,);
addBedrockDrillRecipe(Bastnasite, 63, Monazite, RareEarth, Neodymium/*, Nikolite*/);
addBedrockDrillRecipe(Bauxite, 53, Ilmenite, Hematite, Alumina);
Expand Down

0 comments on commit a1e0dd5

Please sign in to comment.