mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
API call for changeling on Kaseto
This commit is contained in:
parent
074dccf12d
commit
af533fb0bc
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class KasetoEffect extends OneShotEffect {
|
|||
Permanent permanent = game.getPermanent(getTargetPointer().getFirst(game, source));
|
||||
if (permanent != null) {
|
||||
game.addEffect(new CantBeBlockedTargetEffect(Duration.EndOfTurn), source);
|
||||
if (permanent.getSubtype(game).contains("Snake") || permanent.hasAbility(ChangelingAbility.getInstance().getId(), game)) {
|
||||
if (permanent.hasSubtype("Snake", game)) {
|
||||
game.addEffect(new BoostTargetEffect(2, 2, Duration.EndOfTurn), source);
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue