mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[M15] Changes to tooltip text.
This commit is contained in:
parent
1551c111f2
commit
2fcf655994
2 changed files with 9 additions and 5 deletions
|
@ -68,18 +68,19 @@ public class AvariceAmulet extends CardImpl {
|
|||
// Equipped creature gets +2/+0
|
||||
Effect effect = new BoostEquippedEffect(2, 0);
|
||||
effect.setText("Equipped creature gets +2/+0");
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
|
||||
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
|
||||
// and has vigilance
|
||||
effect = new GainAbilityAttachedEffect(VigilanceAbility.getInstance(), AttachmentType.EQUIPMENT);
|
||||
effect.setText("and has vigilance");
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
|
||||
ability.addEffect(effect);
|
||||
//and "At the beginning of your upkeep, draw a card."
|
||||
effect = new GainAbilityAttachedEffect(new BeginningOfUpkeepTriggeredAbility(new DrawCardSourceControllerEffect(1), TargetController.YOU, false), AttachmentType.EQUIPMENT);
|
||||
effect.setText("and \"At the beginning of your upkeep, draw a card.\"");
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
|
||||
ability.addEffect(effect);
|
||||
this.addAbility(ability);
|
||||
|
||||
// When equipped creature dies, target opponent gains control of Avarice Amulet.
|
||||
Ability ability = new DiesAttachedTriggeredAbility(new AvariceAmuletChangeControlEffect(), "equipped creature", false);
|
||||
ability = new DiesAttachedTriggeredAbility(new AvariceAmuletChangeControlEffect(), "equipped creature", false);
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@ import mage.MageInt;
|
|||
import mage.abilities.common.AuraAttachedTriggeredAbility;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.continious.BoostSourceEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
|
@ -60,7 +61,9 @@ public class BroodKeeper extends CardImpl {
|
|||
|
||||
// Whenever an Aura becomes attached to Brood Keeper, put a 2/2 red Dragon creature token with flying onto the battlefield.
|
||||
// It has "{R}: This creature gets +1/+0 until end of turn."
|
||||
this.addAbility(new AuraAttachedTriggeredAbility(new CreateTokenEffect(new BroodKeeperDragonToken()), false));
|
||||
Effect effect = new CreateTokenEffect(new BroodKeeperDragonToken());
|
||||
effect.setText("put a 2/2 red Dragon creature token with flying onto the battlefield. It has \"{R}: This creature gets +1/+0 until end of turn.\"");
|
||||
this.addAbility(new AuraAttachedTriggeredAbility(effect, false));
|
||||
}
|
||||
|
||||
public BroodKeeper(final BroodKeeper card) {
|
||||
|
|
Loading…
Reference in a new issue