mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Some changes for text generation.
This commit is contained in:
parent
f18337557c
commit
4787e79f30
6 changed files with 6 additions and 6 deletions
|
@ -49,7 +49,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class SoratamiCloudskater extends CardImpl<SoratamiCloudskater> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent();
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
|
||||
public SoratamiCloudskater(UUID ownerId) {
|
||||
super(ownerId, 86, "Soratami Cloudskater", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||
|
|
|
@ -53,7 +53,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class SoratamiMirrorGuard extends CardImpl<SoratamiMirrorGuard> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent();
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
private final static FilterCreaturePermanent filterCreature = new FilterCreaturePermanent("creature with power 2 or less");
|
||||
|
||||
static {
|
||||
|
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*/
|
||||
public class SoratamiMirrorMage extends CardImpl<SoratamiMirrorMage> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("lands you control");
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("lands");
|
||||
|
||||
public SoratamiMirrorMage(UUID ownerId) {
|
||||
super(ownerId, 88, "Soratami Mirror-Mage", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
|
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class SoratamiSavant extends CardImpl<SoratamiSavant> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent();
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("a land");
|
||||
|
||||
public SoratamiSavant(UUID ownerId) {
|
||||
super(ownerId, 90, "Soratami Savant", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{U}{U}");
|
||||
|
|
|
@ -53,7 +53,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class SoratamiSeer extends CardImpl<SoratamiSeer> {
|
||||
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("lands you control");
|
||||
private final static FilterControlledPermanent filter = new FilterControlledLandPermanent("lands");
|
||||
|
||||
public SoratamiSeer(UUID ownerId) {
|
||||
super(ownerId, 91, "Soratami Seer", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{4}{U}");
|
||||
|
|
|
@ -72,7 +72,7 @@ public class UyoSilentProphet extends CardImpl<UyoSilentProphet> {
|
|||
this.toughness = new MageInt(4);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new CopyTargetSpellEffect(), new GenericManaCost(2));
|
||||
ability.addCost(new ReturnToHandTargetCost(new TargetControlledPermanent(2, 2, new FilterLandPermanent(), false)));
|
||||
ability.addCost(new ReturnToHandTargetCost(new TargetControlledPermanent(2, 2, new FilterLandPermanent("lands"), false)));
|
||||
ability.addTarget(new TargetSpell(filter));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue