Lazer to Laser

This commit is contained in:
Sam 2016-10-03 23:17:14 +01:00
parent e48dfbefe4
commit 53c6c07208
5 changed files with 9 additions and 9 deletions

View File

@ -55,11 +55,11 @@ public class KitGuardian extends SmashKit
C.Reset + "nearby players."
}),
ItemStackFactory.Instance.CreateStack(Material.IRON_PICKAXE, (byte) 0, 1,
C.cYellowB + "Right-Click" + C.cWhiteB + " - " + C.cGreenB + "Target Lazer",
C.cYellowB + "Right-Click" + C.cWhiteB + " - " + C.cGreenB + "Target Laser",
new String[] {
C.Reset + "You target the nearest player with your lazer.",
C.Reset + "You target the nearest player with your laser.",
C.Reset + "That player takes increased damage and knockback from you.",
C.Reset + "Your lazer breaks if you get too far away or after some time."
C.Reset + "Your laser breaks if you get too far away or after some time."
}),
ItemStackFactory.Instance.CreateStack(Material.PRISMARINE_SHARD, (byte) 0, 1,
C.cYellowB + "Passive" + C.cWhiteB + " - " + C.cGreenB + "Thorns",
@ -70,10 +70,10 @@ public class KitGuardian extends SmashKit
ItemStackFactory.Instance.CreateStack(Material.NETHER_STAR, (byte) 0, 1,
C.cYellowB + "Smash Crystal" + C.cWhiteB + " - " + C.cGreenB + "Rise of the Guardian",
new String[] {
C.Reset + "You call upon Gwen who begins to charge their lazer.",
C.Reset + "You call upon Gwen who begins to charge her laser.",
C.Reset + "Any player near the laser is drawn to it and cannot",
C.Reset + "escape from it.",
C.Reset + "Once the lazer has charged all players nearby get hit",
C.Reset + "Once the laser has charged all players nearby get hit",
C.Reset + "with HUGE damage and knockback!"
}),
};

View File

@ -39,7 +39,7 @@ public class KitSheep extends SmashKit
private static final ItemStack[] PLAYER_ITEMS = {
ItemStackFactory.Instance.CreateStack(Material.IRON_SWORD, (byte) 0, 1,
C.cYellow + C.Bold + "Right-Click" + C.cWhite + C.Bold + " - " + C.cGreen + C.Bold + "Static Lazer",
C.cYellow + C.Bold + "Right-Click" + C.cWhite + C.Bold + " - " + C.cGreen + C.Bold + "Static Laser",
new String[]{
ChatColor.RESET + "Charge up static electricity in your",
ChatColor.RESET + "wooly coat, and then unleash it upon",

View File

@ -46,7 +46,7 @@ public class PerkTargetLazer extends SmashPerk
public PerkTargetLazer()
{
super("Target Lazer", new String[] { C.cYellow + "Right-Click" + C.cGray + " with Pickaxe to use " + C.cGreen + "Target Lazer" });
super("Target Laser", new String[] { C.cYellow + "Right-Click" + C.cGray + " with Pickaxe to use " + C.cGreen + "Target Laser" });
}
@EventHandler

View File

@ -45,7 +45,7 @@ public class PerkWhirlpoolBlade extends Perk implements IThrown
public PerkWhirlpoolBlade()
{
super("Whirlpool Axe", new String[] { C.cYellow + "Right-Click" + C.cGray + " with Axe to use " + C.cGreen + "Whirlpool Blade" });
super("Whirlpool Axe", new String[] { C.cYellow + "Right-Click" + C.cGray + " with Axe to use " + C.cGreen + "Whirlpool Axe" });
}
@EventHandler

View File

@ -56,7 +56,7 @@ public class PerkLazer extends Perk
public PerkLazer(double range, long recharge)
{
super("Static Lazer", new String[] { C.cYellow + "Hold Block" + C.cGray + " with Sword to use " + C.cGreen + "Static Lazer" });
super("Static Laser", new String[] { C.cYellow + "Hold Block" + C.cGray + " with Sword to use " + C.cGreen + "Static Laser" });
_range = range;
_recharge = recharge;