mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
Some minor changes.
This commit is contained in:
parent
ff3d262a9b
commit
dfe1e2ef5a
4 changed files with 18 additions and 9 deletions
|
|
@ -48,7 +48,7 @@ import mage.game.permanent.token.ElfToken;
|
|||
* @author fireshoes
|
||||
*/
|
||||
public class DwynensElite extends CardImpl {
|
||||
|
||||
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("another Elf");
|
||||
|
||||
static {
|
||||
|
|
@ -69,7 +69,7 @@ public class DwynensElite extends CardImpl {
|
|||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
triggeredAbility,
|
||||
new PermanentsOnTheBattlefieldCondition(filter, CountType.MORE_THAN, 0),
|
||||
"When {this} enters the battlefield, if you control another Elf, put a 1/1 green Elf Warrior creature token onto the battlefield"));
|
||||
"When {this} enters the battlefield, if you control another Elf, put a 1/1 green Elf Warrior creature token onto the battlefield."));
|
||||
}
|
||||
|
||||
public DwynensElite(final DwynensElite card) {
|
||||
|
|
|
|||
|
|
@ -45,13 +45,13 @@ import mage.filter.predicate.mageobject.AbilityPredicate;
|
|||
* @author LevelX2
|
||||
*/
|
||||
public class SeismicElemental extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Creatures without flying");
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures without flying");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new AbilityPredicate(FlyingAbility.class)));
|
||||
}
|
||||
|
||||
|
||||
public SeismicElemental(UUID ownerId) {
|
||||
super(ownerId, 161, "Seismic Elemental", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{R}{R}");
|
||||
this.expansionSetCode = "ORI";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue