forked from External/mage
Refactor: Add proper support for modifying and querying base P/T (#9409)
This commit is contained in:
parent
d83eb41073
commit
07a142c9e8
415 changed files with 1844 additions and 2095 deletions
|
|
@ -41,9 +41,9 @@ public class CopyTokenEffect extends ContinuousEffectImpl {
|
|||
for (Ability ability : token.getAbilities()) {
|
||||
permanent.addAbility(ability, source.getSourceId(), game);
|
||||
}
|
||||
permanent.getPower().setValue(token.getPower().getValue());
|
||||
permanent.getToughness().setValue(token.getToughness().getValue());
|
||||
//permanent.getLoyalty().setValue(card.getLoyalty().getValue());
|
||||
permanent.getPower().setModifiedBaseValue(token.getPower().getModifiedBaseValue());
|
||||
permanent.getToughness().setModifiedBaseValue(token.getToughness().getModifiedBaseValue());
|
||||
//permanent.getLoyalty().setBoostedValue(card.getLoyalty().getValue());
|
||||
|
||||
return true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue