mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
[REX] Implement Henry Wu, InGen Geneticist (#12106)
This commit is contained in:
parent
607d55f16b
commit
db9e849ac8
2 changed files with 135 additions and 0 deletions
134
Mage.Sets/src/mage/cards/h/HenryWuInGenGeneticist.java
Normal file
134
Mage.Sets/src/mage/cards/h/HenryWuInGenGeneticist.java
Normal file
|
|
@ -0,0 +1,134 @@
|
||||||
|
package mage.cards.h;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.TriggeredAbilityImpl;
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.common.CreateTokenEffect;
|
||||||
|
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||||
|
import mage.abilities.effects.common.continuous.GainAbilityControlledEffect;
|
||||||
|
import mage.abilities.keyword.ExploitAbility;
|
||||||
|
import mage.constants.*;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterCreaturePermanent;
|
||||||
|
import mage.filter.predicate.Predicates;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.game.permanent.token.TreasureToken;
|
||||||
|
import mage.target.targetpointer.FixedTarget;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author jimga150
|
||||||
|
*/
|
||||||
|
public final class HenryWuInGenGeneticist extends CardImpl {
|
||||||
|
|
||||||
|
public static final FilterPermanent filterYourHumans = new FilterCreaturePermanent("Human creatures you control");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filterYourHumans.add(TargetController.YOU.getControllerPredicate());
|
||||||
|
filterYourHumans.add(SubType.HUMAN.getPredicate());
|
||||||
|
}
|
||||||
|
|
||||||
|
public HenryWuInGenGeneticist(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{B}{G}{U}");
|
||||||
|
|
||||||
|
this.supertype.add(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.HUMAN);
|
||||||
|
this.subtype.add(SubType.SCIENTIST);
|
||||||
|
this.power = new MageInt(1);
|
||||||
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
|
// Henry Wu, InGen Geneticist and other Human creatures you control have exploit.
|
||||||
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityControlledEffect(
|
||||||
|
new ExploitAbility(), Duration.WhileOnBattlefield, filterYourHumans)));
|
||||||
|
|
||||||
|
// Whenever a creature you control exploits a non-Human creature, draw a card. If the exploited creature had power 3 or greater, create a Treasure token.
|
||||||
|
this.addAbility(new HenryWuInGenGeneticistTriggeredAbility());
|
||||||
|
}
|
||||||
|
|
||||||
|
private HenryWuInGenGeneticist(final HenryWuInGenGeneticist card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HenryWuInGenGeneticist copy() {
|
||||||
|
return new HenryWuInGenGeneticist(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Based on ColonelAutumnTriggeredAbility
|
||||||
|
class HenryWuInGenGeneticistTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
|
public static final FilterPermanent filterNonHumans = new FilterCreaturePermanent("non-Human creature");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filterNonHumans.add(Predicates.not(SubType.HUMAN.getPredicate()));
|
||||||
|
}
|
||||||
|
|
||||||
|
HenryWuInGenGeneticistTriggeredAbility() {
|
||||||
|
super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1));
|
||||||
|
this.addEffect(new HenryWuInGenGeneticistEffect());
|
||||||
|
setTriggerPhrase("Whenever a creature you control exploits a " + filterNonHumans.getMessage() + ", ");
|
||||||
|
}
|
||||||
|
|
||||||
|
private HenryWuInGenGeneticistTriggeredAbility(final HenryWuInGenGeneticistTriggeredAbility ability) {
|
||||||
|
super(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.EXPLOITED_CREATURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkTrigger(GameEvent event, Game game) {
|
||||||
|
Permanent exploiter = game.getPermanentOrLKIBattlefield(event.getSourceId());
|
||||||
|
Permanent exploited = game.getPermanentOrLKIBattlefield(event.getTargetId());
|
||||||
|
|
||||||
|
if (exploiter == null || exploited == null){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
getEffects().setTargetPointer(new FixedTarget(exploited.getId(), game));
|
||||||
|
|
||||||
|
return exploiter.isCreature(game)
|
||||||
|
&& exploiter.isControlledBy(this.getControllerId())
|
||||||
|
&& filterNonHumans.match(exploited, getControllerId(), this, game);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HenryWuInGenGeneticistTriggeredAbility copy() {
|
||||||
|
return new HenryWuInGenGeneticistTriggeredAbility(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class HenryWuInGenGeneticistEffect extends CreateTokenEffect {
|
||||||
|
|
||||||
|
public HenryWuInGenGeneticistEffect() {
|
||||||
|
super(new TreasureToken());
|
||||||
|
staticText = "If the exploited creature had power 3 or greater, create a Treasure token.";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HenryWuInGenGeneticistEffect copy() {
|
||||||
|
return new HenryWuInGenGeneticistEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected HenryWuInGenGeneticistEffect(final HenryWuInGenGeneticistEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Permanent exploited = getTargetPointer().getFirstTargetPermanentOrLKI(game, source);
|
||||||
|
if (exploited == null || exploited.getPower().getValue() < 3){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return super.apply(game, source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -30,6 +30,7 @@ public final class JurassicWorldCollection extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Ellie and Alan, Paleontologists", 10, Rarity.RARE, mage.cards.e.EllieAndAlanPaleontologists.class));
|
cards.add(new SetCardInfo("Ellie and Alan, Paleontologists", 10, Rarity.RARE, mage.cards.e.EllieAndAlanPaleontologists.class));
|
||||||
cards.add(new SetCardInfo("Forest", 25, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
cards.add(new SetCardInfo("Forest", 25, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Forest", "25b", Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
cards.add(new SetCardInfo("Forest", "25b", Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||||
|
cards.add(new SetCardInfo("Henry Wu, InGen Geneticist", 12, Rarity.RARE, mage.cards.h.HenryWuInGenGeneticist.class));
|
||||||
cards.add(new SetCardInfo("Hunting Velociraptor", 4, Rarity.RARE, mage.cards.h.HuntingVelociraptor.class));
|
cards.add(new SetCardInfo("Hunting Velociraptor", 4, Rarity.RARE, mage.cards.h.HuntingVelociraptor.class));
|
||||||
cards.add(new SetCardInfo("Island", 22, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
cards.add(new SetCardInfo("Island", 22, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Island", "22b", Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
cards.add(new SetCardInfo("Island", "22b", Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue