mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Mana Short text fix
This commit is contained in:
parent
826eb6843e
commit
d83af8be91
1 changed files with 2 additions and 2 deletions
|
|
@ -47,7 +47,7 @@ public class ManaShort extends CardImpl {
|
||||||
public ManaShort(UUID ownerId, CardSetInfo setInfo) {
|
public ManaShort(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{2}{U}");
|
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{2}{U}");
|
||||||
|
|
||||||
// Tap all lands target player controls and empty his or her mana pool.
|
// Tap all lands target player controls and empty their mana pool.
|
||||||
this.getSpellAbility().addEffect(new ManaShortEffect());
|
this.getSpellAbility().addEffect(new ManaShortEffect());
|
||||||
this.getSpellAbility().addTarget(new TargetPlayer());
|
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||||
}
|
}
|
||||||
|
|
@ -66,7 +66,7 @@ class ManaShortEffect extends TapAllTargetPlayerControlsEffect {
|
||||||
|
|
||||||
public ManaShortEffect() {
|
public ManaShortEffect() {
|
||||||
super(new FilterLandPermanent());
|
super(new FilterLandPermanent());
|
||||||
staticText = "Tap all lands target player controls and empty his or her mana pool";
|
staticText = "Tap all lands target player controls and empty their mana pool";
|
||||||
}
|
}
|
||||||
|
|
||||||
public ManaShortEffect(final ManaShortEffect effect) {
|
public ManaShortEffect(final ManaShortEffect effect) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue