forked from External/mage
Changed text variable in constructor to abilityText so that it can't be confused with the text member from the parent hierarchy.
This commit is contained in:
parent
7e1f9fbfb7
commit
33da3eed05
5 changed files with 10 additions and 10 deletions
|
|
@ -60,8 +60,8 @@ public class BlackcleaveCliffs extends CardImpl<BlackcleaveCliffs> {
|
|||
this.expansionSetCode = "SOM";
|
||||
|
||||
Condition controls = new Controls(filter, Controls.CountType.FEWER_THAN, 3);
|
||||
String text = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, text), text));
|
||||
String abilityText = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
|
||||
this.addAbility(new BlackManaAbility());
|
||||
this.addAbility(new RedManaAbility());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,8 +60,8 @@ public class CopperlineGorge extends CardImpl<CopperlineGorge> {
|
|||
this.expansionSetCode = "SOM";
|
||||
|
||||
Condition controls = new Controls(filter, Controls.CountType.FEWER_THAN, 3);
|
||||
String text = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, text), text));
|
||||
String abilityText = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
|
||||
this.addAbility(new RedManaAbility());
|
||||
this.addAbility(new GreenManaAbility());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,8 +60,8 @@ public class DarkslickShores extends CardImpl<DarkslickShores> {
|
|||
this.expansionSetCode = "SOM";
|
||||
|
||||
Condition controls = new Controls(filter, Controls.CountType.FEWER_THAN, 3);
|
||||
String text = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, text), text));
|
||||
String abilityText = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
|
||||
this.addAbility(new BlueManaAbility());
|
||||
this.addAbility(new BlackManaAbility());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,8 +60,8 @@ public class RazorvergeThicket extends CardImpl<RazorvergeThicket> {
|
|||
this.expansionSetCode = "SOM";
|
||||
|
||||
Condition controls = new Controls(filter, Controls.CountType.FEWER_THAN, 3);
|
||||
String text = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, text), text));
|
||||
String abilityText = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
|
||||
this.addAbility(new GreenManaAbility());
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,8 +60,8 @@ public class SeachromeCoast extends CardImpl<SeachromeCoast> {
|
|||
this.expansionSetCode = "SOM";
|
||||
|
||||
Condition controls = new Controls(filter, Controls.CountType.FEWER_THAN, 3);
|
||||
String text = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, text), text));
|
||||
String abilityText = "tap it unless you control fewer than 3 " + filter.getMessage();
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(new TapSourceEffect(), controls, abilityText), abilityText));
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
this.addAbility(new BlueManaAbility());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue