Пример #1
0
 protected Spell(string name, PlayerGameState playerGameState, bool usesVariantAmountCost, int minimumValueForVariantMana, IList <ManaSymbol> colorManaSymbols) : base(name, playerGameState)
 {
     Cost = new SpellCost(usesVariantAmountCost, minimumValueForVariantMana, colorManaSymbols);
 }
Пример #2
0
 protected Spell(string name, PlayerGameState playerGameState, int usesVariantAmountCost, IList <ManaSymbol> colorManaSymbols) : base(name, playerGameState)
 {
     Cost = new SpellCost(usesVariantAmountCost, colorManaSymbols);
 }