mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
* Roiling Waters - Fixed tooltip text.
This commit is contained in:
parent
77a8e3e7a9
commit
81590262f6
2 changed files with 12 additions and 4 deletions
|
|
@ -47,10 +47,10 @@ import mage.target.targetpointer.SecondTargetPointer;
|
|||
*/
|
||||
public class RoilingWaters extends CardImpl {
|
||||
|
||||
private final static FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures your opponents control");
|
||||
private final static FilterCreaturePermanent FILTER = new FilterCreaturePermanent("creatures your opponents control");
|
||||
|
||||
static {
|
||||
filter.add(new ControllerPredicate(TargetController.OPPONENT));
|
||||
FILTER.add(new ControllerPredicate(TargetController.OPPONENT));
|
||||
}
|
||||
|
||||
public RoilingWaters(UUID ownerId) {
|
||||
|
|
@ -59,7 +59,7 @@ public class RoilingWaters extends CardImpl {
|
|||
|
||||
// Return up to two target creatures your opponents control to their owners' hands.
|
||||
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2, filter, false));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 2, FILTER, false));
|
||||
// Target player draws two cards.
|
||||
Effect effect = new DrawCardTargetEffect(2);
|
||||
effect.setTargetPointer(new SecondTargetPointer());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue