mirror of
https://github.com/correl/mage.git
synced 2025-04-11 17:00:08 -09:00
fix comment and rename effect
This commit is contained in:
parent
9f2f7673c6
commit
72879c44b9
1 changed files with 4 additions and 4 deletions
|
@ -31,13 +31,13 @@ public class LyraDawnbringer extends CardImpl {
|
|||
addAbility(FirstStrikeAbility.getInstance());
|
||||
addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
// Other Goblin creatures get +1/+1 and have mountainwalk.
|
||||
// Other Angels you control get +1/+1 and have lifelink.
|
||||
Effect effect = new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, AngelFilter, true);
|
||||
effect.setText("Other Angels you control get +1/+1");
|
||||
Ability ability = new SimpleStaticAbility(Zone.BATTLEFIELD, effect);
|
||||
effect = new GainAbilityAllEffect(LifelinkAbility.getInstance(), Duration.WhileOnBattlefield, AngelFilter, true);
|
||||
effect.setText("and have lifelink");
|
||||
ability.addEffect(effect);
|
||||
Effect effect2 = new GainAbilityAllEffect(LifelinkAbility.getInstance(), Duration.WhileOnBattlefield, AngelFilter, true);
|
||||
effect2.setText("and have lifelink");
|
||||
ability.addEffect(effect2);
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue