From b8ebc3d68d7c8fae96ff464360d75b9142abb9f6 Mon Sep 17 00:00:00 2001 From: boubou19 Date: Mon, 24 Jun 2024 17:08:01 +0200 Subject: Put some sanity in GT_MetaGenerated_Item_02/03 and in GT_MetaGenerated_Tool_01 (#2659) * enum work * sorting the class * extracting the enum in its own class * initial enum work for GT_MetaGenerated_Item_03 * split * finished enum work * extract enum in its own class * migrate to enum * remove duplicated recipes * sorted enums * extracted enum in its own class * spotless * fix compilation errors * spotless * fix mistake --- .../common/items/GT_MetaGenerated_Item_02.java | 1498 ++++++++++++-------- .../common/items/GT_MetaGenerated_Item_03.java | 1034 +++++++++----- .../common/items/GT_MetaGenerated_Tool_01.java | 426 +++--- .../java/gregtech/common/items/ID_MetaItem_02.java | 208 +++ .../java/gregtech/common/items/ID_MetaItem_03.java | 229 +++ .../java/gregtech/common/items/ID_MetaTool_01.java | 73 + 6 files changed, 2232 insertions(+), 1236 deletions(-) create mode 100644 src/main/java/gregtech/common/items/ID_MetaItem_02.java create mode 100644 src/main/java/gregtech/common/items/ID_MetaItem_03.java create mode 100644 src/main/java/gregtech/common/items/ID_MetaTool_01.java (limited to 'src/main/java/gregtech/common/items') diff --git a/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_02.java b/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_02.java index 875c4e9861..55a1611a9c 100644 --- a/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_02.java +++ b/src/main/java/gregtech/common/items/GT_MetaGenerated_Item_02.java @@ -14,6 +14,202 @@ import static gregtech.api.recipe.RecipeMaps.maceratorRecipes; import static gregtech.api.util.GT_RecipeBuilder.MINUTES; import static gregtech.api.util.GT_RecipeBuilder.SECONDS; import static gregtech.api.util.GT_RecipeBuilder.WILDCARD; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Alcopops; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Apple_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Beer; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Cave_Johnsons_Grenade_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Chilly_Sauce; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Cider; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Dark_Beer; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Diablo_Sauce; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Diabolo_Sauce; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Dragon_Blood; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Glen_McKenner; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Golden_Apple_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Golden_Cider; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Grape_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Holy_Water; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Hops_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Hot_Sauce; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Iduns_Apple_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Lemon_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Lemonade; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Leninade; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Limoncello; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Milk; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Mineral_Water; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Notches_Brew; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Pirate_Brew; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Potato_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Purple_Drink; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Reed_Water; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Rum; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Salty_Water; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Scotch; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Snitches_Glitch_Sauce; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Vinegar; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Vodka; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Wheaty_Hops_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Wheaty_Juice; +import static gregtech.common.items.ID_MetaItem_02.Bottle_Wine; +import static gregtech.common.items.ID_MetaItem_02.Cover_AdvancedRedstoneReceiverExternal; +import static gregtech.common.items.ID_MetaItem_02.Cover_AdvancedRedstoneReceiverInternal; +import static gregtech.common.items.ID_MetaItem_02.Cover_AdvancedRedstoneTransmitterExternal; +import static gregtech.common.items.ID_MetaItem_02.Cover_AdvancedRedstoneTransmitterInternal; +import static gregtech.common.items.ID_MetaItem_02.Cover_WirelessActivityDetector; +import static gregtech.common.items.ID_MetaItem_02.Cover_WirelessFluidDetector; +import static gregtech.common.items.ID_MetaItem_02.Cover_WirelessItemDetector; +import static gregtech.common.items.ID_MetaItem_02.Cover_WirelessNeedsMaintainance; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Argentia; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Aurelia; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Bauxite; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_BobsYerUncleRanks; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Chilly; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Coppon; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Cucumber; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Ferru; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Grapes; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Ilmenite; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Indigo; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Iridium; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Lemon; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_MTomato; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Manganese; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Mica; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_MilkWart; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Naquadah; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Nickel; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_OilBerry; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Onion; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Osmium; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Pitchblende; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Platinum; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Plumbilia; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Rape; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Scheelite; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_TeaLeaf; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Thorium; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Tine; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Tomato; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_UUABerry; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_UUMBerry; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Uraninite; +import static gregtech.common.items.ID_MetaItem_02.Crop_Drop_Zinc; +import static gregtech.common.items.ID_MetaItem_02.Display_ITS_FREE; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_00; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_01; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_02; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_03; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_04; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_05; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_06; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_07; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_08; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_09; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_10; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_11; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_12; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_13; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_14; +import static gregtech.common.items.ID_MetaItem_02.Dye_Color_15; +import static gregtech.common.items.ID_MetaItem_02.Dye_Indigo; +import static gregtech.common.items.ID_MetaItem_02.Food_Baked_Baguette; +import static gregtech.common.items.ID_MetaItem_02.Food_Baked_Bun; +import static gregtech.common.items.ID_MetaItem_02.Food_Baked_Cake; +import static gregtech.common.items.ID_MetaItem_02.Food_Baked_Pizza_Cheese; +import static gregtech.common.items.ID_MetaItem_02.Food_Baked_Pizza_Meat; +import static gregtech.common.items.ID_MetaItem_02.Food_Baked_Pizza_Veggie; +import static gregtech.common.items.ID_MetaItem_02.Food_Burger_Cheese; +import static gregtech.common.items.ID_MetaItem_02.Food_Burger_Chum; +import static gregtech.common.items.ID_MetaItem_02.Food_Burger_Meat; +import static gregtech.common.items.ID_MetaItem_02.Food_Burger_Veggie; +import static gregtech.common.items.ID_MetaItem_02.Food_Cheese; +import static gregtech.common.items.ID_MetaItem_02.Food_ChiliChips; +import static gregtech.common.items.ID_MetaItem_02.Food_Chum; +import static gregtech.common.items.ID_MetaItem_02.Food_Chum_On_Stick; +import static gregtech.common.items.ID_MetaItem_02.Food_Dough; +import static gregtech.common.items.ID_MetaItem_02.Food_Dough_Chocolate; +import static gregtech.common.items.ID_MetaItem_02.Food_Dough_Sugar; +import static gregtech.common.items.ID_MetaItem_02.Food_Flat_Dough; +import static gregtech.common.items.ID_MetaItem_02.Food_Fries; +import static gregtech.common.items.ID_MetaItem_02.Food_Large_Sandwich_Bacon; +import static gregtech.common.items.ID_MetaItem_02.Food_Large_Sandwich_Cheese; +import static gregtech.common.items.ID_MetaItem_02.Food_Large_Sandwich_Steak; +import static gregtech.common.items.ID_MetaItem_02.Food_Large_Sandwich_Veggie; +import static gregtech.common.items.ID_MetaItem_02.Food_Packaged_ChiliChips; +import static gregtech.common.items.ID_MetaItem_02.Food_Packaged_Fries; +import static gregtech.common.items.ID_MetaItem_02.Food_Packaged_PotatoChips; +import static gregtech.common.items.ID_MetaItem_02.Food_PotatoChips; +import static gregtech.common.items.ID_MetaItem_02.Food_Potato_On_Stick; +import static gregtech.common.items.ID_MetaItem_02.Food_Potato_On_Stick_Roasted; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Baguette; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Bread; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Bun; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Cake; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Cookie; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Fries; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Pizza_Cheese; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Pizza_Meat; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_Pizza_Veggie; +import static gregtech.common.items.ID_MetaItem_02.Food_Raw_PotatoChips; +import static gregtech.common.items.ID_MetaItem_02.Food_Sandwich_Bacon; +import static gregtech.common.items.ID_MetaItem_02.Food_Sandwich_Cheese; +import static gregtech.common.items.ID_MetaItem_02.Food_Sandwich_Steak; +import static gregtech.common.items.ID_MetaItem_02.Food_Sandwich_Veggie; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Baguette; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Baguettes; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Bread; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Breads; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Bun; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Buns; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Cheese; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Cucumber; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Lemon; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Onion; +import static gregtech.common.items.ID_MetaItem_02.Food_Sliced_Tomato; +import static gregtech.common.items.ID_MetaItem_02.GelledToluene; +import static gregtech.common.items.ID_MetaItem_02.MSFMixture; +import static gregtech.common.items.ID_MetaItem_02.Plank_Acacia; +import static gregtech.common.items.ID_MetaItem_02.Plank_Acacia_Green; +import static gregtech.common.items.ID_MetaItem_02.Plank_Balsa; +import static gregtech.common.items.ID_MetaItem_02.Plank_Baobab; +import static gregtech.common.items.ID_MetaItem_02.Plank_Birch; +import static gregtech.common.items.ID_MetaItem_02.Plank_Cherry; +import static gregtech.common.items.ID_MetaItem_02.Plank_Chestnut; +import static gregtech.common.items.ID_MetaItem_02.Plank_Citrus; +import static gregtech.common.items.ID_MetaItem_02.Plank_DarkOak; +import static gregtech.common.items.ID_MetaItem_02.Plank_Ebony; +import static gregtech.common.items.ID_MetaItem_02.Plank_Greenheart; +import static gregtech.common.items.ID_MetaItem_02.Plank_Jungle; +import static gregtech.common.items.ID_MetaItem_02.Plank_Kapok; +import static gregtech.common.items.ID_MetaItem_02.Plank_Larch; +import static gregtech.common.items.ID_MetaItem_02.Plank_Lime; +import static gregtech.common.items.ID_MetaItem_02.Plank_Mahagony; +import static gregtech.common.items.ID_MetaItem_02.Plank_Mahoe; +import static gregtech.common.items.ID_MetaItem_02.Plank_Maple; +import static gregtech.common.items.ID_MetaItem_02.Plank_Oak; +import static gregtech.common.items.ID_MetaItem_02.Plank_Palm; +import static gregtech.common.items.ID_MetaItem_02.Plank_Papaya; +import static gregtech.common.items.ID_MetaItem_02.Plank_Pine; +import static gregtech.common.items.ID_MetaItem_02.Plank_Plum; +import static gregtech.common.items.ID_MetaItem_02.Plank_Poplar; +import static gregtech.common.items.ID_MetaItem_02.Plank_Sequoia; +import static gregtech.common.items.ID_MetaItem_02.Plank_Spruce; +import static gregtech.common.items.ID_MetaItem_02.Plank_Teak; +import static gregtech.common.items.ID_MetaItem_02.Plank_Walnut; +import static gregtech.common.items.ID_MetaItem_02.Plank_Wenge; +import static gregtech.common.items.ID_MetaItem_02.Plank_Willow; +import static gregtech.common.items.ID_MetaItem_02.SFMixture; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Cafe_au_lait; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Chocolate_Milk; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Coffee; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Dark_Cafe_au_lait; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Dark_Chocolate_Milk; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Dark_Coffee; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Ice_Tea; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Lait_au_cafe; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Sweet_Tea; +import static gregtech.common.items.ID_MetaItem_02.ThermosCan_Tea; import net.minecraft.dispenser.IBlockSource; import net.minecraft.enchantment.Enchantment; @@ -102,11 +298,9 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { OrePrefixes.gearGt); INSTANCE = this; - int tLastID = 0; - ItemList.ThermosCan_Dark_Coffee.set( addItem( - tLastID = 0, + ThermosCan_Dark_Coffee.ID, "Dark Coffee", "Coffee, dark, without anything else", new GT_FoodStat( @@ -131,7 +325,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MOTUS, 2L))); ItemList.ThermosCan_Dark_Cafe_au_lait.set( addItem( - tLastID = 1, + ThermosCan_Dark_Cafe_au_lait.ID, "Dark Coffee au lait", "Keeping you awake the whole night", new GT_FoodStat( @@ -156,7 +350,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MOTUS, 3L))); ItemList.ThermosCan_Coffee.set( addItem( - tLastID = 2, + ThermosCan_Coffee.ID, "Coffee", "Just the regular morning Coffee", new GT_FoodStat( @@ -181,7 +375,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MOTUS, 1L))); ItemList.ThermosCan_Cafe_au_lait.set( addItem( - tLastID = 3, + ThermosCan_Cafe_au_lait.ID, "Cafe au lait", "Sweet Coffee", new GT_FoodStat( @@ -206,7 +400,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MOTUS, 2L))); ItemList.ThermosCan_Lait_au_cafe.set( addItem( - tLastID = 4, + ThermosCan_Lait_au_cafe.ID, "Lait au cafe", "You want Coffee to your Sugar?", new GT_FoodStat( @@ -231,7 +425,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MOTUS, 3L))); ItemList.ThermosCan_Dark_Chocolate_Milk.set( addItem( - tLastID = 5, + ThermosCan_Dark_Chocolate_Milk.ID, "Dark Chocolate Milk", "A bit bitter, better add a bit Sugar", new GT_FoodStat( @@ -252,7 +446,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 1L))); ItemList.ThermosCan_Chocolate_Milk.set( addItem( - tLastID = 6, + ThermosCan_Chocolate_Milk.ID, "Chocolate Milk", "Sweet Goodness", new GT_FoodStat( @@ -273,7 +467,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 2L))); ItemList.ThermosCan_Tea.set( addItem( - tLastID = 7, + ThermosCan_Tea.ID, "Tea", "Keep calm and carry on", new GT_FoodStat( @@ -293,7 +487,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.AQUA, 2L))); ItemList.ThermosCan_Sweet_Tea.set( addItem( - tLastID = 8, + ThermosCan_Sweet_Tea.ID, "Sweet Tea", "How about a Tea Party? In Boston?", new GT_FoodStat( @@ -309,7 +503,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.AQUA, 2L))); ItemList.ThermosCan_Ice_Tea.set( addItem( - tLastID = 9, + ThermosCan_Ice_Tea.ID, "Ice Tea", "Better than this purple Junk Drink from failed Potions", new GT_FoodStat( @@ -328,11 +522,11 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.GELUM, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.AQUA, 2L))); - ItemList.GelledToluene.set(addItem(tLastID = 10, "Gelled Toluene", "Raw Explosive")); + ItemList.GelledToluene.set(addItem(GelledToluene.ID, "Gelled Toluene", "Raw Explosive")); ItemList.Bottle_Purple_Drink.set( addItem( - tLastID = 100, + Bottle_Purple_Drink.ID, "Purple Drink", "How about Lemonade. Or some Ice Tea? I got Purple Drink!", new GT_FoodStat( @@ -352,7 +546,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.VINCULUM, 1L))); ItemList.Bottle_Grape_Juice.set( addItem( - tLastID = 101, + Bottle_Grape_Juice.ID, "Grape Juice", "This has a cleaning effect on your internals.", new GT_FoodStat( @@ -372,7 +566,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 1L))); ItemList.Bottle_Wine.set( addItem( - tLastID = 102, + Bottle_Wine.ID, "Wine", "Ordinary", new GT_FoodStat( @@ -400,7 +594,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 1L))); ItemList.Bottle_Vinegar.set( addItem( - tLastID = 103, + Bottle_Vinegar.ID, "Vinegar", "Exquisite", new GT_FoodStat( @@ -432,7 +626,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 1L))); ItemList.Bottle_Potato_Juice.set( addItem( - tLastID = 104, + Bottle_Potato_Juice.ID, "Potato Juice", "Ever seen Potato Juice in stores? No? That has a reason.", new GT_FoodStat( @@ -448,7 +642,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L))); ItemList.Bottle_Vodka.set( addItem( - tLastID = 105, + Bottle_Vodka.ID, "Vodka", "Not to confuse with Water", new GT_FoodStat( @@ -476,7 +670,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.TELUM, 1L))); ItemList.Bottle_Leninade.set( addItem( - tLastID = 106, + Bottle_Leninade.ID, "Leninade", "Let the Communism flow through you!", new GT_FoodStat( @@ -508,7 +702,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.TELUM, 2L))); ItemList.Bottle_Mineral_Water.set( addItem( - tLastID = 107, + Bottle_Mineral_Water.ID, "Mineral Water", "The best Stuff you can drink to stay healthy", new GT_FoodStat( @@ -528,7 +722,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 1L))); ItemList.Bottle_Salty_Water.set( addItem( - tLastID = 108, + Bottle_Salty_Water.ID, "Salty Water", "Like Sea Water but less dirty", SubTag.INVISIBLE, @@ -549,7 +743,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L))); ItemList.Bottle_Reed_Water.set( addItem( - tLastID = 109, + Bottle_Reed_Water.ID, "Reed Water", "I guess this tastes better when fermented", new GT_FoodStat( @@ -565,7 +759,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L))); ItemList.Bottle_Rum.set( addItem( - tLastID = 110, + Bottle_Rum.ID, "Rum", "A buddle o' rum", new GT_FoodStat( @@ -593,7 +787,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.LUCRUM, 1L))); ItemList.Bottle_Pirate_Brew.set( addItem( - tLastID = 111, + Bottle_Pirate_Brew.ID, "Pirate Brew", "Set the Sails, we are going to Torrentuga!", new GT_FoodStat( @@ -625,7 +819,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.LUCRUM, 2L))); ItemList.Bottle_Hops_Juice.set( addItem( - tLastID = 112, + Bottle_Hops_Juice.ID, "Hops Juice", "Every Beer has a start", new GT_FoodStat( @@ -641,7 +835,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L))); ItemList.Bottle_Dark_Beer.set( addItem( - tLastID = 113, + Bottle_Dark_Beer.ID, "Dark Beer", "Dark Beer, for the real Men", new GT_FoodStat( @@ -669,7 +863,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.POTENTIA, 1L))); ItemList.Bottle_Dragon_Blood.set( addItem( - tLastID = 114, + Bottle_Dragon_Blood.ID, "Dragon Blood", "FUS RO DAH!", new GT_FoodStat( @@ -701,7 +895,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.POTENTIA, 2L))); ItemList.Bottle_Wheaty_Juice.set( addItem( - tLastID = 115, + Bottle_Wheaty_Juice.ID, "Wheaty Juice", "Is this liquefied Bread or what?", new GT_FoodStat( @@ -717,7 +911,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L))); ItemList.Bottle_Scotch.set( addItem( - tLastID = 116, + Bottle_Scotch.ID, "Scotch", "Technically this is just a Whisky", new GT_FoodStat( @@ -745,7 +939,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.TUTAMEN, 1L))); ItemList.Bottle_Glen_McKenner.set( addItem( - tLastID = 117, + Bottle_Glen_McKenner.ID, "Glen McKenner", "Don't hand to easily surprised people, they will shatter it.", new GT_FoodStat( @@ -777,7 +971,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.TUTAMEN, 2L))); ItemList.Bottle_Wheaty_Hops_Juice.set( addItem( - tLastID = 118, + Bottle_Wheaty_Hops_Juice.ID, "Wheaty Hops Juice", "Also known as 'Duff-Lite'", new GT_FoodStat( @@ -793,7 +987,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 2L))); ItemList.Bottle_Beer.set( addItem( - tLastID = 119, + Bottle_Beer.ID, "Beer", "Good old Beer", new GT_FoodStat( @@ -821,7 +1015,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.PERFODIO, 1L))); ItemList.Bottle_Chilly_Sauce.set( addItem( - tLastID = 120, + Bottle_Chilly_Sauce.ID, "Chilly Sauce", "Spicy", new GT_FoodStat( @@ -845,7 +1039,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Bottle_Hot_Sauce.set( addItem( - tLastID = 121, + Bottle_Hot_Sauce.ID, "Hot Sauce", "Very Spicy, I guess?", new GT_FoodStat( @@ -869,7 +1063,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 2L))); ItemList.Bottle_Diabolo_Sauce.set( addItem( - tLastID = 122, + Bottle_Diabolo_Sauce.ID, "Diabolo Sauce", "As if the Devil made this Sauce", new GT_FoodStat( @@ -893,7 +1087,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 3L))); ItemList.Bottle_Diablo_Sauce.set( addItem( - tLastID = 123, + Bottle_Diablo_Sauce.ID, "Diablo Sauce", "Diablo always comes back!", new GT_FoodStat( @@ -917,7 +1111,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 4L))); ItemList.Bottle_Snitches_Glitch_Sauce.set( addItem( - tLastID = 124, + Bottle_Snitches_Glitch_Sauce.ID, "Old Man Snitches glitched Diablo Sauce", "[Missing No]", SubTag.INVISIBLE, @@ -942,7 +1136,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 5L))); ItemList.Bottle_Apple_Juice.set( addItem( - tLastID = 125, + Bottle_Apple_Juice.ID, "Apple Juice", "Made of the Apples from our best Oak Farms", new GT_FoodStat( @@ -962,7 +1156,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L))); ItemList.Bottle_Cider.set( addItem( - tLastID = 126, + Bottle_Cider.ID, "Cider", "If you have nothing better to do with your Apples", new GT_FoodStat( @@ -990,7 +1184,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.TUTAMEN, 1L))); ItemList.Bottle_Golden_Apple_Juice.set( addItem( - tLastID = 127, + Bottle_Golden_Apple_Juice.ID, "Golden Apple Juice", "A golden Apple in liquid form", new GT_FoodStat( @@ -1018,7 +1212,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 1L))); ItemList.Bottle_Golden_Cider.set( addItem( - tLastID = 128, + Bottle_Golden_Cider.ID, "Golden Cider", "More Resistance, less Regeneration", new GT_FoodStat( @@ -1046,7 +1240,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.TUTAMEN, 1L))); ItemList.Bottle_Iduns_Apple_Juice.set( addItem( - tLastID = 129, + Bottle_Iduns_Apple_Juice.ID, "Idun's Apple Juice", "So you got the Idea of using Notch Apples for a drink?", new GT_FoodStat( @@ -1078,7 +1272,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.NEBRISUM, 9L))); ItemList.Bottle_Notches_Brew.set( addItem( - tLastID = 130, + Bottle_Notches_Brew.ID, "Notches Brew", "This is just overpowered", new GT_FoodStat( @@ -1114,7 +1308,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.NEBRISUM, 9L))); ItemList.Bottle_Lemon_Juice.set( addItem( - tLastID = 131, + Bottle_Lemon_Juice.ID, "Lemon Juice", "Maybe adding Sugar will make it less sour", new GT_FoodStat( @@ -1134,7 +1328,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.PERFODIO, 1L))); ItemList.Bottle_Limoncello.set( addItem( - tLastID = 132, + Bottle_Limoncello.ID, "Limoncello", "An alcoholic Drink which tastes like Lemons", new GT_FoodStat( @@ -1158,7 +1352,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.PERFODIO, 1L))); ItemList.Bottle_Lemonade.set( addItem( - tLastID = 133, + Bottle_Lemonade.ID, "Lemonade", "Cold and refreshing Lemonade", new GT_FoodStat( @@ -1178,7 +1372,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.PERFODIO, 1L))); ItemList.Bottle_Alcopops.set( addItem( - tLastID = 134, + Bottle_Alcopops.ID, "Alcopops", "Don't let your Children drink this junk!", new GT_FoodStat( @@ -1202,7 +1396,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.VINCULUM, 1L))); ItemList.Bottle_Cave_Johnsons_Grenade_Juice.set( addItem( - tLastID = 135, + Bottle_Cave_Johnsons_Grenade_Juice.ID, "Cave Johnson's Grenade Juice", "When life gives you Lemons, make Life take them Lemons back!", new GT_FoodStat( @@ -1218,7 +1412,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.PERDITIO, 1L))); ItemList.Bottle_Milk.set( addItem( - tLastID = 136, + Bottle_Milk.ID, "Milk", "Got Milk?", OrePrefixes.bottle.get(Materials.Milk), @@ -1235,7 +1429,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.SANO, 1L))); ItemList.Bottle_Holy_Water.set( addItem( - tLastID = 137, + Bottle_Holy_Water.ID, "Holy Water", "May the holy Planks be with you", OrePrefixes.bottle.get(Materials.HolyWater), @@ -1257,7 +1451,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { ItemList.Food_Potato_On_Stick.set( addItem( - tLastID = 200, + Food_Potato_On_Stick.ID, "Potato on a Stick", "Totally looks like a Crab Claw", new GT_FoodStat(1, 0.3F, EnumAction.eat, new ItemStack(Items.stick, 1), false, true, false), @@ -1266,7 +1460,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Food_Potato_On_Stick_Roasted.set( addItem( - tLastID = 201, + Food_Potato_On_Stick_Roasted.ID, "Roasted Potato on a Stick", "Still looks like a Crab Claw", new GT_FoodStat(6, 0.6F, EnumAction.eat, new ItemStack(Items.stick, 1), false, true, false), @@ -1276,17 +1470,16 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Raw_Fries.set( addItem( - tLastID = 202, + Food_Raw_Fries.ID, "Potato Strips", "It's Potato in Stripe Form", new GT_FoodStat(1, 0.3F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_Fries.set( addItem( - tLastID = 203, + Food_Fries.ID, "Fries", "Not to confuse with Fry the Delivery Boy", new GT_FoodStat(7, 0.5F, EnumAction.eat, null, false, true, false), @@ -1294,10 +1487,9 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_Packaged_Fries.set( addItem( - tLastID = 204, + Food_Packaged_Fries.ID, "Fries", "Ketchup not included", new GT_FoodStat( @@ -1314,17 +1506,16 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Raw_PotatoChips.set( addItem( - tLastID = 205, + Food_Raw_PotatoChips.ID, "Potato Chips (Raw)", "Just like a Potato", new GT_FoodStat(1, 0.3F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_PotatoChips.set( addItem( - tLastID = 206, + Food_PotatoChips.ID, "Potato Chips", "Crunchy", new GT_FoodStat(7, 0.5F, EnumAction.eat, null, false, true, false), @@ -1332,10 +1523,9 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_ChiliChips.set( addItem( - tLastID = 207, + Food_ChiliChips.ID, "Chili Chips", "Spicy", new GT_FoodStat(7, 0.6F, EnumAction.eat, null, false, true, false), @@ -1343,10 +1533,9 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.MESSIS, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_Packaged_PotatoChips.set( addItem( - tLastID = 208, + Food_Packaged_PotatoChips.ID, "Bag of Potato Chips", "Full of delicious Air", new GT_FoodStat( @@ -1363,7 +1552,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Packaged_ChiliChips.set( addItem( - tLastID = 209, + Food_Packaged_ChiliChips.ID, "Bag of Chili Chips", "Stop making noises Baj!", new GT_FoodStat( @@ -1380,7 +1569,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Chum.set( addItem( - tLastID = 210, + Food_Chum.ID, "Chum", "Chum is Fum!", new GT_FoodStat( @@ -1404,7 +1593,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Chum_On_Stick.set( addItem( - tLastID = 211, + Food_Chum_On_Stick.ID, "Chum on a Stick", "Don't forget to try our Chum-balaya", new GT_FoodStat( @@ -1428,7 +1617,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Dough_Sugar.set( addItem( - tLastID = 212, + Food_Dough_Sugar.ID, "Sugary Dough", "Don't eat the Dough before it is baken", new GT_FoodStat(1, 0.1F, EnumAction.eat, null, false, true, false), @@ -1436,7 +1625,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L))); ItemList.Food_Dough_Chocolate.set( addItem( - tLastID = 213, + Food_Dough_Chocolate.ID, "Chocolate Dough", "I said don't eat the Dough!", new GT_FoodStat(1, 0.1F, EnumAction.eat, null, false, true, false), @@ -1444,7 +1633,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L))); ItemList.Food_Raw_Cookie.set( addItem( - tLastID = 214, + Food_Raw_Cookie.ID, "Cookie shaped Dough", "For baking Cookies", new GT_FoodStat(1, 0.1F, EnumAction.eat, null, false, true, false), @@ -1453,7 +1642,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { ItemList.Food_Sliced_Buns.set( addItem( - tLastID = 220, + Food_Sliced_Buns.ID, "Buns", "Pre Sliced", new GT_FoodStat(3, 0.5F, EnumAction.eat, null, false, true, false), @@ -1462,7 +1651,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Burger_Veggie.set( addItem( - tLastID = 221, + Food_Burger_Veggie.ID, "Veggieburger", "No matter how you call this, this is NOT a Burger!", new GT_FoodStat(3, 0.5F, EnumAction.eat, null, false, true, false), @@ -1471,7 +1660,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Burger_Cheese.set( addItem( - tLastID = 222, + Food_Burger_Cheese.ID, "Cheeseburger", "Cheesy!", new GT_FoodStat(3, 0.5F, EnumAction.eat, null, false, true, false), @@ -1481,7 +1670,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new ItemData(Materials.Cheese, 907200L))); ItemList.Food_Burger_Meat.set( addItem( - tLastID = 223, + Food_Burger_Meat.ID, "Hamburger", "The Mc Burger Queen Burger", new GT_FoodStat(3, 0.5F, EnumAction.eat, null, false, true, false), @@ -1490,7 +1679,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Burger_Chum.set( addItem( - tLastID = 224, + Food_Burger_Chum.ID, "Chumburger", "Fum is Chum!", new GT_FoodStat( @@ -1515,7 +1704,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { ItemList.Food_Sliced_Breads.set( addItem( - tLastID = 230, + Food_Sliced_Breads.ID, "Breads", "Pre Sliced", new GT_FoodStat(5, 0.6F, EnumAction.eat, null, false, true, false), @@ -1524,48 +1713,43 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Sandwich_Veggie.set( addItem( - tLastID = 231, + Food_Sandwich_Veggie.ID, "Veggie Sandwich", "Meatless", new GT_FoodStat(7, 0.6F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 2L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 32L); ItemList.Food_Sandwich_Cheese.set( addItem( - tLastID = 232, + Food_Sandwich_Cheese.ID, "Cheese Sandwich", "Say Cheese!", new GT_FoodStat(7, 0.6F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 2L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 32L); ItemList.Food_Sandwich_Bacon.set( addItem( - tLastID = 233, + Food_Sandwich_Bacon.ID, "Bacon Sandwich", "The best Sandwich ever!", new GT_FoodStat(10, 0.8F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.CORPUS, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 32L); ItemList.Food_Sandwich_Steak.set( addItem( - tLastID = 234, + Food_Sandwich_Steak.ID, "Steak Sandwich", "Not a 'Steam Sandwich'", new GT_FoodStat(10, 0.8F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.CORPUS, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 32L); - ItemList.Food_Sliced_Baguettes.set( addItem( - tLastID = 240, + Food_Sliced_Baguettes.ID, "Baguettes", "Pre Sliced", new GT_FoodStat(8, 0.5F, EnumAction.eat, null, false, true, false), @@ -1574,48 +1758,43 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Large_Sandwich_Veggie.set( addItem( - tLastID = 241, + Food_Large_Sandwich_Veggie.ID, "Large Veggie Sandwich", "Just not worth it", new GT_FoodStat(15, 0.8F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 3L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_Large_Sandwich_Cheese.set( addItem( - tLastID = 242, + Food_Large_Sandwich_Cheese.ID, "Large Cheese Sandwich", "I need another cheesy tooltip for this", new GT_FoodStat(15, 0.8F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.HERBA, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 3L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_Large_Sandwich_Bacon.set( addItem( - tLastID = 243, + Food_Large_Sandwich_Bacon.ID, "Large Bacon Sandwich", "For Men! (and manly Women)", new GT_FoodStat(20, 1.0F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.CORPUS, 2L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); ItemList.Food_Large_Sandwich_Steak.set( addItem( - tLastID = 244, + Food_Large_Sandwich_Steak.ID, "Large Steak Sandwich", "Yes, I once accidentially called it 'Steam Sandwich'", new GT_FoodStat(20, 1.0F, EnumAction.eat, null, false, true, false), new TC_Aspects.TC_AspectStack(TC_Aspects.CORPUS, 2L), new TC_Aspects.TC_AspectStack(TC_Aspects.FAMES, 1L), new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); - setFluidContainerStats(32000 + tLastID, 0L, 16L); - ItemList.Food_Raw_Pizza_Veggie.set( addItem( - tLastID = 250, + Food_Raw_Pizza_Veggie.ID, "Raw Veggie Pizza", "Into the Oven with it!", new GT_FoodStat(1, 0.2F, EnumAction.eat, null, false, true, false), @@ -1624,7 +1803,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Raw_Pizza_Cheese.set( addItem( - tLastID = 251, + Food_Raw_Pizza_Cheese.ID, "Raw Cheese Pizza", "Into the Oven with it!", new GT_FoodStat(2, 0.2F, EnumAction.eat, null, false, true, false), @@ -1633,7 +1812,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Raw_Pizza_Meat.set( addItem( - tLastID = 252, + Food_Raw_Pizza_Meat.ID, "Raw Mince Meat Pizza", "Into the Oven with it!", new GT_FoodStat(2, 0.2F, EnumAction.eat, null, false, true, false), @@ -1643,7 +1822,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { ItemList.Food_Baked_Pizza_Veggie.set( addItem( - tLastID = 260, + Food_Baked_Pizza_Veggie.ID, "Veggie Pizza", "The next they want is Gluten Free Pizzas...", new GT_FoodStat(3, 0.3F, EnumAction.eat, null, false, true, false), @@ -1652,7 +1831,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Baked_Pizza_Cheese.set( addItem( - tLastID = 261, + Food_Baked_Pizza_Cheese.ID, "Cheese Pizza", "Pizza Magarita", new GT_FoodStat(4, 0.4F, EnumAction.eat, null, false, true, false), @@ -1661,7 +1840,7 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { new TC_Aspects.TC_AspectStack(TC_Aspects.IGNIS, 1L))); ItemList.Food_Baked_Pizza_Meat.set( addItem( - tLastID = 262, + Food_Baked_Pizza_Meat.ID, "Mince Meat Pizza", "Emo Pizza, it cuts itself!", new GT_FoodStat(5, 0.5F, EnumAction.eat, null, false, true, false), @@ -1671,326 +1850,116 @@ public class GT_MetaGenerated_Item_02 extends GT_MetaGenerated_Item_X32 { ItemList.Dye_Indigo.set( addItem( - tLastID = 410, + Dye_Indigo.ID, "Indigo Dye", "Blue Dye", new TC_Aspects.TC_AspectStack(TC_Aspects.SENSUS, 1L), Dyes.dyeBlue)); - for (byte i = 0; i < 16; i = (byte) (i + 1)) { + + int[] Dye_Colors = new int[] { Dye_Color_00.ID, Dye_Color_01.ID, Dye_Color_02.ID, Dye_Color_03.ID, + Dye_Color_04.ID, Dye_Color_05.ID, Dye_Color_06.ID, Dye_Color_07.ID, Dye_Color_08.ID, Dye_Color_09.ID, + Dye_Color_10.ID, Dye_Color_11.ID, Dye_Color_12.ID, Dye_Color_13.ID, Dye_Color_14.ID, Dye_Color_15.ID }; + for (int i = 0; i < 16; i = i + 1) { ItemList.DYE_ONLY_ITEMS[i].set( addItem( - tLastID = 414 + i, + Dye_Colors[i], Dyes.get(i).mName + " Dye", "", Dyes.get(i) .name(), new TC_Aspects.TC_AspectStack(TC_Aspects.SENSUS, 1L))); } + ItemList.Plank_Oak - .set(addItem(tLastID = 470, "Oak Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + .set(addItem(Plank_Oak.ID, "Oak Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Spruce.set( - addItem(tLastID = 471, "Spruce Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Spruce.ID, "Spruce Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Birch.set( - addItem(tLastID = 472, "Birch Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Birch.ID, "Birch Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Jungle.set( - addItem(tLastID = 473, "Jungle Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Jungle.ID, "Jungle Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Acacia.set( - addItem(tLastID = 474, "Acacia Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Acacia.ID, "Acacia Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_DarkOak.set( - addItem(tLastID = 475, "Dark Oak Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem( + Plank_DarkOak.ID, + "Dark Oak Plank", + aTextCover, + new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Larch.set( - addItem(tLastID = 476, "Larch Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Larch.ID, "Larch Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Teak - .set(addItem(tLastID = 477, "Teak Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + .set(addItem(Plank_Teak.ID, "Teak Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Acacia_Green.set( addItem( - tLastID = 478, + Plank_Acacia_Green.ID, "Green Acacia Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); ItemList.Plank_Lime - .set(addItem(tLastID = 479, "Lime Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + .set(addItem(Plank_Lime.ID, "Lime Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Chestnut.set( - addItem(tLastID = 480, "Chestnut Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem( + Plank_Chestnut.ID, + "Chestnut Plank", + aTextCover, + new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Wenge.set( - addItem(tLastID = 481, "Wenge Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Wenge.ID, "Wenge Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Baobab.set( - addItem(tLastID = 482, "Baobab Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Baobab.ID, "Baobab Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Sequoia.set( - addItem(tLastID = 483, "Sequoia Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem( + Plank_Sequoia.ID, + "Sequoia Plank", + aTextCover, + new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Kapok.set( - addItem(tLastID = 484, "Kapok Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Kapok.ID, "Kapok Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Ebony.set( - addItem(tLastID = 485, "Ebony Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Ebony.ID, "Ebony Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Mahagony.set( - addItem(tLastID = 486, "Mahagony Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem( + Plank_Mahagony.ID, + "Mahagony Plank", + aTextCover, + new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Balsa.set( - addItem(tLastID = 487, "Balsa Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Balsa.ID, "Balsa Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Willow.set( - addItem(tLastID = 488, "Willow Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Willow.ID, "Willow Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Walnut.set( - addItem(tLastID = 489, "Walnut Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Walnut.ID, "Walnut Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Greenheart.set( addItem( - tLastID = 490, + Plank_Greenheart.ID, "Greenheart Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); ItemList.Plank_Cherry.set( - addItem(tLastID = 491, "Cherry Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Cherry.ID, "Cherry Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Mahoe.set( - addItem(tLastID = 492, "Mahoe Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Mahoe.ID, "Mahoe Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Poplar.set( - addItem(tLastID = 493, "Poplar Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Poplar.ID, "Poplar Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Palm - .set(addItem(tLastID = 494, "Palm Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + .set(addItem(Plank_Palm.ID, "Palm Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Papaya.set( - addItem(tLastID = 495, "Papaya Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + addItem(Plank_Papaya.ID, "Papaya Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Pine - .set(addItem(tLastID = 496, "Pine Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + .set(addItem(Plank_Pine.ID, "Pine Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Plum - .set(addItem(tLastID = 497, "Plum Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); - setBurnValue(32000 + tLastID, 75); + .set(addItem(Plank_Plum.ID, "Plum Plank", aTextCover, new TC_Aspects.TC_AspectStack(TC_Aspects.ARBOR, 1L))); ItemList.Plank_Maple.set( - addItem(tLastID = 498, "Maple Plank", aTextCove