Added tests for scavenge keyword.

This commit is contained in:
LevelX2 2018-02-07 15:36:08 +01:00
parent 120b8213c4
commit a5f24dfa07
2 changed files with 124 additions and 2 deletions

View file

@ -43,13 +43,13 @@ import mage.constants.SubType;
public class DeadbridgeGoliath extends CardImpl {
public DeadbridgeGoliath(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}{G}");
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{G}");
this.subtype.add(SubType.INSECT);
this.power = new MageInt(5);
this.toughness = new MageInt(5);
// Scavenge {4}{G}{G}
// Scavenge {4}{G}{G} ({4}{G}{G} , Exile this card from your graveyard: Put a number of +1/+1 counter's equal to this card's power on target creature. Scavenge only as a sorcery.)
this.addAbility(new ScavengeAbility(new ManaCostsImpl("{4}{G}{G}")));
}