mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[ACR] Implement Brotherhood Ambushers
This commit is contained in:
parent
b2011bfb80
commit
b98c91b4ba
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/b/BrotherhoodAmbushers.java
Normal file
37
Mage.Sets/src/mage/cards/b/BrotherhoodAmbushers.java
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FreerunningAbility;
|
||||
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 BrotherhoodAmbushers extends CardImpl {
|
||||
|
||||
public BrotherhoodAmbushers(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.ASSASSIN);
|
||||
this.power = new MageInt(6);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Freerunning {3}{B}
|
||||
this.addAbility(new FreerunningAbility("{3}{B}"));
|
||||
}
|
||||
|
||||
private BrotherhoodAmbushers(final BrotherhoodAmbushers card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BrotherhoodAmbushers copy() {
|
||||
return new BrotherhoodAmbushers(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -28,6 +28,7 @@ public final class AssassinsCreed extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Basim Ibn Ishaq", 49, Rarity.RARE, mage.cards.b.BasimIbnIshaq.class));
|
||||
cards.add(new SetCardInfo("Bayek of Siwa", 50, Rarity.RARE, mage.cards.b.BayekOfSiwa.class));
|
||||
cards.add(new SetCardInfo("Black Market Connections", 87, Rarity.RARE, mage.cards.b.BlackMarketConnections.class));
|
||||
cards.add(new SetCardInfo("Brotherhood Ambushers", 285, Rarity.UNCOMMON, mage.cards.b.BrotherhoodAmbushers.class));
|
||||
cards.add(new SetCardInfo("Cathartic Reunion", 94, Rarity.UNCOMMON, mage.cards.c.CatharticReunion.class));
|
||||
cards.add(new SetCardInfo("Chain Assassination", 23, Rarity.UNCOMMON, mage.cards.c.ChainAssassination.class));
|
||||
cards.add(new SetCardInfo("Cleopatra, Exiled Pharaoh", 52, Rarity.MYTHIC, mage.cards.c.CleopatraExiledPharaoh.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue