|
@@ -231,9 +231,32 @@ public class ModItems
|
|
public static ItemBase batWing;
|
|
public static ItemBase batWing;
|
|
public static ItemBase wolfFur;
|
|
public static ItemBase wolfFur;
|
|
public static ItemBlockSpecial campFire;
|
|
public static ItemBlockSpecial campFire;
|
|
|
|
+ public static ItemBase coarseCloth;
|
|
|
|
|
|
|
|
|
|
public static ItemColoredSoup coloredSoup;
|
|
public static ItemColoredSoup coloredSoup;
|
|
|
|
+ public static ItemFood apricot;
|
|
|
|
+ public static ItemFood friedEgg;
|
|
|
|
+ public static ItemBase mushroomStickRaw;
|
|
|
|
+ public static ItemFood mushroomStickCooked;
|
|
|
|
+ public static ItemFood pear;
|
|
|
|
+ public static ItemFood plum;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public static ItemBase arrowDown;
|
|
|
|
+ public static ItemBase arrowLeft;
|
|
|
|
+ public static ItemBase arrowRight;
|
|
|
|
+ public static ItemBase arrowUp;
|
|
|
|
+ public static ItemBase checkGreen;
|
|
|
|
+ public static ItemBase checkRed;
|
|
|
|
+ public static ItemBase crossGreen;
|
|
|
|
+ public static ItemBase crossRed;
|
|
|
|
+ public static ItemBase minusGreen;
|
|
|
|
+ public static ItemBase minusRed;
|
|
|
|
+ public static ItemBase plusGreen;
|
|
|
|
+ public static ItemBase plusRed;
|
|
|
|
+ public static ItemBase returnGreen;
|
|
|
|
+ public static ItemBase returnRed;
|
|
|
|
|
|
|
|
|
|
public static ItemHerbs herbStrong;
|
|
public static ItemHerbs herbStrong;
|
|
@@ -404,9 +427,32 @@ public class ModItems
|
|
hayBundle = register(r, new ItemBase("hay_bundle", "bundleHay").setCreativeTab(CreativeTabs.MATERIALS));
|
|
hayBundle = register(r, new ItemBase("hay_bundle", "bundleHay").setCreativeTab(CreativeTabs.MATERIALS));
|
|
batWing = register(r, new ItemBase("bat_wing", "batWing").setCreativeTab(CreativeTabs.MATERIALS));
|
|
batWing = register(r, new ItemBase("bat_wing", "batWing").setCreativeTab(CreativeTabs.MATERIALS));
|
|
wolfFur = register(r, new ItemBase("wolf_fur", "wolfFur").setCreativeTab(CreativeTabs.MATERIALS));
|
|
wolfFur = register(r, new ItemBase("wolf_fur", "wolfFur").setCreativeTab(CreativeTabs.MATERIALS));
|
|
|
|
+ coarseCloth = register(r, new ItemBase("coarse_cloth", "coarseCloth").setCreativeTab(CreativeTabs.MATERIALS));
|
|
|
|
|
|
|
|
|
|
coloredSoup = register(r, new ItemColoredSoup("colored_soup", "soupColored"));
|
|
coloredSoup = register(r, new ItemColoredSoup("colored_soup", "soupColored"));
|
|
|
|
+ apricot = register(r, new ItemFood("apricot", "apricot", 4, 0.3f, false));
|
|
|
|
+ friedEgg = register(r, new ItemFood("fried_egg", "friedEgg", 2, 0.3f, false));
|
|
|
|
+ mushroomStickRaw = register(r, new ItemBase("mushroom_stick_raw", "mushroomStickRaw").setCreativeTab(CreativeTabs.FOOD));
|
|
|
|
+ mushroomStickCooked = register(r, new ItemFood("mushroom_stick_cooked", "mushroomStickCooked", 9, 0.9f, false));
|
|
|
|
+ pear = register(r, new ItemFood("pear", "pear", 4, 0.3f, false));
|
|
|
|
+ plum = register(r, new ItemFood("plum", "plum", 4, 0.3f, false));
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ arrowDown = register(r, new ItemBase("arrow_down", "arrowDown").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ arrowLeft = register(r, new ItemBase("arrow_left", "arrowLeft").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ arrowRight = register(r, new ItemBase("arrow_right", "arrowRight").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ arrowUp = register(r, new ItemBase("arrow_up", "arrowUp").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ checkGreen = register(r, new ItemBase("check_green", "checkGreen")).setCreativeTab(CreativeTabs.MISC);
|
|
|
|
+ checkRed = register(r, new ItemBase("check_red", "checkRed").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ crossGreen = register(r, new ItemBase("cross_green", "crossGreen").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ crossRed = register(r, new ItemBase("cross_red", "crossRed").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ minusGreen = register(r, new ItemBase("minus_green", "minusGreen").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ minusRed = register(r, new ItemBase("minus_red", "minusRed").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ plusGreen = register(r, new ItemBase("plus_green", "plusGreen").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ plusRed = register(r, new ItemBase("plus_red", "plusRed").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ returnGreen = register(r, new ItemBase("return_green", "returnGreen").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
+ returnRed = register(r, new ItemBase("return_red", "returnRed").setCreativeTab(CreativeTabs.MISC));
|
|
|
|
|
|
|
|
|
|
herbStrong = register(r, new ItemHerbs("herb_strong", "herbStrong", new PotionEffect(MobEffects.SPEED, 6000, 1)));
|
|
herbStrong = register(r, new ItemHerbs("herb_strong", "herbStrong", new PotionEffect(MobEffects.SPEED, 6000, 1)));
|