forked from External/mage
Implemented Band Together
This commit is contained in:
parent
ed2612e01a
commit
66425d67a6
2 changed files with 92 additions and 0 deletions
91
Mage.Sets/src/mage/cards/b/BandTogether.java
Normal file
91
Mage.Sets/src/mage/cards/b/BandTogether.java
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.AnotherTargetPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.Target;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BandTogether extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterControlledCreaturePermanent("creatures you control");
|
||||
private static final FilterPermanent filter2 = new FilterCreaturePermanent("another target creature");
|
||||
|
||||
static {
|
||||
filter.add(new AnotherTargetPredicate(1));
|
||||
filter2.add(new AnotherTargetPredicate(2));
|
||||
}
|
||||
|
||||
public BandTogether(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{G}");
|
||||
|
||||
// Up to two target creatures you control each deal damage equal to their power to another target creature.
|
||||
this.getSpellAbility().addEffect(new BandTogetherEffect());
|
||||
Target target = new TargetPermanent(0, 2, filter, false);
|
||||
target.setTargetTag(1);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
target = new TargetPermanent(1, 1, filter2, false);
|
||||
target.setTargetTag(2);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
}
|
||||
|
||||
private BandTogether(final BandTogether card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BandTogether copy() {
|
||||
return new BandTogether(this);
|
||||
}
|
||||
}
|
||||
|
||||
class BandTogetherEffect extends OneShotEffect {
|
||||
|
||||
BandTogetherEffect() {
|
||||
super(Outcome.Benefit);
|
||||
this.staticText = "Up to two target creatures you control each deal damage equal to their power to another target creature.";
|
||||
}
|
||||
|
||||
private BandTogetherEffect(final BandTogetherEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BandTogetherEffect copy() {
|
||||
return new BandTogetherEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
if (source.getTargets().size() < 2 || source.getTargets().get(0).getTargets().size() < 2) {
|
||||
return false;
|
||||
}
|
||||
Permanent permanent1 = game.getPermanent(source.getTargets().get(0).getTargets().get(0));
|
||||
Permanent permanent2 = game.getPermanent(source.getTargets().get(0).getTargets().get(1));
|
||||
Permanent permanent3 = game.getPermanent(source.getTargets().get(1).getTargets().get(0));
|
||||
if (permanent3 == null) {
|
||||
return false;
|
||||
}
|
||||
if (permanent1 != null) {
|
||||
permanent3.damage(permanent1.getPower().getValue(), permanent1.getId(), game, false, true);
|
||||
}
|
||||
if (permanent2 != null) {
|
||||
permanent3.damage(permanent2.getPower().getValue(), permanent2.getId(), game, false, true);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
@ -33,6 +33,7 @@ public final class WarOfTheSpark extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Arlinn's Wolf", 151, Rarity.COMMON, mage.cards.a.ArlinnsWolf.class));
|
||||
cards.add(new SetCardInfo("Arlinn, Voice of the Pack", 150, Rarity.UNCOMMON, mage.cards.a.ArlinnVoiceOfThePack.class));
|
||||
cards.add(new SetCardInfo("Augur of Bolas", 41, Rarity.UNCOMMON, mage.cards.a.AugurOfBolas.class));
|
||||
cards.add(new SetCardInfo("Band Together", 153, Rarity.COMMON, mage.cards.b.BandTogether.class));
|
||||
cards.add(new SetCardInfo("Banehound", 77, Rarity.COMMON, mage.cards.b.Banehound.class));
|
||||
cards.add(new SetCardInfo("Blindblast", 114, Rarity.COMMON, mage.cards.b.Blindblast.class));
|
||||
cards.add(new SetCardInfo("Bloom Hulk", 154, Rarity.COMMON, mage.cards.b.BloomHulk.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue