Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ebicep committed Jan 28, 2024
2 parents aca430e + 64b58e5 commit 8182162
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ private static void updateMobEquipment(AbstractMob<?> mob, WarlordsPlayer player
public TextComponent getPassiveEffect() {
return Component.text("Every ", NamedTextColor.GRAY)
.append(formatTitleUpgrade(COOLDOWN + COOLDOWN_INCREASE_PER_UPGRADE * getTitleLevel(), "s"))
.append(Component.text(" summon a random assortment of mobs to fight for you. Using Undying Army has additional effect of converting enemy mobs to allies. " +
.append(Component.text(" summon a random assortment of mobs to fight for you. Using Undying Army has an additional effect of converting enemy mobs to allies. " +
"Shift for 1 second to remove all summoned mobs."));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public TextComponent getPassiveEffect() {
.append(formatTitleUpgrade(getEveryHpPercent(), "%"))
.append(Component.text(" of HP under "))
.append(formatTitleUpgrade(getUnderHpCheck(), "%"))
.append(Component.text(", gain an additional 7.5% damage reduction. Maximum 80% Damage Reduction."))
.append(Component.text(", gain an additional 7.5% damage reduction. Maximum 80% damage reduction."))
.append(Component.newline())
.append(Component.newline())
.append(Component.text("If your health is currently higher than 80% and you will die from the next source of damage, your " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void run() {
public TextComponent getPassiveEffect() {
return Component.text("Play an among us sound and gain ", NamedTextColor.GRAY)
.append(formatTitleUpgrade(ENERGY_GAIN + ENERGY_GAIN_PER_UPGRADE * getTitleLevel()))
.append(Component.text(" energy whenever you land a melee crit."));
.append(Component.text(" energy when you land a melee crit."));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ protected float getSkillCritChanceBonusValue() {

@Override
protected float getSkillCritMultiplierBonusValue() {
return 4;
return 10;
}

@Override
Expand All @@ -120,7 +120,7 @@ protected float getCritChanceValue() {

@Override
protected float getCritMultiplierValue() {
return 160;
return 180;
}

@Override
Expand Down

0 comments on commit 8182162

Please sign in to comment.