mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[TDC] Implement Reunion of the House
This commit is contained in:
parent
94ce7f8380
commit
2f57cdb0a1
2 changed files with 87 additions and 0 deletions
86
Mage.Sets/src/mage/cards/r/ReunionOfTheHouse.java
Normal file
86
Mage.Sets/src/mage/cards/r/ReunionOfTheHouse.java
Normal file
|
|
@ -0,0 +1,86 @@
|
||||||
|
package mage.cards.r;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.MageObject;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.effects.common.ReturnFromGraveyardToBattlefieldTargetEffect;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.filter.common.FilterCreatureCard;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.target.common.TargetCardInYourGraveyard;
|
||||||
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class ReunionOfTheHouse extends CardImpl {
|
||||||
|
|
||||||
|
public ReunionOfTheHouse(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{W}{W}");
|
||||||
|
|
||||||
|
// Return any number of target creature cards with total power 10 or less from your graveyard to the battlefield. Exile Reunion of the House.
|
||||||
|
this.getSpellAbility().addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect());
|
||||||
|
this.getSpellAbility().addTarget(new ReunionOfTheHouseTarget());
|
||||||
|
}
|
||||||
|
|
||||||
|
private ReunionOfTheHouse(final ReunionOfTheHouse card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ReunionOfTheHouse copy() {
|
||||||
|
return new ReunionOfTheHouse(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class ReunionOfTheHouseTarget extends TargetCardInYourGraveyard {
|
||||||
|
|
||||||
|
private static final FilterCard filterStatic
|
||||||
|
= new FilterCreatureCard("creature cards with total power 10 or less from your graveyard");
|
||||||
|
|
||||||
|
ReunionOfTheHouseTarget() {
|
||||||
|
super(0, Integer.MAX_VALUE, filterStatic);
|
||||||
|
}
|
||||||
|
|
||||||
|
private ReunionOfTheHouseTarget(final ReunionOfTheHouseTarget target) {
|
||||||
|
super(target);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ReunionOfTheHouseTarget copy() {
|
||||||
|
return new ReunionOfTheHouseTarget(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean canTarget(UUID controllerId, UUID id, Ability source, Game game) {
|
||||||
|
return super.canTarget(controllerId, id, source, game)
|
||||||
|
&& CardUtil.checkCanTargetTotalValueLimit(
|
||||||
|
this.getTargets(), id, m -> m.getPower().getValue(), 10, game);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Set<UUID> possibleTargets(UUID sourceControllerId, Ability source, Game game) {
|
||||||
|
return CardUtil.checkPossibleTargetsTotalValueLimit(this.getTargets(),
|
||||||
|
super.possibleTargets(sourceControllerId, source, game),
|
||||||
|
m -> m.getPower().getValue(), 10, game);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getMessage(Game game) {
|
||||||
|
// shows selected total
|
||||||
|
int selectedValue = this.getTargets().stream()
|
||||||
|
.map(game::getObject)
|
||||||
|
.filter(Objects::nonNull)
|
||||||
|
.map(MageObject::getPower)
|
||||||
|
.mapToInt(MageInt::getValue)
|
||||||
|
.sum();
|
||||||
|
return super.getMessage(game) + " (selected total power " + selectedValue + ")";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -248,6 +248,7 @@ public final class TarkirDragonstormCommander extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Reflections of Littjara", 164, Rarity.RARE, mage.cards.r.ReflectionsOfLittjara.class));
|
cards.add(new SetCardInfo("Reflections of Littjara", 164, Rarity.RARE, mage.cards.r.ReflectionsOfLittjara.class));
|
||||||
cards.add(new SetCardInfo("Release the Dogs", 127, Rarity.UNCOMMON, mage.cards.r.ReleaseTheDogs.class));
|
cards.add(new SetCardInfo("Release the Dogs", 127, Rarity.UNCOMMON, mage.cards.r.ReleaseTheDogs.class));
|
||||||
cards.add(new SetCardInfo("Reliquary Tower", 386, Rarity.UNCOMMON, mage.cards.r.ReliquaryTower.class));
|
cards.add(new SetCardInfo("Reliquary Tower", 386, Rarity.UNCOMMON, mage.cards.r.ReliquaryTower.class));
|
||||||
|
cards.add(new SetCardInfo("Reunion of the House", 15, Rarity.RARE, mage.cards.r.ReunionOfTheHouse.class));
|
||||||
cards.add(new SetCardInfo("Rhox Faithmender", 128, Rarity.RARE, mage.cards.r.RhoxFaithmender.class));
|
cards.add(new SetCardInfo("Rhox Faithmender", 128, Rarity.RARE, mage.cards.r.RhoxFaithmender.class));
|
||||||
cards.add(new SetCardInfo("Rite of Replication", 165, Rarity.RARE, mage.cards.r.RiteOfReplication.class));
|
cards.add(new SetCardInfo("Rite of Replication", 165, Rarity.RARE, mage.cards.r.RiteOfReplication.class));
|
||||||
cards.add(new SetCardInfo("River Kelpie", 166, Rarity.RARE, mage.cards.r.RiverKelpie.class));
|
cards.add(new SetCardInfo("River Kelpie", 166, Rarity.RARE, mage.cards.r.RiverKelpie.class));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue