mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
fix Adipose Offspring
This commit is contained in:
parent
46cd9954b3
commit
678d361877
1 changed files with 5 additions and 4 deletions
|
|
@ -3,7 +3,7 @@ package mage.cards.a;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.MageObjectReference;
|
import mage.MageObjectReference;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.common.EntersBattlefieldAbility;
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||||
import mage.abilities.dynamicvalue.DynamicValue;
|
import mage.abilities.dynamicvalue.DynamicValue;
|
||||||
import mage.abilities.effects.Effect;
|
import mage.abilities.effects.Effect;
|
||||||
import mage.abilities.effects.common.CreateTokenEffect;
|
import mage.abilities.effects.common.CreateTokenEffect;
|
||||||
|
|
@ -34,9 +34,10 @@ public final class AdiposeOffspring extends CardImpl {
|
||||||
|
|
||||||
// Emerge {5}{W}
|
// Emerge {5}{W}
|
||||||
this.addAbility(new EmergeAbility(this, "{5}{W}"));
|
this.addAbility(new EmergeAbility(this, "{5}{W}"));
|
||||||
|
|
||||||
// When Adipose Offspring enters the battlefield, create a 2/2 white Alien creature token. If Adipose Offspring's emerge cost was paid, instead create X of those tokens, where X is the sacrificed creature's toughness.
|
// When Adipose Offspring enters the battlefield, create a 2/2 white Alien creature token. If Adipose Offspring's emerge cost was paid, instead create X of those tokens, where X is the sacrificed creature's toughness.
|
||||||
this.addAbility(new EntersBattlefieldAbility(new CreateTokenEffect(new AlienToken(), AdiposeOffspringValue.instance)
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new AlienToken(), AdiposeOffspringValue.instance)
|
||||||
.setText("create a 2/2 white Alien creature token. If Adipose Offspring's emerge cost was paid, "
|
.setText("create a 2/2 white Alien creature token. If {this}'s emerge cost was paid, "
|
||||||
+ "instead create X of those tokens, where X is the sacrificed creature's toughness.")));
|
+ "instead create X of those tokens, where X is the sacrificed creature's toughness.")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue