Ejemplo n.º 1
0
 public DuelistBuilder InitialDuelistState(string duelistId)
 {
     id        = duelistId;
     manaSlots = 0;
     mana      = 0;
     deck      = DeckBuilder.CompletedDeck();
     hand      = EmptyHand();
     health    = 30;
     return(this);
 }