mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[LCC] Implement The Indomitable (#11554)
* [LCC] Implement The Indomitable
* [P10E] Corrected rarities for Faerie Conclave and Treetop Village
* [LCC] Add alternative art for The Indomitable
* Update staticText to use {this} instead of hardcoded
---------
Co-authored-by: Justin Mason <justin.mason@mckesson.com>
This commit is contained in:
parent
652485db17
commit
a0a7e13fe1
2 changed files with 114 additions and 0 deletions
112
Mage.Sets/src/mage/cards/t/TheIndomitable.java
Normal file
112
Mage.Sets/src/mage/cards/t/TheIndomitable.java
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DealsDamageToAPlayerAllTriggeredAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.AsThoughEffectImpl;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.keyword.CrewAbility;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.AsThoughEffectType;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SetTargetPointer;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
import mage.game.Game;
|
||||
|
||||
/**
|
||||
* @author jam736
|
||||
*/
|
||||
public final class TheIndomitable extends CardImpl {
|
||||
|
||||
public TheIndomitable(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{2}{U}{U}");
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.VEHICLE);
|
||||
this.power = new MageInt(6);
|
||||
this.toughness = new MageInt(6);
|
||||
|
||||
// Trample
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// Crew 3
|
||||
this.addAbility(new CrewAbility(3));
|
||||
|
||||
// Whenever a creature you control deals combat damage to a player, draw a card.
|
||||
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(
|
||||
new DrawCardSourceControllerEffect(1),
|
||||
StaticFilters.FILTER_CONTROLLED_A_CREATURE,
|
||||
false, SetTargetPointer.NONE, true
|
||||
));
|
||||
|
||||
// You may cast The Indomitable from your graveyard as long as you control three or more tapped Pirates and/or Vehicles.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.GRAVEYARD, new TheIndomitableCastEffect()));
|
||||
}
|
||||
|
||||
private TheIndomitable(final TheIndomitable card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TheIndomitable copy() {
|
||||
return new TheIndomitable(this);
|
||||
}
|
||||
}
|
||||
|
||||
class TheIndomitableCastEffect extends AsThoughEffectImpl {
|
||||
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("three or more tapped pirates and/or vehicles");
|
||||
static {
|
||||
filter.add(TappedPredicate.TAPPED);
|
||||
filter.add(Predicates.or(
|
||||
SubType.PIRATE.getPredicate(),
|
||||
SubType.VEHICLE.getPredicate()
|
||||
));
|
||||
}
|
||||
|
||||
TheIndomitableCastEffect() {
|
||||
super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfGame, Outcome.Benefit);
|
||||
staticText = "You may cast {this} from your graveyard as long as you control three or more tapped Pirates and/or Vehicles.";
|
||||
}
|
||||
|
||||
private TheIndomitableCastEffect(final TheIndomitableCastEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public TheIndomitableCastEffect copy() {
|
||||
return new TheIndomitableCastEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean applies(UUID sourceId, Ability source, UUID affectedControllerId, Game game) {
|
||||
if (sourceId.equals(source.getSourceId())) {
|
||||
Card card = game.getCard(source.getSourceId());
|
||||
if (card != null
|
||||
&& card.isOwnedBy(affectedControllerId)
|
||||
&& game.getState().getZone(source.getSourceId()) == Zone.GRAVEYARD
|
||||
&& game.getBattlefield().count(filter, source.getControllerId(), source, game) >= 3) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
@ -264,6 +264,8 @@ public final class LostCavernsOfIxalanCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Temple of the False God", 359, Rarity.UNCOMMON, mage.cards.t.TempleOfTheFalseGod.class));
|
||||
cards.add(new SetCardInfo("Terramorphic Expanse", 360, Rarity.COMMON, mage.cards.t.TerramorphicExpanse.class));
|
||||
cards.add(new SetCardInfo("Thassa, God of the Sea", 176, Rarity.MYTHIC, mage.cards.t.ThassaGodOfTheSea.class));
|
||||
cards.add(new SetCardInfo("The Indomitable", 43, Rarity.RARE, mage.cards.t.TheIndomitable.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("The Indomitable", 75, Rarity.RARE, mage.cards.t.TheIndomitable.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Thieving Skydiver", 177, Rarity.RARE, mage.cards.t.ThievingSkydiver.class));
|
||||
cards.add(new SetCardInfo("Thought Vessel", 118, Rarity.UNCOMMON, mage.cards.t.ThoughtVessel.class));
|
||||
cards.add(new SetCardInfo("Thriving Bluff", 361, Rarity.COMMON, mage.cards.t.ThrivingBluff.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue