mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Springleaf Drum, Dragonskull Summit fixed tooltip text.
This commit is contained in:
parent
f58cc7fc39
commit
db242b7682
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class SpringleafDrum extends CardImpl<SpringleafDrum> {
|
||||
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped creature");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped creature you control");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
@ -61,7 +61,7 @@ public class DragonskullSummit extends CardImpl<DragonskullSummit> {
|
|||
this.expansionSetCode = "M10";
|
||||
|
||||
Condition controls = new InvertCondition(new ControlsPermanentCondition(filter, ControlsPermanentCondition.CountType.MORE_THAN, 0));
|
||||
String abilityText = "tap it unless you control a Swamp or a Mountain";
|
||||
String abilityText = "tapped unless you control a Swamp or a Mountain";
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
|
||||
this.addAbility(new BlackManaAbility());
|
||||
this.addAbility(new RedManaAbility());
|
||||
|
|
Loading…
Reference in a new issue