mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
commit
0254193d21
@ -765,6 +765,11 @@ public class ModItems {
|
||||
public static Item stamp_9;
|
||||
public static Item stamp_50;
|
||||
|
||||
public static Item stamp_desh_357;
|
||||
public static Item stamp_desh_44;
|
||||
public static Item stamp_desh_9;
|
||||
public static Item stamp_desh_50;
|
||||
|
||||
public static Item blades_steel;
|
||||
public static Item blades_titanium;
|
||||
public static Item blades_advanced_alloy;
|
||||
@ -3224,6 +3229,11 @@ public class ModItems {
|
||||
stamp_9 = new ItemStamp(1000, StampType.C9).setUnlocalizedName("stamp_9").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":stamp_9");
|
||||
stamp_50 = new ItemStamp(1000, StampType.C50).setUnlocalizedName("stamp_50").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":stamp_50");
|
||||
|
||||
stamp_desh_357 = new ItemStamp(0, StampType.C357).setUnlocalizedName("stamp_desh_357").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":stamp_357_desh");
|
||||
stamp_desh_44 = new ItemStamp(0, StampType.C44).setUnlocalizedName("stamp_desh_44").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":stamp_44_desh");
|
||||
stamp_desh_9 = new ItemStamp(0, StampType.C9).setUnlocalizedName("stamp_desh_9").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":stamp_9_desh");
|
||||
stamp_desh_50 = new ItemStamp(0, StampType.C50).setUnlocalizedName("stamp_desh_50").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":stamp_50_desh");
|
||||
|
||||
blades_steel = new ItemBlades(200).setUnlocalizedName("blades_steel").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":blades_steel");
|
||||
blades_titanium = new ItemBlades(350).setUnlocalizedName("blades_titanium").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":blades_titanium");
|
||||
blades_advanced_alloy = new ItemBlades(700).setUnlocalizedName("blades_advanced_alloy").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":blades_advanced_alloy");
|
||||
@ -6386,6 +6396,11 @@ public class ModItems {
|
||||
GameRegistry.registerItem(stamp_44, stamp_44.getUnlocalizedName());
|
||||
GameRegistry.registerItem(stamp_9, stamp_9.getUnlocalizedName());
|
||||
GameRegistry.registerItem(stamp_50, stamp_50.getUnlocalizedName());
|
||||
|
||||
GameRegistry.registerItem(stamp_desh_357, stamp_desh_357.getUnlocalizedName());
|
||||
GameRegistry.registerItem(stamp_desh_44, stamp_desh_44.getUnlocalizedName());
|
||||
GameRegistry.registerItem(stamp_desh_9, stamp_desh_9.getUnlocalizedName());
|
||||
GameRegistry.registerItem(stamp_desh_50, stamp_desh_50.getUnlocalizedName());
|
||||
|
||||
//Molds
|
||||
GameRegistry.registerItem(mold_base, mold_base.getUnlocalizedName());
|
||||
|
||||
@ -482,6 +482,11 @@ public class CraftingManager {
|
||||
addRecipeAuto(new ItemStack(ModItems.stamp_9, 1), new Object[] { "RSR", "III", " C ", 'R', REDSTONE.dust(), 'S', ModItems.stamp_iron_flat, 'I', ModItems.plate_polymer, 'C', ModItems.casing_9 });
|
||||
addRecipeAuto(new ItemStack(ModItems.stamp_50, 1), new Object[] { "RSR", "III", " C ", 'R', REDSTONE.dust(), 'S', ModItems.stamp_iron_flat, 'I', ModItems.plate_polymer, 'C', ModItems.casing_50 });
|
||||
|
||||
addRecipeAuto(new ItemStack(ModItems.stamp_desh_357, 1), new Object[] { "RSR", "III", " C ", 'R', ModItems.ingot_dura_steel, 'S', ModItems.stamp_desh_flat, 'I', ModItems.ingot_saturnite, 'C', ModItems.casing_357 });
|
||||
addRecipeAuto(new ItemStack(ModItems.stamp_desh_44, 1), new Object[] { "RSR", "III", " C ", 'R', ModItems.ingot_dura_steel, 'S', ModItems.stamp_desh_flat, 'I', ModItems.ingot_saturnite, 'C', ModItems.casing_44 });
|
||||
addRecipeAuto(new ItemStack(ModItems.stamp_desh_9, 1), new Object[] { "RSR", "III", " C ", 'R', ModItems.ingot_dura_steel, 'S', ModItems.stamp_desh_flat, 'I', ModItems.ingot_saturnite, 'C', ModItems.casing_9 });
|
||||
addRecipeAuto(new ItemStack(ModItems.stamp_desh_50, 1), new Object[] { "RSR", "III", " C ", 'R', ModItems.ingot_dura_steel, 'S', ModItems.stamp_desh_flat, 'I', ModItems.ingot_saturnite, 'C', ModItems.casing_50 });
|
||||
|
||||
addRecipeAuto(new ItemStack(ModBlocks.sat_dock, 1), new Object[] { "SSS", "PCP", 'S', STEEL.ingot(), 'P', ANY_PLASTIC.ingot(), 'C', ModBlocks.crate_iron });
|
||||
addRecipeAuto(new ItemStack(ModBlocks.book_guide, 1), new Object[] { "IBI", "LBL", "IBI", 'B', Items.book, 'I', KEY_BLACK, 'L', KEY_BLUE });
|
||||
|
||||
|
||||
@ -3854,6 +3854,10 @@ item.stamp_desh_circuit.name=Circuit Stamp (Desh)
|
||||
item.stamp_desh_flat.name=Flat Stamp (Desh)
|
||||
item.stamp_desh_plate.name=Plate Stamp (Desh)
|
||||
item.stamp_desh_wire.name=Wire Stamp (Desh)
|
||||
item.stamp_desh_357.name=.357 Magnum Stamp (Desh)
|
||||
item.stamp_desh_44.name=.44 Magnum Stamp (Desh)
|
||||
item.stamp_desh_50.name=Large Caliber Stamp (Desh)
|
||||
item.stamp_desh_9.name=Small Caliber Stamp (Desh)
|
||||
item.stamp_iron_circuit.name=Circuit Stamp (Iron)
|
||||
item.stamp_iron_flat.name=Flat Stamp (Iron)
|
||||
item.stamp_iron_plate.name=Plate Stamp (Iron)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user