mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
[ACR] Implement Brotherhood Patriarch
This commit is contained in:
parent
14b868c1c9
commit
ecd11cb8a3
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/b/BrotherhoodPatriarch.java
Normal file
42
Mage.Sets/src/mage/cards/b/BrotherhoodPatriarch.java
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DiesSourceTriggeredAbility;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.LoseLifeOpponentsEffect;
|
||||
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 BrotherhoodPatriarch extends CardImpl {
|
||||
|
||||
public BrotherhoodPatriarch(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.ASSASSIN);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// When Brotherhood Patriarch dies, each opponent loses 2 life and you gain 2 life.
|
||||
Ability ability = new DiesSourceTriggeredAbility(new LoseLifeOpponentsEffect(2));
|
||||
ability.addEffect(new GainLifeEffect(2).concatBy("and"));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private BrotherhoodPatriarch(final BrotherhoodPatriarch card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BrotherhoodPatriarch copy() {
|
||||
return new BrotherhoodPatriarch(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -30,6 +30,7 @@ public final class AssassinsCreed extends ExpansionSet {
|
|||
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("Brotherhood Patriarch", 286, Rarity.COMMON, mage.cards.b.BrotherhoodPatriarch.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