blob: 247d6726e76e5fed36cd6db55cc34e94adadb460 (
plain)
1
2
3
4
5
6
7
|
package scalevalapokalypsi.Model
import scalevalapokalypsi.Model.Entities.Entity
def defaultSingAttack(targetEntity: Entity)(singQuality: Float): String =
targetEntity.takeDamage((singQuality * 30).toInt)
targetEntity.condition
|