diff --git a/Mage.Sets/src/mage/cards/b/BrotherhoodAmbushers.java b/Mage.Sets/src/mage/cards/b/BrotherhoodAmbushers.java new file mode 100644 index 00000000000..8dca5a372eb --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BrotherhoodAmbushers.java @@ -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); + } +} diff --git a/Mage.Sets/src/mage/sets/AssassinsCreed.java b/Mage.Sets/src/mage/sets/AssassinsCreed.java index f13a12dbaf1..41ff88d3631 100644 --- a/Mage.Sets/src/mage/sets/AssassinsCreed.java +++ b/Mage.Sets/src/mage/sets/AssassinsCreed.java @@ -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));