mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Text fixes
This commit is contained in:
parent
ce2c6bc0c8
commit
85d02a77e6
2 changed files with 5 additions and 3 deletions
|
@ -65,7 +65,9 @@ public class GruesomeSlaughter extends CardImpl {
|
||||||
effect.setText("{this} deals damage equal to its power to target creature.");
|
effect.setText("{this} deals damage equal to its power to target creature.");
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
||||||
ability.addTarget(new TargetCreaturePermanent());
|
ability.addTarget(new TargetCreaturePermanent());
|
||||||
this.getSpellAbility().addEffect(new GainAbilityControlledEffect(ability, Duration.EndOfTurn, filter));
|
effect = new GainAbilityControlledEffect(ability, Duration.EndOfTurn, filter);
|
||||||
|
effect.setText("Until end of turn, colorless creatures you control gain \"{T}: This creature deals damage equal to its power to target creature.\"");
|
||||||
|
this.getSpellAbility().addEffect(effect);
|
||||||
}
|
}
|
||||||
|
|
||||||
public GruesomeSlaughter(final GruesomeSlaughter card) {
|
public GruesomeSlaughter(final GruesomeSlaughter card) {
|
||||||
|
|
|
@ -83,7 +83,7 @@ public class ForiysianTotem extends CardImpl {
|
||||||
class ForiysianTotemToken extends Token {
|
class ForiysianTotemToken extends Token {
|
||||||
|
|
||||||
public ForiysianTotemToken() {
|
public ForiysianTotemToken() {
|
||||||
super("", "4/4 red Giant artifact creature");
|
super("", "4/4 red Giant artifact creature with trample");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
cardType.add(CardType.ARTIFACT);
|
cardType.add(CardType.ARTIFACT);
|
||||||
subtype.add("Giant");
|
subtype.add("Giant");
|
||||||
|
|
Loading…
Reference in a new issue