mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
add power/toughness to Dark-Dweller Oracle
This commit is contained in:
parent
94aa52f4af
commit
3f73cf4121
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
package mage.cards.d;
|
package mage.cards.d;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import mage.MageInt;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.common.SimpleActivatedAbility;
|
import mage.abilities.common.SimpleActivatedAbility;
|
||||||
import mage.abilities.costs.common.SacrificeTargetCost;
|
import mage.abilities.costs.common.SacrificeTargetCost;
|
||||||
|
@ -35,6 +36,8 @@ public final class DarkDwellerOracle extends CardImpl {
|
||||||
|
|
||||||
this.subtype.add(SubType.GOBLIN);
|
this.subtype.add(SubType.GOBLIN);
|
||||||
this.subtype.add(SubType.SHAMAN);
|
this.subtype.add(SubType.SHAMAN);
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// {1}, Sacrifice a creature: Exile the top card of your library. You may play that card this turn.
|
// {1}, Sacrifice a creature: Exile the top card of your library. You may play that card this turn.
|
||||||
Ability ability = new SimpleActivatedAbility(
|
Ability ability = new SimpleActivatedAbility(
|
||||||
|
|
Loading…
Reference in a new issue