mirror of
https://github.com/correl/mage.git
synced 2025-01-14 03:00:10 +00:00
[CLB] Implemented Wyrm's Crossing Patrol
This commit is contained in:
parent
3f901581f3
commit
56eb8d1a14
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/w/WyrmsCrossingPatrol.java
Normal file
37
Mage.Sets/src/mage/cards/w/WyrmsCrossingPatrol.java
Normal file
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.w;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.MyriadAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class WyrmsCrossingPatrol extends CardImpl {
|
||||
|
||||
public WyrmsCrossingPatrol(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.SOLDIER);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Myriad
|
||||
this.addAbility(new MyriadAbility());
|
||||
}
|
||||
|
||||
private WyrmsCrossingPatrol(final WyrmsCrossingPatrol card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public WyrmsCrossingPatrol copy() {
|
||||
return new WyrmsCrossingPatrol(this);
|
||||
}
|
||||
}
|
|
@ -249,6 +249,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("White Plume Adventurer", 49, Rarity.RARE, mage.cards.w.WhitePlumeAdventurer.class));
|
||||
cards.add(new SetCardInfo("Wilson, Refined Grizzly", 261, Rarity.UNCOMMON, mage.cards.w.WilsonRefinedGrizzly.class));
|
||||
cards.add(new SetCardInfo("Wyll, Blade of Frontiers", 208, Rarity.RARE, mage.cards.w.WyllBladeOfFrontiers.class));
|
||||
cards.add(new SetCardInfo("Wyrm's Crossing Patrol", 51, Rarity.COMMON, mage.cards.w.WyrmsCrossingPatrol.class));
|
||||
cards.add(new SetCardInfo("You Meet in a Tavern", 263, Rarity.COMMON, mage.cards.y.YouMeetInATavern.class));
|
||||
cards.add(new SetCardInfo("You're Confronted by Robbers", 53, Rarity.COMMON, mage.cards.y.YoureConfrontedByRobbers.class));
|
||||
cards.add(new SetCardInfo("Young Blue Dragon", 106, Rarity.COMMON, mage.cards.y.YoungBlueDragon.class));
|
||||
|
|
Loading…
Reference in a new issue