You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
534 B
Java
17 lines
534 B
Java
package com.zivilon.cinder_loe.potion;
|
|
|
|
import net.minecraft.potion.Potion;
|
|
import net.minecraft.potion.PotionEffect;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
|
|
public class LoEPotions {
|
|
public static Potion corrupting;
|
|
public static Potion herbal_poisoning;
|
|
|
|
public static void registerPotions() {
|
|
corrupting = new PotionCorrupting(31, false, 0x7F0000).setPotionName("potion.corrupting");
|
|
herbal_poisoning = new PotionHerbPoison(29, false, 0x114023).setPotionName("potion.herbal_poisoning");
|
|
}
|
|
}
|
|
|