Fix incorrect descriptions
This commit is contained in:
parent
23373834a2
commit
e8eb364d99
@ -106,7 +106,7 @@ public class KitHumanPaladin extends KitCastleSiege
|
||||
giveEffect("Resistance II")
|
||||
},
|
||||
{
|
||||
"Take " + C.cGreen + "40%" + C.cWhite + " less damage from attacks",
|
||||
C.cWhite + "Take " + C.cGreen + "40%" + C.cWhite + " less damage from attacks",
|
||||
giveEffect("Health Boost II")
|
||||
}
|
||||
};
|
||||
|
@ -23,7 +23,7 @@ public class KitUndeadSummoner extends KitCastleSiege
|
||||
private static final String[] DESCRIPTION = {
|
||||
"I hope I’m not bugging you.",
|
||||
"",
|
||||
click(false, "your axe to use " + C.cGreen + "Ghoul Leap"),
|
||||
click(false, "your potions to spawn undead mobs to help you fight")
|
||||
};
|
||||
|
||||
private static final String REDUCE_COOLDOWN = reduceCooldown("Undead Potions", 2);
|
||||
|
@ -392,7 +392,7 @@ public abstract class ProgressingKit extends Kit implements ProgressiveKit
|
||||
|
||||
public static String reduceCooldown(String perk, double time)
|
||||
{
|
||||
return C.cWhite + "Reduce the cooldown of " + C.cGreen + perk + C.cWhite + " by " + C.cGreen + time + C.cWhite + " seconds" + (time == 1 ? "" : "s") + ".";
|
||||
return C.cWhite + "Reduce the cooldown of " + C.cGreen + perk + C.cWhite + " by " + C.cGreen + time + C.cWhite + " second" + (time == 1 ? "" : "s") + ".";
|
||||
}
|
||||
|
||||
public static String increaseNumber(String perk, String increasing, double value, String data)
|
||||
|
Loading…
Reference in New Issue
Block a user