use of minechem.potion.PharmacologyEffect in project Minechem by iopleke.
the class Chemicals method addCureEffect.
@ZenMethod
public static void addCureEffect(IIngredient ingredient) {
PharmacologyEffect effect = new PharmacologyEffect.Cure();
addEffect(ingredient, effect);
}
use of minechem.potion.PharmacologyEffect in project Minechem by iopleke.
the class Chemicals method addDamageEffect.
@ZenMethod
public static void addDamageEffect(IIngredient ingredient, double damage) {
PharmacologyEffect effect = new PharmacologyEffect.Damage((float) damage);
addEffect(ingredient, effect);
}
Aggregations