mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
images: fixed miss emblems download of Star Wars' Yoda and Aurra Sing;
This commit is contained in:
parent
2b34c1474f
commit
925ef86c22
5 changed files with 7 additions and 5 deletions
|
|
@ -478,8 +478,8 @@ public enum GrabbagImageSource implements CardImageSource {
|
||||||
|
|
||||||
// Emblems
|
// Emblems
|
||||||
singleLinks.put("SWS/Emblem Obi-Wan Kenobi", "Qyc10aT.png");
|
singleLinks.put("SWS/Emblem Obi-Wan Kenobi", "Qyc10aT.png");
|
||||||
singleLinks.put("SWS/Aurra Sing", "BLWbVJC.png");
|
singleLinks.put("SWS/Emblem Aurra Sing", "BLWbVJC.png");
|
||||||
singleLinks.put("SWS/Yoda", "zH0sYxg.png");
|
singleLinks.put("SWS/Emblem Yoda", "zH0sYxg.png");
|
||||||
singleLinks.put("SWS/Emblem Luke Skywalker", "kHELZDJ.jpeg");
|
singleLinks.put("SWS/Emblem Luke Skywalker", "kHELZDJ.jpeg");
|
||||||
|
|
||||||
// Tokens
|
// Tokens
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ public final class AurraSingBaneOfJedi extends CardImpl {
|
||||||
ability.addTarget(new TargetCreaturePermanent());
|
ability.addTarget(new TargetCreaturePermanent());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
// -4: Target player gets an emblem wiht "Whenever a nontoken creature you control leave the battlefied, discard a card.".
|
// -4: Target player gets an emblem with "Whenever a nontoken creature you control leave the battlefied, discard a card.".
|
||||||
ability = new LoyaltyAbility(new GetEmblemTargetPlayerEffect(new AurraSingBaneOfJediEmblem()), -4);
|
ability = new LoyaltyAbility(new GetEmblemTargetPlayerEffect(new AurraSingBaneOfJediEmblem()), -4);
|
||||||
ability.addTarget(new TargetPlayer());
|
ability.addTarget(new TargetPlayer());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ public final class AurraSingBaneOfJediEmblem extends Emblem {
|
||||||
|
|
||||||
// Whenever a nontoken creature you control leaves the battlefied, discard a card.
|
// Whenever a nontoken creature you control leaves the battlefied, discard a card.
|
||||||
public AurraSingBaneOfJediEmblem() {
|
public AurraSingBaneOfJediEmblem() {
|
||||||
super("Emblem Aurra Sing, Bane of Jedi");
|
super("Emblem Aurra Sing");
|
||||||
getAbilities().add(new LeavesBattlefieldAllTriggeredAbility(Zone.COMMAND, new DiscardControllerEffect(1), StaticFilters.FILTER_CONTROLLED_CREATURE_NON_TOKEN, false));
|
getAbilities().add(new LeavesBattlefieldAllTriggeredAbility(Zone.COMMAND, new DiscardControllerEffect(1), StaticFilters.FILTER_CONTROLLED_CREATURE_NON_TOKEN, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ public final 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() {
|
||||||
super("Emblem Yoda, Jedi Master");
|
super("Emblem Yoda");
|
||||||
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);
|
||||||
|
|
|
||||||
|
|
@ -73,6 +73,8 @@
|
||||||
|Generate|EMBLEM:MD1|Emblem Elspeth|||ElspethKnightErrantEmblem|
|
|Generate|EMBLEM:MD1|Emblem Elspeth|||ElspethKnightErrantEmblem|
|
||||||
|Generate|EMBLEM:SWS|Emblem Obi-Wan Kenobi|||ObiWanKenobiEmblem|
|
|Generate|EMBLEM:SWS|Emblem Obi-Wan Kenobi|||ObiWanKenobiEmblem|
|
||||||
|Generate|EMBLEM:SWS|Emblem Luke Skywalker|||LukeSkywalkerEmblem|
|
|Generate|EMBLEM:SWS|Emblem Luke Skywalker|||LukeSkywalkerEmblem|
|
||||||
|
|Generate|EMBLEM:SWS|Emblem Yoda|||YodaEmblem|
|
||||||
|
|Generate|EMBLEM:SWS|Emblem Aurra Sing|||AurraSingBaneOfJediEmblem|
|
||||||
|Generate|EMBLEM:RIX|Emblem Huatli|||HuatliRadiantChampionEmblem|
|
|Generate|EMBLEM:RIX|Emblem Huatli|||HuatliRadiantChampionEmblem|
|
||||||
|Generate|EMBLEM:RNA|Emblem Domri|||DomriChaosBringerEmblem|
|
|Generate|EMBLEM:RNA|Emblem Domri|||DomriChaosBringerEmblem|
|
||||||
|Generate|EMBLEM:WAR|Emblem Nissa|||NissaWhoShakesTheWorldEmblem|
|
|Generate|EMBLEM:WAR|Emblem Nissa|||NissaWhoShakesTheWorldEmblem|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue