blob: f01a46791af2ff969e78b8176a511b17bc3507e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
*
*/
package darkknight.jewelrycraft.potions;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import darkknight.jewelrycraft.util.Variables;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
/**
* @author Sorin
*/
public class PotionStun extends Potion
{
protected PotionStun(int id, boolean isBad, int color)
{
super(id, isBad, color);
this.setPotionName(Variables.MODID + ".potion.stun");
}
@SideOnly(Side.CLIENT)
public void renderInventoryEffect(int x, int y, PotionEffect effect, net.minecraft.client.Minecraft mc) { }
}
|