Shields
This commit is contained in:
parent
32027f948c
commit
4f3d9ddfca
3 changed files with 26 additions and 0 deletions
|
@ -10,6 +10,8 @@ import net.minecraftforge.fml.common.registry.GameRegistry;
|
|||
import reborncore.common.blocks.BlockMachineBase;
|
||||
import reborncore.common.powerSystem.PoweredItem;
|
||||
import reborncore.common.util.BucketHandler;
|
||||
import reborncore.shields.api.Shield;
|
||||
import reborncore.shields.api.ShieldRegistry;
|
||||
import techreborn.Core;
|
||||
import techreborn.blocks.BlockMachineFrame;
|
||||
import techreborn.events.OreUnifier;
|
||||
|
@ -17,6 +19,7 @@ import techreborn.items.*;
|
|||
import techreborn.items.armor.ItemLapotronPack;
|
||||
import techreborn.items.armor.ItemLithiumBatpack;
|
||||
import techreborn.items.tools.*;
|
||||
import techreborn.shields.TechRebornShield;
|
||||
|
||||
public class ModItems {
|
||||
|
||||
|
@ -95,6 +98,8 @@ public class ModItems {
|
|||
public static Item missingRecipe;
|
||||
public static Item debug;
|
||||
|
||||
public static Shield trShield;
|
||||
|
||||
|
||||
public static void init() throws InstantiationException, IllegalAccessException {
|
||||
gems = new ItemGems();
|
||||
|
@ -335,6 +340,9 @@ public class ModItems {
|
|||
|
||||
MinecraftForge.EVENT_BUS.register(BucketHandler.INSTANCE);
|
||||
|
||||
trShield = new TechRebornShield("techreborn");
|
||||
|
||||
ShieldRegistry.registerShield(trShield);
|
||||
|
||||
Core.logHelper.info("TechReborns Items Loaded");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue