BloodMagic/src/main/java/WayofTime/bloodmagic/potion/PotionBloodMagic.java

15 lines
448 B
Java
Raw Normal View History

2015-12-27 19:38:12 -05:00
package WayofTime.bloodmagic.potion;
import net.minecraft.potion.Potion;
import net.minecraft.util.ResourceLocation;
public class PotionBloodMagic extends Potion
{
public PotionBloodMagic(String name, ResourceLocation texture, boolean badEffect, int potionColor, int iconIndexX, int iconIndexY)
{
2015-12-27 19:38:12 -05:00
super(texture, badEffect, potionColor);
this.setPotionName(name);
this.setIconIndex(iconIndexX, iconIndexY);
}
}