Reduce Mage class default damage from 5 to 3.

This commit is contained in:
Teriuihi 2025-03-01 00:26:28 +01:00
parent b5c59cf173
commit 18b211f681

View File

@ -26,7 +26,7 @@ public class MageCreator {
@Contract("_ -> new")
public static @NotNull GameClass createMage(@NotNull TeamColor teamColor) {
return new Mage(getArmor(), getTools(teamColor), getDisplayItem(teamColor),
20, 100, 5);
20, 100, 3);
}
@Contract(value = " -> new", pure = true)