Text fixes

This commit is contained in:
LoneFox 2015-12-31 17:43:05 +02:00
parent ce2c6bc0c8
commit 85d02a77e6
2 changed files with 5 additions and 3 deletions

View file

@ -65,7 +65,9 @@ public class GruesomeSlaughter extends CardImpl {
effect.setText("{this} deals damage equal to its power to target creature.");
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
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) {

View file

@ -83,7 +83,7 @@ public class ForiysianTotem extends CardImpl {
class ForiysianTotemToken extends Token {
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.ARTIFACT);
subtype.add("Giant");