mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Oil Rig item pool
This commit is contained in:
parent
7ae8693841
commit
8bb91eda3c
@ -3,6 +3,7 @@ package com.hbm.itempool;
|
||||
import static com.hbm.lib.HbmChestContents.weighted;
|
||||
|
||||
import com.hbm.blocks.ModBlocks;
|
||||
import com.hbm.inventory.fluid.Fluids;
|
||||
import com.hbm.inventory.material.Mats;
|
||||
import com.hbm.items.ItemEnums.EnumCokeType;
|
||||
import com.hbm.items.machine.ItemCircuit.EnumCircuitType;
|
||||
@ -23,6 +24,7 @@ public class ItemPoolsComponent {
|
||||
public static final String POOL_VAULT_LAB = "POOL_VAULT_LAB";
|
||||
public static final String POOL_VAULT_LOCKERS = "POOL_VAULT_LOCKERS";
|
||||
public static final String POOL_METEOR_SAFE = "POOL_METEOR_SAFE";
|
||||
public static final String POOL_OIL_RIG = "POOL_OIL_RIG";
|
||||
|
||||
public static void init() {
|
||||
|
||||
@ -197,5 +199,16 @@ public class ItemPoolsComponent {
|
||||
weighted(ModItems.stamp_book, 7, 1, 1, 1),
|
||||
};
|
||||
}};
|
||||
|
||||
new ItemPool(POOL_OIL_RIG) {{
|
||||
this.pool = new WeightedRandomChestContent[] {
|
||||
weighted(ModItems.oil_detector, 0, 1, 1, 1),
|
||||
weighted(ModItems.canister_full, Fluids.OIL.getID(), 1, 4, 5),
|
||||
weighted(ModBlocks.machine_fraction_tower,0, 0, 1, 1),
|
||||
weighted(ModBlocks.fraction_spacer,0, 0, 1, 1),
|
||||
weighted(ModItems.circuit,EnumCircuitType.ANALOG.ordinal(), 1, 4, 1),
|
||||
weighted(ModItems.circuit, EnumCircuitType.CAPACITOR.ordinal(), 1, 1, 3),
|
||||
};
|
||||
}};
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user