mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Yes i've planted the oil rig malware bob 👿
This commit is contained in:
parent
8bb91eda3c
commit
e318c83023
@ -56,7 +56,8 @@ public class StructureManager {
|
|||||||
|
|
||||||
public static final NBTStructure vertibird = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/vertibird.nbt"));
|
public static final NBTStructure vertibird = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/vertibird.nbt"));
|
||||||
public static final NBTStructure crashed_vertibird = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/crashed-vertibird.nbt"));
|
public static final NBTStructure crashed_vertibird = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/crashed-vertibird.nbt"));
|
||||||
public static final NBTStructure aircraft = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/AircraftCarrier.nbt"));
|
public static final NBTStructure aircraft_carrier = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/aircraft_carrier.nbt"));
|
||||||
|
// public static final NBTStructure oilrig = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/oilrig.nbt"));
|
||||||
// public static final NBTStructure test_rot = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/test-rot.nbt"));
|
// public static final NBTStructure test_rot = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/test-rot.nbt"));
|
||||||
// public static final NBTStructure test_jigsaw = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/test-jigsaw.nbt"));
|
// public static final NBTStructure test_jigsaw = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/test-jigsaw.nbt"));
|
||||||
// public static final NBTStructure test_jigsaw_core = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/test-jigsaw-core.nbt"));
|
// public static final NBTStructure test_jigsaw_core = new NBTStructure(new ResourceLocation(RefStrings.MODID, "structures/test-jigsaw-core.nbt"));
|
||||||
|
|||||||
@ -64,11 +64,18 @@ public class NTMWorldGenerator implements IWorldGenerator {
|
|||||||
|
|
||||||
NBTStructure.registerStructure(0, new SpawnCondition() {{
|
NBTStructure.registerStructure(0, new SpawnCondition() {{
|
||||||
canSpawn = oceanBiomes::contains;
|
canSpawn = oceanBiomes::contains;
|
||||||
structure = new JigsawPiece("aircraft", StructureManager.aircraft);
|
structure = new JigsawPiece("aircraft_carrier", StructureManager.aircraft_carrier);
|
||||||
maxHeight = 46;
|
maxHeight = 46;
|
||||||
spawnWeight = 75 * 5;
|
spawnWeight = 1;
|
||||||
}});
|
}});
|
||||||
|
|
||||||
|
// NBTStructure.registerStructure(0, new SpawnCondition() {{
|
||||||
|
// canSpawn = oceanBiomes::contains;
|
||||||
|
// structure = new JigsawPiece("oilrig", StructureManager.oilrig);
|
||||||
|
// maxHeight = 56;
|
||||||
|
// spawnWeight = 5 * 5;
|
||||||
|
// }});
|
||||||
|
|
||||||
Map<Block, BlockSelector> bricks = new HashMap<Block, BlockSelector>() {{
|
Map<Block, BlockSelector> bricks = new HashMap<Block, BlockSelector>() {{
|
||||||
put(ModBlocks.meteor_brick, new MeteorBricks());
|
put(ModBlocks.meteor_brick, new MeteorBricks());
|
||||||
}};
|
}};
|
||||||
|
|||||||
Binary file not shown.
BIN
src/main/resources/assets/hbm/structures/aircraft_carrier.nbt
Normal file
BIN
src/main/resources/assets/hbm/structures/aircraft_carrier.nbt
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user