mirror of
https://github.com/correl/mage.git
synced 2025-01-14 03:00:10 +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."
|
// Whenever a nontoken creature you control leave the battlefied, discard a card."
|
||||||
public AurraSingBaneOfJediEmblem() {
|
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));
|
getAbilities().add(new LeavesBattlefieldAllTriggeredAbility(Zone.COMMAND, new DiscardControllerEffect(1), filter, false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,7 +57,7 @@ import mage.target.common.TargetCreaturePermanent;
|
||||||
public class ObiWanKenobi extends CardImpl {
|
public class ObiWanKenobi extends CardImpl {
|
||||||
|
|
||||||
public ObiWanKenobi(UUID ownerId, CardSetInfo setInfo) {
|
public ObiWanKenobi(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.PLANESWALKER},"{3}{W}{U}");
|
super(ownerId, setInfo, new CardType[]{CardType.PLANESWALKER}, "{3}{W}{U}");
|
||||||
this.subtype.add("Obi-Wan");
|
this.subtype.add("Obi-Wan");
|
||||||
|
|
||||||
this.addAbility(new PlanswalkerEntersWithLoyalityCountersAbility(5));
|
this.addAbility(new PlanswalkerEntersWithLoyalityCountersAbility(5));
|
||||||
|
@ -96,13 +96,14 @@ class ObiWanKenobiEmblem extends Emblem {
|
||||||
|
|
||||||
// Creatures you control get +1/+1 and have vigilance, first strike, and lifelink
|
// Creatures you control get +1/+1 and have vigilance, first strike, and lifelink
|
||||||
public ObiWanKenobiEmblem() {
|
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));
|
Ability ability = new SimpleStaticAbility(Zone.COMMAND, new BoostControlledEffect(1, 1, Duration.EndOfGame));
|
||||||
Effect effect = new GainAbilityControlledEffect(VigilanceAbility.getInstance(), Duration.EndOfGame);
|
Effect effect = new GainAbilityControlledEffect(VigilanceAbility.getInstance(), Duration.EndOfGame);
|
||||||
effect.setText("and have vigilance,");
|
effect.setText("and have vigilance");
|
||||||
ability.addEffect(effect);
|
ability.addEffect(effect);
|
||||||
effect = new GainAbilityControlledEffect(FirstStrikeAbility.getInstance(), Duration.WhileOnBattlefield);
|
effect = new GainAbilityControlledEffect(FirstStrikeAbility.getInstance(), Duration.WhileOnBattlefield);
|
||||||
effect.setText("first strike,");
|
effect.setText(", first strike");
|
||||||
ability.addEffect(effect);
|
ability.addEffect(effect);
|
||||||
effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.WhileOnBattlefield);
|
effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.WhileOnBattlefield);
|
||||||
effect.setText("and lifelink.");
|
effect.setText("and lifelink.");
|
||||||
|
|
|
@ -143,7 +143,7 @@ class YodaEmblem extends Emblem {
|
||||||
|
|
||||||
// You get an emblem with "Hexproof, you and your creatures have."
|
// You get an emblem with "Hexproof, you and your creatures have."
|
||||||
public YodaEmblem() {
|
public YodaEmblem() {
|
||||||
this.setName("Emblem - Yoda");
|
this.setName("Emblem Yoda, Jedi Master");
|
||||||
Effect effect = new GainAbilityControllerEffect(HexproofAbility.getInstance(), Duration.EndOfGame);
|
Effect effect = new GainAbilityControllerEffect(HexproofAbility.getInstance(), Duration.EndOfGame);
|
||||||
effect.setText("Hexproof, you");
|
effect.setText("Hexproof, you");
|
||||||
Ability ability = new SimpleStaticAbility(Zone.COMMAND, effect);
|
Ability ability = new SimpleStaticAbility(Zone.COMMAND, effect);
|
||||||
|
|
Loading…
Reference in a new issue