2015-12-27 19:38:12 -05:00
|
|
|
package WayofTime.bloodmagic.potion;
|
|
|
|
|
|
|
|
import net.minecraft.potion.Potion;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
|
2015-12-30 15:34:40 -05:00
|
|
|
public class PotionBloodMagic extends Potion
|
|
|
|
{
|
|
|
|
public PotionBloodMagic(String name, ResourceLocation texture, boolean badEffect, int potionColor, int iconIndexX, int iconIndexY)
|
|
|
|
{
|
2016-03-18 14:54:31 -04:00
|
|
|
super(badEffect, potionColor);
|
2015-12-27 19:38:12 -05:00
|
|
|
this.setPotionName(name);
|
|
|
|
this.setIconIndex(iconIndexX, iconIndexY);
|
|
|
|
}
|
|
|
|
}
|