diff --git a/Java-Knight/src/main/java/org/project/entity/players/PlayerStats.java b/Java-Knight/src/main/java/org/project/entity/players/PlayerStats.java index f66c795..6a71d5e 100644 --- a/Java-Knight/src/main/java/org/project/entity/players/PlayerStats.java +++ b/Java-Knight/src/main/java/org/project/entity/players/PlayerStats.java @@ -1,4 +1,35 @@ package org.project.entity.players; public class PlayerStats { + + //Mana cost + public final int heavyAttackManaCost; + public final int defendManaCost; + public final int healManaCost; + public final int specialAbilityManaCost; + + //Damages + public final int lightAttackDamage; + public final int heavyAttackDamage; + public final int specialAbilityDamage; + + + public final int maxHP; + public final int maxMP; + + public PlayerStats(int heavyAttackManaCost, int defendManaCost, int healManaCost,int specialAbilityManaCost, + int lightAttackDamage, int heavyAttackDamage, int specialAbilityDamage, int maxHP, int maxMP) { + + this.heavyAttackManaCost = heavyAttackManaCost; + this.defendManaCost = defendManaCost; + this.healManaCost = healManaCost; + this.specialAbilityManaCost = specialAbilityManaCost; + this.lightAttackDamage = lightAttackDamage; + this.heavyAttackDamage = heavyAttackDamage; + this.specialAbilityDamage = specialAbilityDamage; + this.maxHP = maxHP; + this.maxMP = maxMP; + + } + }