[THS] Added Reaper of the Wilds and Spellheard Chimera.

This commit is contained in:
LevelX2 2013-09-13 08:37:49 +02:00
parent 12b8fc03a5
commit dbedca4eb8
5 changed files with 209 additions and 6 deletions

View file

@ -84,10 +84,12 @@ public class SetPowerToughnessSourceEffect extends ContinuousEffectImpl<SetPower
return true;
}
else {
if (power != Integer.MIN_VALUE)
if (power != Integer.MIN_VALUE) {
target.getPower().setValue(power);
if (toughness != Integer.MIN_VALUE)
}
if (toughness != Integer.MIN_VALUE) {
target.getToughness().setValue(toughness);
}
}
}
return false;

View file

@ -402,7 +402,9 @@ public class CardUtil {
if (text != null) {
uniqueString.append(text);
}
uniqueString.append(cardId).append(card.getZoneChangeCounter());
uniqueString.append(card.getZoneChangeCounter());
} else {
uniqueString.append(cardId);
}
return uniqueString.toString();
}