mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[GTC] fixed 3 cards
This commit is contained in:
parent
bd3c20c3bf
commit
e4532129b5
3 changed files with 4 additions and 4 deletions
|
@ -53,7 +53,7 @@ public class FrilledOculus extends CardImpl<FrilledOculus> {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// {1}{G}: Frilled Oculus gets +2/+2 until end of turn. Activate this ability only once each turn.
|
||||
this.addAbility(new ActivateOncePerTurnActivatedAbility(Constants.Zone.BATTLEFIELD, new BoostSourceEffect(1, 1, Constants.Duration.EndOfTurn), new ManaCostsImpl("{1}{G}")));
|
||||
this.addAbility(new ActivateOncePerTurnActivatedAbility(Constants.Zone.BATTLEFIELD, new BoostSourceEffect(2, 2, Constants.Duration.EndOfTurn), new ManaCostsImpl("{1}{G}")));
|
||||
}
|
||||
|
||||
public FrilledOculus(final FrilledOculus card) {
|
||||
|
|
|
@ -38,7 +38,7 @@ import mage.abilities.costs.common.TapTargetCost;
|
|||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.continious.BoostSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterControlledLandPermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
|
@ -50,7 +50,7 @@ import mage.target.common.TargetControlledPermanent;
|
|||
*/
|
||||
public class GatewayShade extends CardImpl<GatewayShade> {
|
||||
|
||||
private final static FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("untapped Gate you control");
|
||||
private final static FilterControlledLandPermanent filter = new FilterControlledLandPermanent("untapped Gate you control");
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Gate"));
|
||||
filter.add(Predicates.not(new TappedPredicate()));
|
||||
|
|
|
@ -56,7 +56,7 @@ public class MindeyeDrake extends CardImpl<MindeyeDrake> {
|
|||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
// When Mindeye Drake dies, target player puts the top five cards of his or her library into his or her graveyard.
|
||||
Ability ability = new DiesTriggeredAbility(new PutLibraryIntoGraveTargetEffect(4));
|
||||
Ability ability = new DiesTriggeredAbility(new PutLibraryIntoGraveTargetEffect(5));
|
||||
ability.addTarget(new TargetPlayer());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue