mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
Added tests for scavenge keyword.
This commit is contained in:
parent
120b8213c4
commit
a5f24dfa07
2 changed files with 124 additions and 2 deletions
|
|
@ -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}")));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue