public void AbilityThreeRogue(Hero hero, Enemy enemy)
 {
     HeroTurn.attacktext = "-You throw a magical smoke bomb. The " + enemy.name + " can't hit you.";
     HeroTurn.outcome = "Blue";
     HeroTurn.heroevasion = 100;
 }
Example #2
0
 public static void Start(Hero hero)
 {
     mapnumber++;
     MapGenerator.MapGenController();
     MapStart(hero);
 }