Exemplo n.º 1
0
 public Persona()
 {
     CardName = "Test";
     freeCard = new Spell();
     arcana   = Manager.Arcana.fool;
     SP       = HP = HPLeft = ATK = 0;
     weakness = new List <Manager.Types>();
 }
Exemplo n.º 2
0
 public Persona(string name, Spell freeCard, Manager.Arcana arcana, int sp, int hp, int atk, List <Manager.Types> weakness)
 {
     this.CardName = name;
     this.freeCard = freeCard;
     this.arcana   = arcana;
     this.SP       = sp;
     this.HP       = hp;
     HPLeft        = hp;
     this.ATK      = atk;
     this.weakness = weakness;
 }
Exemplo n.º 3
0
 public Deck(List <Card> cards, string name, Manager.Arcana arcana)
 {
     this.cards      = cards.OrderBy(a => Guid.NewGuid()).ToList();
     deckname        = name;
     arcana_dominant = arcana;
 }
Exemplo n.º 4
0
 public Deck()
 {
     cards           = new List <Card>();
     deckname        = "test";
     arcana_dominant = Manager.Arcana.fool;
 }