replace {SG} with 'Sacrifice a Goblin'

master
melvin 2013-10-17 15:05:43 +08:00
parent b6311d3426
commit f63ca74d4b
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,6 @@ type=Creature
subtype=Goblin
cost={3}{R}{R}
pt=2/2
ability=pay {1}{R},{SG}: SN deals 2 damage to target creature or player.
ability=pay {1}{R},Sacrifice a Goblin: SN deals 2 damage to target creature or player.
timing=main
requires_groovy_code

View File

@ -124,7 +124,7 @@ public abstract class MagicPermanentActivation extends MagicActivation<MagicPerm
events.add(new MagicSacrificePermanentEvent(source,MagicTargetChoice.SACRIFICE_ARTIFACT));
} else if (cost.equals("Sacrifice a creature")) {
events.add(new MagicSacrificePermanentEvent(source,MagicTargetChoice.SACRIFICE_CREATURE));
} else if (cost.equals("{SG}")) {
} else if (cost.equals("Sacrifice a Goblin")) {
events.add(new MagicSacrificePermanentEvent(source,MagicTargetChoice.SACRIFICE_GOBLIN));
} else if (cost.equals("{SS}")) {
events.add(new MagicSacrificePermanentEvent(source,MagicTargetChoice.SACRIFICE_SAPROLING));