Exemplo n.º 1
0
 public void Dead()
 {
     _avatar.transform.parent.localScale = _originalSize;
     hero.hpMax = _originalHPMax;
     Hate       = 0;
     _icon.transform.localScale = new Vector3(1, 1, 1);
     _icon.transform.Find("IconImage").GetComponent <Image>().color = new Color32(46, 46, 46, 150);
     _battleCon._hero.Remove(this);
     if (_battleCon._hero.ToList().Count == 0)
     {
         _battleCon._waitEndTurn = false;
         _battleCon.OnBattleEnd(false);
     }
     else
     {
         if (_battleCon._monster.ToList().Count == 0)
         {
             _battleCon._waitEndTurn = false;
         }
         else
         {
             Debug.Log("runAI 3");
             _battleCon._heroFocus++;
             _battleCon.RunMonAI();
         }
     }
     _selectATKCon.UpdateAttackSlot();
 }
Exemplo n.º 2
0
 public bool Revive(HeroStore hero)
 {
     Run();
     if (hero.hp == 0)
     {
         hero.hp = 1;
         if (_core._gameMode == _GameStatus.BATTLE)
         {
             int index = 0;
             foreach (Hero h in _battleCon._heroData)
             {
                 if (h.hero.id == hero.id)
                 {
                     h._icon.transform.Find("HPSlider").GetComponent <ControlSlider>().AddFill((float)hero.hp * 1 / hero.hpMax);
                     h.Revive();
                     _battleCon._hero.Add(h);
                     _battleCon._hero = _battleCon._hero.OrderBy(o => o.slotId).ToList();
                     break;
                 }
                 index++;
             }
         }
         foreach (Hero r in _battleCon._hero)
         {
             Debug.Log(r.hero.hero.name + " " + r.slotId);
         }
         _core.OpenTrueNotify("ชุบชีวิตฮีโร่สำเร็จ!");
         _selectATKCon.UpdateAttackSlot();
         return(true);
     }
     else
     {
         _core.OpenErrorNotify("ใช้กับฮีโร่นี้ไม่ได้!");
         return(false);
     }
 }