mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[DSK] Implement Beastie Beatdown
This commit is contained in:
parent
01655f89cb
commit
05e738efb5
2 changed files with 56 additions and 0 deletions
55
Mage.Sets/src/mage/cards/b/BeastieBeatdown.java
Normal file
55
Mage.Sets/src/mage/cards/b/BeastieBeatdown.java
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.abilities.condition.common.DeliriumCondition;
|
||||
import mage.abilities.decorator.ConditionalOneShotEffect;
|
||||
import mage.abilities.effects.common.DamageWithPowerFromOneToAnotherTargetEffect;
|
||||
import mage.abilities.effects.common.InfoEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
||||
import mage.abilities.hint.common.CardTypesInGraveyardHint;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.AbilityWord;
|
||||
import mage.constants.CardType;
|
||||
import mage.counters.CounterType;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetOpponentsCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BeastieBeatdown extends CardImpl {
|
||||
|
||||
public BeastieBeatdown(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{R}{G}");
|
||||
|
||||
// Choose target creature you control and target creature an opponent controls.
|
||||
this.getSpellAbility().addEffect(new InfoEffect(
|
||||
"Choose target creature you control and target creature an opponent controls."
|
||||
));
|
||||
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
|
||||
this.getSpellAbility().addTarget(new TargetOpponentsCreaturePermanent());
|
||||
|
||||
// Delirium -- If there are four or more card types among cards in your graveyard, put two +1/+1 counters on the creature you control.
|
||||
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
|
||||
new AddCountersTargetEffect(CounterType.P1P1.createInstance(2)),
|
||||
DeliriumCondition.instance, AbilityWord.DELIRIUM.formatWord() + "If there are four or more " +
|
||||
"card types among cards in your graveyard, put two +1/+1 counters on the creature you control."
|
||||
).concatBy("<br>"));
|
||||
this.getSpellAbility().addHint(CardTypesInGraveyardHint.YOU);
|
||||
|
||||
// The creature you control deals damage equal to its power to the creature an opponent controls.
|
||||
this.getSpellAbility().addEffect(new DamageWithPowerFromOneToAnotherTargetEffect()
|
||||
.setText("<br>The creature you control deals damage equal to its power to the creature an opponent controls."));
|
||||
}
|
||||
|
||||
private BeastieBeatdown(final BeastieBeatdown card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BeastieBeatdown copy() {
|
||||
return new BeastieBeatdown(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -33,6 +33,7 @@ public final class DuskmournHouseOfHorror extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Baseball Bat", 209, Rarity.UNCOMMON, mage.cards.b.BaseballBat.class));
|
||||
cards.add(new SetCardInfo("Bashful Beastie", 169, Rarity.COMMON, mage.cards.b.BashfulBeastie.class));
|
||||
cards.add(new SetCardInfo("Bear Trap", 243, Rarity.COMMON, mage.cards.b.BearTrap.class));
|
||||
cards.add(new SetCardInfo("Beastie Beatdown", 210, Rarity.UNCOMMON, mage.cards.b.BeastieBeatdown.class));
|
||||
cards.add(new SetCardInfo("Bedhead Beastie", 125, Rarity.COMMON, mage.cards.b.BedheadBeastie.class));
|
||||
cards.add(new SetCardInfo("Betrayer's Bargain", 126, Rarity.UNCOMMON, mage.cards.b.BetrayersBargain.class));
|
||||
cards.add(new SetCardInfo("Blazemire Verge", 256, Rarity.RARE, mage.cards.b.BlazemireVerge.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue