mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
for real now
This commit is contained in:
parent
444191304d
commit
03841c4043
@ -1423,6 +1423,7 @@ item.niter.name=Salpeter
|
|||||||
item.nothing.name=Leer
|
item.nothing.name=Leer
|
||||||
item.nuclear_waste.name=Atommüll
|
item.nuclear_waste.name=Atommüll
|
||||||
item.nuclear_waste_tiny.name=Kleiner Haufen Atommüll
|
item.nuclear_waste_tiny.name=Kleiner Haufen Atommüll
|
||||||
|
item.nugget.name=Chicken Nugget
|
||||||
item.nugget_australium.name=Australiumnugget
|
item.nugget_australium.name=Australiumnugget
|
||||||
item.nugget_beryllium.name=Berylliumnugget
|
item.nugget_beryllium.name=Berylliumnugget
|
||||||
item.nugget_daffergon.name=Daffergonnugget
|
item.nugget_daffergon.name=Daffergonnugget
|
||||||
|
|||||||
@ -1423,6 +1423,7 @@ item.niter.name=Niter
|
|||||||
item.nothing.name=Nothing
|
item.nothing.name=Nothing
|
||||||
item.nuclear_waste.name=Nuclear Waste
|
item.nuclear_waste.name=Nuclear Waste
|
||||||
item.nuclear_waste_tiny.name=Tiny Pile of Nuclear Waste
|
item.nuclear_waste_tiny.name=Tiny Pile of Nuclear Waste
|
||||||
|
item.nugget.name=Chicken Nugget
|
||||||
item.nugget_australium.name=Australium Nugget
|
item.nugget_australium.name=Australium Nugget
|
||||||
item.nugget_beryllium.name=Beryllium Nugget
|
item.nugget_beryllium.name=Beryllium Nugget
|
||||||
item.nugget_daffergon.name=Daffergon Nugget
|
item.nugget_daffergon.name=Daffergon Nugget
|
||||||
|
|||||||
BIN
src/main/java/assets/hbm/textures/items/nugget.png
Normal file
BIN
src/main/java/assets/hbm/textures/items/nugget.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 304 B |
Binary file not shown.
|
After Width: | Height: | Size: 590 B |
Binary file not shown.
|
After Width: | Height: | Size: 613 B |
@ -6,6 +6,7 @@ import java.util.List;
|
|||||||
import com.hbm.inventory.RecipesCommon.ComparableStack;
|
import com.hbm.inventory.RecipesCommon.ComparableStack;
|
||||||
import com.hbm.items.ModItems;
|
import com.hbm.items.ModItems;
|
||||||
|
|
||||||
|
import net.minecraft.init.Items;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
|
|
||||||
public class HadronRecipes {
|
public class HadronRecipes {
|
||||||
@ -92,6 +93,14 @@ public class HadronRecipes {
|
|||||||
new ItemStack(ModItems.particle_empty),
|
new ItemStack(ModItems.particle_empty),
|
||||||
false
|
false
|
||||||
));
|
));
|
||||||
|
recipes.add(new HadronRecipe(
|
||||||
|
new ItemStack(Items.chicken),
|
||||||
|
new ItemStack(Items.chicken),
|
||||||
|
800,
|
||||||
|
new ItemStack(ModItems.nugget),
|
||||||
|
new ItemStack(ModItems.nugget),
|
||||||
|
false
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -1407,6 +1407,7 @@ public class ModItems {
|
|||||||
public static Item static_sandwich;
|
public static Item static_sandwich;
|
||||||
public static Item pudding;
|
public static Item pudding;
|
||||||
public static Item pancake;
|
public static Item pancake;
|
||||||
|
public static Item nugget;
|
||||||
|
|
||||||
public static Item med_ipecac;
|
public static Item med_ipecac;
|
||||||
public static Item med_ptsd;
|
public static Item med_ptsd;
|
||||||
@ -3308,6 +3309,7 @@ public class ModItems {
|
|||||||
canteen_13 = new ItemCanteen(1 * 60 * 20).setUnlocalizedName("canteen_13").setCreativeTab(MainRegistry.consumableTab).setTextureName(RefStrings.MODID + ":canteen_13");
|
canteen_13 = new ItemCanteen(1 * 60 * 20).setUnlocalizedName("canteen_13").setCreativeTab(MainRegistry.consumableTab).setTextureName(RefStrings.MODID + ":canteen_13");
|
||||||
canteen_vodka = new ItemCanteen(3 * 60 * 20).setUnlocalizedName("canteen_vodka").setCreativeTab(MainRegistry.consumableTab).setTextureName(RefStrings.MODID + ":canteen_vodka");
|
canteen_vodka = new ItemCanteen(3 * 60 * 20).setUnlocalizedName("canteen_vodka").setCreativeTab(MainRegistry.consumableTab).setTextureName(RefStrings.MODID + ":canteen_vodka");
|
||||||
pancake = new ItemPancake(20, 20, false).setUnlocalizedName("pancake").setCreativeTab(MainRegistry.consumableTab).setTextureName(RefStrings.MODID + ":pancake");
|
pancake = new ItemPancake(20, 20, false).setUnlocalizedName("pancake").setCreativeTab(MainRegistry.consumableTab).setTextureName(RefStrings.MODID + ":pancake");
|
||||||
|
nugget = new ItemLemon(200, 200, false).setUnlocalizedName("nugget").setCreativeTab(MainRegistry.consumableTab).setTextureName(RefStrings.MODID + ":nugget");
|
||||||
|
|
||||||
defuser = new Item().setUnlocalizedName("defuser").setMaxStackSize(1).setFull3D().setCreativeTab(MainRegistry.nukeTab).setTextureName(RefStrings.MODID + ":defuser");
|
defuser = new Item().setUnlocalizedName("defuser").setMaxStackSize(1).setFull3D().setCreativeTab(MainRegistry.nukeTab).setTextureName(RefStrings.MODID + ":defuser");
|
||||||
|
|
||||||
@ -5742,6 +5744,7 @@ public class ModItems {
|
|||||||
GameRegistry.registerItem(static_sandwich, static_sandwich.getUnlocalizedName());
|
GameRegistry.registerItem(static_sandwich, static_sandwich.getUnlocalizedName());
|
||||||
GameRegistry.registerItem(pudding, pudding.getUnlocalizedName());
|
GameRegistry.registerItem(pudding, pudding.getUnlocalizedName());
|
||||||
GameRegistry.registerItem(pancake, pancake.getUnlocalizedName());
|
GameRegistry.registerItem(pancake, pancake.getUnlocalizedName());
|
||||||
|
GameRegistry.registerItem(nugget, nugget.getUnlocalizedName());
|
||||||
GameRegistry.registerItem(med_ipecac, med_ipecac.getUnlocalizedName());
|
GameRegistry.registerItem(med_ipecac, med_ipecac.getUnlocalizedName());
|
||||||
GameRegistry.registerItem(med_ptsd, med_ptsd.getUnlocalizedName());
|
GameRegistry.registerItem(med_ptsd, med_ptsd.getUnlocalizedName());
|
||||||
GameRegistry.registerItem(canteen_13, canteen_13.getUnlocalizedName());
|
GameRegistry.registerItem(canteen_13, canteen_13.getUnlocalizedName());
|
||||||
|
|||||||
@ -72,6 +72,8 @@ public class Library {
|
|||||||
public static String Drillgon = "41ebd03f-7a12-42f3-b037-0caa4d6f235b";
|
public static String Drillgon = "41ebd03f-7a12-42f3-b037-0caa4d6f235b";
|
||||||
public static String Doctor17 = "e4ab1199-1c22-4f82-a516-c3238bc2d0d1";
|
public static String Doctor17 = "e4ab1199-1c22-4f82-a516-c3238bc2d0d1";
|
||||||
public static String ShimmeringBlaze = "061bc566-ec74-4307-9614-ac3a70d2ef38";
|
public static String ShimmeringBlaze = "061bc566-ec74-4307-9614-ac3a70d2ef38";
|
||||||
|
public static String FifeMiner = "37e5eb63-b9a2-4735-9007-1c77d703daa3";
|
||||||
|
public static String lag_add = "259785a0-20e9-4c63-9286-ac2f93ff528f";
|
||||||
|
|
||||||
public static Set<String> contributors = Sets.newHashSet(new String[] {
|
public static Set<String> contributors = Sets.newHashSet(new String[] {
|
||||||
"06ab7c03-55ce-43f8-9d3c-2850e3c652de", //mustang_rudolf
|
"06ab7c03-55ce-43f8-9d3c-2850e3c652de", //mustang_rudolf
|
||||||
|
|||||||
@ -30,6 +30,8 @@ public class RenderAccessoryUtility {
|
|||||||
private static ResourceLocation doctor17 = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeDoctor17.png");
|
private static ResourceLocation doctor17 = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeDoctor17.png");
|
||||||
private static ResourceLocation shimmeringblaze = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeBlaze.png");
|
private static ResourceLocation shimmeringblaze = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeBlaze.png");
|
||||||
private static ResourceLocation wiki = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeWiki.png");
|
private static ResourceLocation wiki = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeWiki.png");
|
||||||
|
private static ResourceLocation leftnugget = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeLeftNugget.png");
|
||||||
|
private static ResourceLocation rightnugget = new ResourceLocation(RefStrings.MODID + ":textures/models/capes/CapeRightNugget.png");
|
||||||
|
|
||||||
public static ResourceLocation getCloakFromPlayer(EntityPlayer player) {
|
public static ResourceLocation getCloakFromPlayer(EntityPlayer player) {
|
||||||
|
|
||||||
@ -96,6 +98,12 @@ public class RenderAccessoryUtility {
|
|||||||
if(uuid.equals(Library.ShimmeringBlaze)) {
|
if(uuid.equals(Library.ShimmeringBlaze)) {
|
||||||
return shimmeringblaze;
|
return shimmeringblaze;
|
||||||
}
|
}
|
||||||
|
if(uuid.equals(Library.FifeMiner)) {
|
||||||
|
return leftnugget;
|
||||||
|
}
|
||||||
|
if(uuid.equals(Library.lag_add)) {
|
||||||
|
return rightnugget;
|
||||||
|
}
|
||||||
if(Library.contributors.contains(uuid)) {
|
if(Library.contributors.contains(uuid)) {
|
||||||
return wiki;
|
return wiki;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"modid": "hbm",
|
"modid": "hbm",
|
||||||
"name": "Hbm's Nuclear Tech",
|
"name": "Hbm's Nuclear Tech",
|
||||||
"description": "A mod that adds weapons, nuclear themed stuff and machines",
|
"description": "A mod that adds weapons, nuclear themed stuff and machines",
|
||||||
"version":"1.0.27-3365",
|
"version":"1.0.27-3710",
|
||||||
"mcversion": "1.7.10",
|
"mcversion": "1.7.10",
|
||||||
"url": "",
|
"url": "",
|
||||||
"updateUrl": "",
|
"updateUrl": "",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user