public void Turn() { random = Random.Range(1, 11); if (random >= 2 && !player.isSag) { Attack(); } else if (random <= 1) { mt.EnemyMissText(); } else if (player.isSag) { mt.EnemySagText(); } }