mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
Minor fixes, changes
This commit is contained in:
parent
790a966b4c
commit
6619c21d6b
4 changed files with 3 additions and 4 deletions
|
@ -44,7 +44,7 @@ import mage.game.permanent.token.Token;
|
|||
*/
|
||||
public class FlurryOfWings extends CardImpl<FlurryOfWings> {
|
||||
|
||||
private static final FilterAttackingCreature filter = new FilterAttackingCreature("attacking creatures");
|
||||
private static final FilterAttackingCreature filter = new FilterAttackingCreature("the number of attacking creatures");
|
||||
|
||||
public FlurryOfWings(UUID ownerId) {
|
||||
super(ownerId, 127, "Flurry of Wings", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{G}{W}{U}");
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
package mage.sets.championsofkamigawa;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
|
|
|
@ -59,7 +59,7 @@ public class MarrowGnawer extends CardImpl<MarrowGnawer> {
|
|||
|
||||
private static final FilterCreaturePermanent filterFear = new FilterCreaturePermanent("Rat creatures");
|
||||
private static final FilterControlledCreaturePermanent filterSacrifice = new FilterControlledCreaturePermanent("a Rat");
|
||||
private static final FilterControlledCreaturePermanent filter3 = new FilterControlledCreaturePermanent("Rats you control");
|
||||
private static final FilterControlledCreaturePermanent filter3 = new FilterControlledCreaturePermanent("the number of Rats you control");
|
||||
|
||||
{
|
||||
SubtypePredicate ratPredicate = new SubtypePredicate("Rat");
|
||||
|
|
|
@ -47,7 +47,7 @@ import mage.game.permanent.token.GoblinToken;
|
|||
*/
|
||||
public class KrenkoMobBoss extends CardImpl<KrenkoMobBoss> {
|
||||
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("Goblin you control");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("the number of Goblins you control");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Goblin"));
|
||||
|
|
Loading…
Add table
Reference in a new issue