forked from External/mage
Implement 6 cmc pws (except Teferi) and rin (#6611)
[M21] Implement 6 cmc pws (except Teferi) and rin
This commit is contained in:
parent
d1da9ad843
commit
a897df7c79
16 changed files with 681 additions and 134 deletions
|
|
@ -28,10 +28,14 @@ public class CastFromHandWithoutPayingManaCostEffect extends ContinuousEffectImp
|
|||
}
|
||||
|
||||
public CastFromHandWithoutPayingManaCostEffect(FilterCard filter, boolean fromHand) {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Detriment);
|
||||
this(filter, fromHand, Duration.WhileOnBattlefield);
|
||||
}
|
||||
|
||||
public CastFromHandWithoutPayingManaCostEffect(FilterCard filter, boolean fromHand, Duration duration) {
|
||||
super(duration, Outcome.Detriment);
|
||||
this.filter = filter;
|
||||
this.fromHand = fromHand;
|
||||
staticText = "You may cast " + filter.getMessage()
|
||||
this.staticText = "You may cast " + filter.getMessage()
|
||||
+ (fromHand ? " from your hand" : "")
|
||||
+ " without paying their mana costs";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue