mirror of
https://github.com/correl/mage.git
synced 2025-03-29 17:00:07 -09:00
Fixed abilities texts
This commit is contained in:
parent
26913923fa
commit
3fc1660f75
2 changed files with 7 additions and 4 deletions
Mage.Sets/src/mage/cards
|
@ -31,7 +31,12 @@ public final class AngelsTomb extends CardImpl {
|
|||
.withAbility(FlyingAbility.getInstance()),
|
||||
"", Duration.EndOfTurn)
|
||||
.setText("have {this} become a 3/3 white Angel artifact creature with flying until end of turn");
|
||||
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(Zone.BATTLEFIELD, effect, StaticFilters.FILTER_PERMANENT_CREATURE, true));
|
||||
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(
|
||||
Zone.BATTLEFIELD,
|
||||
effect,
|
||||
StaticFilters.FILTER_PERMANENT_CREATURE_A,
|
||||
true)
|
||||
);
|
||||
}
|
||||
|
||||
public AngelsTomb(final AngelsTomb card) {
|
||||
|
|
|
@ -22,7 +22,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public final class SosukesSummons extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("nontoken Snake");
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("a nontoken Snake");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate(SubType.SNAKE));
|
||||
|
@ -43,8 +43,6 @@ public final class SosukesSummons extends CardImpl {
|
|||
filter,
|
||||
true)
|
||||
);
|
||||
|
||||
|
||||
}
|
||||
|
||||
public SosukesSummons(final SosukesSummons card) {
|
||||
|
|
Loading…
Add table
Reference in a new issue