Beispiel #1
0
 private bool 融合()
 {
     if (Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.电子龙) + Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.原始电子龙) + Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.电子龙三型) + Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.电子龙三型) + Bot.GetCountCardInZone(Bot.Hand, (int)CardId.电子龙) >= 3)
     {
         AI.SelectCard((int)CardId.电子终结龙);
     }
     else
     {
         AI.SelectCard((int)CardId.电子双生龙);
     }
     return(true);
 }
Beispiel #2
0
 private bool Polymeration()
 {
     if (Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.CyberDragon) + Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.CyberDragonProto) + Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.CyberDragonDrei) + Bot.GetCountCardInZone(Bot.MonsterZone, (int)CardId.CyberDragonDrei) + Bot.GetCountCardInZone(Bot.Hand, (int)CardId.CyberDragon) >= 3)
     {
         AI.SelectCard((int)CardId.CyberDragonUltime);
     }
     else
     {
         AI.SelectCard((int)CardId.CyberDragonJumele);
     }
     return(true);
 }