Implemented a "Constriction" potion, which prevents using items in your hand (will be refined later)
This commit is contained in:
parent
9cfc8870c1
commit
2af621cced
2 changed files with 17 additions and 0 deletions
|
@ -18,6 +18,7 @@ public class ModPotions
|
|||
public static Potion soulSnare;
|
||||
public static Potion soulFray;
|
||||
public static Potion fireFuse;
|
||||
public static Potion constrict;
|
||||
|
||||
public static void init()
|
||||
{
|
||||
|
@ -42,6 +43,7 @@ public class ModPotions
|
|||
PlayerSacrificeHelper.soulFrayId = soulFray;
|
||||
|
||||
fireFuse = registerPotion("Fire Fuse", new ResourceLocation("fireFuse"), true, 0xFF3333, 5, 0);
|
||||
constrict = registerPotion("Constriction", new ResourceLocation("constrict"), true, 0x000000, 6, 0);
|
||||
// heavyHeart = new PotionBloodMagic("Heavy Heart", new
|
||||
// ResourceLocation(resourceLocation +
|
||||
// heavyHeart.getName().toLowerCase()), true, 0, 0, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue