mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[THS] Added Reaper of the Wilds and Spellheard Chimera.
This commit is contained in:
parent
12b8fc03a5
commit
dbedca4eb8
5 changed files with 209 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue