Fireball Skills
class FireballSkills(val code: String, val name: String, val description: String, val skillsType: SkillsType, val target: TargetType, val cooldown: Int, calculate: (atk: Long) -> Int = { atk -> (atk * 1.5f).roundToInt() }) : Skills
Constructors
Link copied to clipboard
constructor(code: String, name: String, description: String, skillsType: SkillsType, target: TargetType, cooldown: Int, calculate: (atk: Long) -> Int = { atk -> (atk * 1.5f).roundToInt() })