Allow for abuse of the office coffee machine

This commit is contained in:
MFernflower 2018-05-22 22:13:38 -04:00 committed by GitHub
parent 54b4f946ea
commit 9e40188f01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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");
}
}
}
}