mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Fixed emblem names of Starwars cards.
This commit is contained in:
parent
ad5699f119
commit
07c6aa729d
3 changed files with 285 additions and 284 deletions
|
@ -165,7 +165,7 @@ class AurraSingBaneOfJediEmblem extends Emblem {
|
|||
|
||||
// Whenever a nontoken creature you control leave the battlefied, discard a card."
|
||||
public AurraSingBaneOfJediEmblem() {
|
||||
this.setName("Emblem - Aurra");
|
||||
this.setName("Emblem Aurra Sing, Bane of Jedi");
|
||||
getAbilities().add(new LeavesBattlefieldAllTriggeredAbility(Zone.COMMAND, new DiscardControllerEffect(1), filter, false));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -96,13 +96,14 @@ class ObiWanKenobiEmblem extends Emblem {
|
|||
|
||||
// Creatures you control get +1/+1 and have vigilance, first strike, and lifelink
|
||||
public ObiWanKenobiEmblem() {
|
||||
this.setName("Emblem - Obi-Wan");
|
||||
this.setName("Emblem Obi-Wan Kenobi");
|
||||
this.setExpansionSetCodeForImage("SWS");
|
||||
Ability ability = new SimpleStaticAbility(Zone.COMMAND, new BoostControlledEffect(1, 1, Duration.EndOfGame));
|
||||
Effect effect = new GainAbilityControlledEffect(VigilanceAbility.getInstance(), Duration.EndOfGame);
|
||||
effect.setText("and have vigilance,");
|
||||
effect.setText("and have vigilance");
|
||||
ability.addEffect(effect);
|
||||
effect = new GainAbilityControlledEffect(FirstStrikeAbility.getInstance(), Duration.WhileOnBattlefield);
|
||||
effect.setText("first strike,");
|
||||
effect.setText(", first strike");
|
||||
ability.addEffect(effect);
|
||||
effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.WhileOnBattlefield);
|
||||
effect.setText("and lifelink.");
|
||||
|
|
|
@ -143,7 +143,7 @@ class YodaEmblem extends Emblem {
|
|||
|
||||
// You get an emblem with "Hexproof, you and your creatures have."
|
||||
public YodaEmblem() {
|
||||
this.setName("Emblem - Yoda");
|
||||
this.setName("Emblem Yoda, Jedi Master");
|
||||
Effect effect = new GainAbilityControllerEffect(HexproofAbility.getInstance(), Duration.EndOfGame);
|
||||
effect.setText("Hexproof, you");
|
||||
Ability ability = new SimpleStaticAbility(Zone.COMMAND, effect);
|
||||
|
|
Loading…
Reference in a new issue