Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DSC] Implement Giggling Skitterspike #13074

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading