Exemplo n.º 1
0
 public Spell(final Spell<T> spell) {
   this.id = spell.id;
   for (SpellAbility spellAbility : spell.spellAbilities) {
     this.spellAbilities.add(spellAbility.copy());
   }
   for (Card spellCard : spell.spellCards) {
     this.spellCards.add(spellCard.copy());
   }
   if (spell.spellAbilities.get(0).equals(spell.ability)) {
     this.ability = spellAbilities.get(0);
   } else {
     this.ability = spell.ability.copy();
   }
   if (spell.spellCards.get(0).equals(spell.card)) {
     this.card = spellCards.get(0);
   } else {
     this.card = spell.card.copy();
   }
   this.controllerId = spell.controllerId;
   this.fromZone = spell.fromZone;
   this.copiedSpell = spell.copiedSpell;
 }