Exemple #1
0
 public void ExecHolyBreath(Character player, List <Character> target_list)
 {
     Debug.Log(MethodBase.GetCurrentMethod());
     for (int ii = 0; ii < target_list.Count; ii++)
     {
         double healValue = PrimaryLogic.MagicAttack(player, PrimaryLogic.ValueType.Random) * SecondaryLogic.HolyBreath(player);
         AbstractHealCommand(player, target_list[ii], healValue);
     }
 }