mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
fix reminder text
This commit is contained in:
parent
c2d2088026
commit
2b53ff9895
2 changed files with 4 additions and 4 deletions
|
|
@ -44,7 +44,7 @@ public final class ShadowPuppeteers extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// When Shadow Puppeteers enters the battlefield, create two 1/1 black Faerie Rogue creature tokens with flying.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new FaerieRogueToken(), 2)));
|
||||
|
|
@ -114,4 +114,4 @@ class ShadowPuppeteersContinousEffect extends ContinuousEffectImpl {
|
|||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public final class WargRider extends CardImpl {
|
||||
|
||||
private final static FilterControlledCreaturePermanent filterOrcAndGoblins =
|
||||
private static final FilterControlledCreaturePermanent filterOrcAndGoblins =
|
||||
new FilterControlledCreaturePermanent("Orcs and Goblins");
|
||||
|
||||
static {
|
||||
|
|
@ -40,7 +40,7 @@ public final class WargRider extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Other Orcs and Goblins you control have menace.
|
||||
this.addAbility(new SimpleStaticAbility(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue