mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[BRO] Implemented Argothian Opportunist
This commit is contained in:
parent
46ba9ed1ec
commit
8f12367a01
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/a/ArgothianOpportunist.java
Normal file
41
Mage.Sets/src/mage/cards/a/ArgothianOpportunist.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.permanent.token.PowerstoneToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ArgothianOpportunist extends CardImpl {
|
||||
|
||||
public ArgothianOpportunist(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.SCOUT);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// When Argothian Opportunist enters the battlefield, create a tapped Powerstone token.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(
|
||||
new CreateTokenEffect(new PowerstoneToken(), 1, true)
|
||||
));
|
||||
}
|
||||
|
||||
private ArgothianOpportunist(final ArgothianOpportunist card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArgothianOpportunist copy() {
|
||||
return new ArgothianOpportunist(this);
|
||||
}
|
||||
}
|
|
@ -21,6 +21,7 @@ public final class TheBrothersWar extends ExpansionSet {
|
|||
this.hasBoosters = false; // temporary
|
||||
|
||||
cards.add(new SetCardInfo("Argoth, Sanctum of Nature", "256a", Rarity.RARE, mage.cards.a.ArgothSanctumOfNature.class));
|
||||
cards.add(new SetCardInfo("Argothian Opportunist", 167, Rarity.COMMON, mage.cards.a.ArgothianOpportunist.class));
|
||||
cards.add(new SetCardInfo("Ashnod's Harvester", 117, Rarity.UNCOMMON, mage.cards.a.AshnodsHarvester.class));
|
||||
cards.add(new SetCardInfo("Battlefield Forge", 257, Rarity.RARE, mage.cards.b.BattlefieldForge.class));
|
||||
cards.add(new SetCardInfo("Blast Zone", 258, Rarity.RARE, mage.cards.b.BlastZone.class));
|
||||
|
|
Loading…
Reference in a new issue