mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
* Earthcarft - Fixed that the creature to tap was not handled as a not targeted effect.
This commit is contained in:
parent
df04bf829d
commit
f08c046c6b
1 changed files with 3 additions and 1 deletions
|
|
@ -64,7 +64,9 @@ public class Earthcraft extends CardImpl {
|
|||
super(ownerId, 116, "Earthcraft", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{1}{G}");
|
||||
this.expansionSetCode = "TMP";
|
||||
this.color.setGreen(true);
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new UntapTargetEffect(), new TapTargetCost(new TargetControlledCreaturePermanent(1, 1, filterCreature, false)));
|
||||
|
||||
// Tap an untapped creature you control: Untap target basic land.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new UntapTargetEffect(), new TapTargetCost(new TargetControlledCreaturePermanent(1, 1, filterCreature, true)));
|
||||
ability.addTarget(new TargetControlledPermanent(filterLand));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue