class HighScore : AbstractRole { override fun activated() { val high = Play.instance.highScore if (high <= 0) { actor.die() } else { actor.textAppearance.text = "High Score : $high" super.activated() } } override fun tick() {} }