Skip to content

Commit

Permalink
[DSC] Implement Giggling Skitterspike (#13074)
Browse files Browse the repository at this point in the history
* [DSC] Implement Giggling Skitterspike

* Use OrTriggeredAbility instead of custom ability
  • Loading branch information
Cguy7777 authored Nov 25, 2024
1 parent d6cf207 commit 05c3a1e
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
60 changes: 60 additions & 0 deletions Mage.Sets/src/mage/cards/g/GigglingSkitterspike.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
package mage.cards.g;

import java.util.UUID;

import mage.MageInt;
import mage.abilities.common.AttacksOrBlocksTriggeredAbility;
import mage.abilities.common.BecomesTargetSourceTriggeredAbility;
import mage.abilities.dynamicvalue.common.SourcePermanentPowerValue;
import mage.abilities.effects.common.DamagePlayersEffect;
import mage.abilities.keyword.MonstrosityAbility;
import mage.abilities.meta.OrTriggeredAbility;
import mage.constants.SubType;
import mage.abilities.keyword.IndestructibleAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.TargetController;
import mage.constants.Zone;
import mage.filter.StaticFilters;

/**
* @author Cguy7777
*/
public final class GigglingSkitterspike extends CardImpl {

public GigglingSkitterspike(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");

this.subtype.add(SubType.TOY);
this.power = new MageInt(1);
this.toughness = new MageInt(1);

// Indestructible
this.addAbility(IndestructibleAbility.getInstance());

// Whenever Giggling Skitterspike attacks, blocks, or becomes the target of a spell,
// it deals damage equal to its power to each opponent.
this.addAbility(new OrTriggeredAbility(
Zone.BATTLEFIELD,
new DamagePlayersEffect(SourcePermanentPowerValue.NOT_NEGATIVE, TargetController.OPPONENT)
.setText("it deals damage equal to its power to each opponent"),
false,
"Whenever {this} attacks, blocks, or becomes the target of a spell, ",
new AttacksOrBlocksTriggeredAbility(null, false),
new BecomesTargetSourceTriggeredAbility(null, StaticFilters.FILTER_SPELL_A)));

// {5}: Monstrosity 5.
this.addAbility(new MonstrosityAbility("{5}", 5));

}

private GigglingSkitterspike(final GigglingSkitterspike card) {
super(card);
}

@Override
public GigglingSkitterspike copy() {
return new GigglingSkitterspike(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ private DuskmournHouseOfHorrorCommander() {
cards.add(new SetCardInfo("Formless Genesis", 34, Rarity.RARE, mage.cards.f.FormlessGenesis.class));
cards.add(new SetCardInfo("Geothermal Bog", 278, Rarity.COMMON, mage.cards.g.GeothermalBog.class));
cards.add(new SetCardInfo("Giant Adephage", 179, Rarity.MYTHIC, mage.cards.g.GiantAdephage.class));
cards.add(new SetCardInfo("Giggling Skitterspike", 39, Rarity.RARE, mage.cards.g.GigglingSkitterspike.class));
cards.add(new SetCardInfo("Gleeful Arsonist", 27, Rarity.RARE, mage.cards.g.GleefulArsonist.class));
cards.add(new SetCardInfo("Glitch Interpreter", 13, Rarity.RARE, mage.cards.g.GlitchInterpreter.class));
cards.add(new SetCardInfo("Gnarlwood Dryad", 180, Rarity.UNCOMMON, mage.cards.g.GnarlwoodDryad.class));
Expand Down

0 comments on commit 05c3a1e

Please sign in to comment.