Added lore and icon for Funeral Bouquet and corrected the price for spring items

This commit is contained in:
LCastr0 2017-03-20 16:52:27 -03:00
parent 33b933f465
commit 8f7f52e222
3 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ public class ArrowTrailSpring extends ArrowEffectGadget
public ArrowTrailSpring(GadgetManager manager)
{
super(manager, "Flower Arrows", UtilText.splitLineToArray(C.cGray + "Send the power of Spring flying at your foes!", LineFormat.LORE),
-9, Material.YELLOW_FLOWER, (byte) 0);
-19, Material.YELLOW_FLOWER, (byte) 0);
}
@Override

View File

@ -32,10 +32,10 @@ public class DeathSpring extends DeathEffectGadget
public DeathSpring(GadgetManager manager)
{
// TODO NAME, LORE AND ICON
super(manager, "Flower Bouquet",
UtilText.splitLineToArray(C.cGray + "Placeholder", LineFormat.LORE),
-3,
Material.INK_SACK, (byte)1);
super(manager, "Funeral Bouquet",
UtilText.splitLineToArray(C.cGray + "Leave a rose to pay respects", LineFormat.LORE),
-19,
Material.RED_ROSE, (byte) 0);
}
@Override

View File

@ -29,7 +29,7 @@ public class DoubleJumpSpring extends DoubleJumpEffectGadget
public DoubleJumpSpring(GadgetManager manager)
{
// TODO NAME LORE ICON
super(manager, "Flower Power", UtilText.splitLineToArray(C.cGray + "Be like a bouncing bee and pollinate everywhere you go!", LineFormat.LORE), -9,
super(manager, "Flower Power", UtilText.splitLineToArray(C.cGray + "Be like a bouncing bee and pollinate everywhere you go!", LineFormat.LORE), -19,
Material.YELLOW_FLOWER, (byte) 0);
}