From 9e40188f014b11bf439df70fe06112043c14ccdf Mon Sep 17 00:00:00 2001 From: MFernflower Date: Tue, 22 May 2018 22:13:38 -0400 Subject: [PATCH] Allow for abuse of the office coffee machine --- .../de/ellpeck/actuallyadditions/mod/items/ItemCoffee.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemCoffee.java b/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemCoffee.java index ab483bf7e..eec965230 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemCoffee.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemCoffee.java @@ -56,6 +56,8 @@ public class ItemCoffee extends ItemFoodBase{ } ActuallyAdditionsAPI.addCoffeeMachineIngredient(new CoffeeIngredient(new ItemStack(Items.SUGAR), new PotionEffect[]{new PotionEffect(MobEffects.SPEED, 30, 0)}, 4)); + ActuallyAdditionsAPI.addCoffeeMachineIngredient(new CoffeeIngredient(new ItemStack(Items.ROTTEN_FLESH), new PotionEffect[]{new PotionEffect(MobEffects.HUNGER, 15, 0)}, 2)); + ActuallyAdditionsAPI.addCoffeeMachineIngredient(new CoffeeIngredient(new ItemStack(Items.EGG), new PotionEffect[]{new PotionEffect(MobEffects.NAUSEA, 30, 0)}, 2)); ActuallyAdditionsAPI.addCoffeeMachineIngredient(new CoffeeIngredient(new ItemStack(Items.MAGMA_CREAM), new PotionEffect[]{new PotionEffect(MobEffects.FIRE_RESISTANCE, 20, 0)}, 2)); ActuallyAdditionsAPI.addCoffeeMachineIngredient(new CoffeeIngredient(new ItemStack(Items.FISH, 1, 3), new PotionEffect[]{new PotionEffect(MobEffects.WATER_BREATHING, 10, 0)}, 2)); ActuallyAdditionsAPI.addCoffeeMachineIngredient(new CoffeeIngredient(new ItemStack(Items.GOLDEN_CARROT), new PotionEffect[]{new PotionEffect(MobEffects.NIGHT_VISION, 30, 0)}, 2)); @@ -161,4 +163,4 @@ public class ItemCoffee extends ItemFoodBase{ return StringUtil.localize("container.nei."+ActuallyAdditions.MODID+".coffee.extra.milk"); } } -} \ No newline at end of file +}