Esempio n. 1
0
 public override void use(Hero x, BattleField field)
 {
     field.Output.Text += ("You revived " + x.name() + " back to full health\r\n");
     x.Heal(x.calcPercent(100));
 }
Esempio n. 2
0
 public override void use(Hero x, BattleField field)
 {
     field.Output.Text += ("You healed " + x.name() + " for half their health\r\n");
     x.Heal(x.calcPercent(50));
 }