11package io .github .thebusybiscuit .hotbarpets .groups ;
22
3- import io .github .thebusybiscuit .hotbarpets .PetTexture ;
43import org .bukkit .Material ;
54import org .bukkit .inventory .ItemStack ;
65
76import io .github .thebusybiscuit .hotbarpets .HotbarPet ;
87import io .github .thebusybiscuit .hotbarpets .HotbarPets ;
98import io .github .thebusybiscuit .hotbarpets .PetGroup ;
9+ import io .github .thebusybiscuit .hotbarpets .PetTexture ;
1010import io .github .thebusybiscuit .hotbarpets .pets .CowPet ;
1111import io .github .thebusybiscuit .slimefun4 .implementation .SlimefunItems ;
12- import me . mrCookieSlime . Slimefun . api .SlimefunItemStack ;
12+ import io . github . thebusybiscuit . slimefun4 . api . items .SlimefunItemStack ;
1313
1414public final class FarmAnimals implements PetGroup {
1515
@@ -27,31 +27,31 @@ public void load(HotbarPets plugin) {
2727 // @formatter:off
2828 SlimefunItemStack cow = new SlimefunItemStack ("HOTBAR_PET_COW" , PetTexture .COW_PET .getHash (), "&6Cow Pet" , getName (), "&7Favourite Food: Wheat" , "" , "&fRight-Click: &7Removes negative Potion Effects" );
2929
30- new HotbarPet (plugin .getCategory (), new SlimefunItemStack ("HOTBAR_PET_PIG" , PetTexture .PIG_PET .getHash (), "&dPig Pet" , getName (), "&7Favourite Food: Carrots" , "" , "&fBonus Saturation when eating" , "&fAllows you to eat poisonous Food" ), new ItemStack (Material .CARROT ), new ItemStack [] {
30+ new HotbarPet (plugin .getItemGroup (), new SlimefunItemStack ("HOTBAR_PET_PIG" , PetTexture .PIG_PET .getHash (), "&dPig Pet" , getName (), "&7Favourite Food: Carrots" , "" , "&fBonus Saturation when eating" , "&fAllows you to eat poisonous Food" ), new ItemStack (Material .CARROT ), new ItemStack [] {
3131 new ItemStack (Material .REDSTONE ), new ItemStack (Material .CARROT ), new ItemStack (Material .REDSTONE ),
3232 new ItemStack (Material .PORKCHOP ), new ItemStack (Material .DIAMOND ), new ItemStack (Material .PORKCHOP ),
3333 new ItemStack (Material .REDSTONE ), SlimefunItems .GOLD_16K , new ItemStack (Material .REDSTONE )
3434 }).register (plugin );
3535
36- new HotbarPet (plugin .getCategory (), new SlimefunItemStack ("HOTBAR_PET_CHICKEN" , PetTexture .CHICKEN_PET .getHash (), "&fChicken Pet" , getName (), "&7Favourite Food: Seeds" , "" , "&fGives you Eggs over time..." ), new ItemStack (Material .WHEAT_SEEDS ), new ItemStack [] {
36+ new HotbarPet (plugin .getItemGroup (), new SlimefunItemStack ("HOTBAR_PET_CHICKEN" , PetTexture .CHICKEN_PET .getHash (), "&fChicken Pet" , getName (), "&7Favourite Food: Seeds" , "" , "&fGives you Eggs over time..." ), new ItemStack (Material .WHEAT_SEEDS ), new ItemStack [] {
3737 new ItemStack (Material .REDSTONE ), new ItemStack (Material .FEATHER ), new ItemStack (Material .REDSTONE ),
3838 new ItemStack (Material .COOKED_CHICKEN ), new ItemStack (Material .DIAMOND ), new ItemStack (Material .COOKED_CHICKEN ),
3939 new ItemStack (Material .REDSTONE ), SlimefunItems .GOLD_16K , new ItemStack (Material .REDSTONE )
4040 }).register (plugin );
4141
42- new HotbarPet (plugin .getCategory (), new SlimefunItemStack ("HOTBAR_PET_MOOSHROOM" , PetTexture .MOOSHROOM_PET .getHash (), "&dMooshroom Pet" , getName (), "&7Favourite Food: Red Mushrooms" , "" , "&fGives you Mushroom Stew over time..." ), new ItemStack (Material .RED_MUSHROOM ), new ItemStack [] {
42+ new HotbarPet (plugin .getItemGroup (), new SlimefunItemStack ("HOTBAR_PET_MOOSHROOM" , PetTexture .MOOSHROOM_PET .getHash (), "&dMooshroom Pet" , getName (), "&7Favourite Food: Red Mushrooms" , "" , "&fGives you Mushroom Stew over time..." ), new ItemStack (Material .RED_MUSHROOM ), new ItemStack [] {
4343 new ItemStack (Material .LAPIS_LAZULI ), new ItemStack (Material .COOKED_BEEF ), new ItemStack (Material .LAPIS_LAZULI ),
4444 new ItemStack (Material .RED_MUSHROOM ), new ItemStack (Material .DIAMOND ), new ItemStack (Material .BROWN_MUSHROOM ),
4545 new ItemStack (Material .LAPIS_LAZULI ), SlimefunItems .GOLD_16K , new ItemStack (Material .LAPIS_LAZULI )
4646 }).register (plugin );
4747
48- new CowPet (plugin .getCategory (), cow , new ItemStack (Material .WHEAT ), new ItemStack [] {
48+ new CowPet (plugin .getItemGroup (), cow , new ItemStack (Material .WHEAT ), new ItemStack [] {
4949 new ItemStack (Material .COAL ), new ItemStack (Material .WHEAT ), new ItemStack (Material .COAL ),
5050 new ItemStack (Material .COOKED_BEEF ), new ItemStack (Material .DIAMOND ), new ItemStack (Material .COOKED_BEEF ),
5151 new ItemStack (Material .COAL ), SlimefunItems .GOLD_16K , new ItemStack (Material .COAL )
5252 }).register (plugin );
5353
54- new HotbarPet (plugin .getCategory (), new SlimefunItemStack ("HOTBAR_PET_GOLDEN_COW" , PetTexture .GOLDEN_COW_PET .getHash (), "&6Golden Cow Pet" , getName (), "&7Favourite Food: Golden Carrots" , "" , "&fGives you Golden Ingots over time..." , "&f(That means you have a net gain of 1 golden nugget)" ), new ItemStack (Material .GOLDEN_CARROT ), new ItemStack [] {
54+ new HotbarPet (plugin .getItemGroup (), new SlimefunItemStack ("HOTBAR_PET_GOLDEN_COW" , PetTexture .GOLDEN_COW_PET .getHash (), "&6Golden Cow Pet" , getName (), "&7Favourite Food: Golden Carrots" , "" , "&fGives you Golden Ingots over time..." , "&f(That means you have a net gain of 1 golden nugget)" ), new ItemStack (Material .GOLDEN_CARROT ), new ItemStack [] {
5555 new ItemStack (Material .GOLDEN_CARROT ), new ItemStack (Material .GOLD_NUGGET ), new ItemStack (Material .GOLDEN_CARROT ),
5656 new ItemStack (Material .GOLD_NUGGET ), cow , new ItemStack (Material .GOLD_NUGGET ),
5757 new ItemStack (Material .GOLDEN_CARROT ), new ItemStack (Material .GOLD_NUGGET ), new ItemStack (Material .GOLDEN_CARROT )
0 commit comments