mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fixed bugs of AbandonedOutpost.
This commit is contained in:
parent
341da30e37
commit
2643af812b
1 changed files with 30 additions and 25 deletions
|
@ -25,39 +25,44 @@
|
|||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
package.mage.sets.odyssey
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
||||
import mage.abilities.mana.WhiteManaAbility;
|
||||
import mage.abilities.costs.common.SacrificeSourceCost;
|
||||
import mage.abilities.mana.AnyColorManaAbility;
|
||||
|
||||
package mage.sets.odyssey;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
||||
import mage.abilities.costs.common.SacrificeSourceCost;
|
||||
import mage.abilities.mana.AnyColorManaAbility;
|
||||
import mage.abilities.mana.WhiteManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author cbt33
|
||||
*/
|
||||
|
||||
public class AbandonedOutpost extends CardImpl<AbandonedOutpost> {
|
||||
|
||||
public AbandonedOutpost(ownerId UUID){
|
||||
super(ownerId, 312, "Abandoned Outpost", Rarity.COMMON, new CardType[]{CardType.LAND}, "");
|
||||
this.expansionSetCode = "ODY";
|
||||
public AbandonedOutpost(UUID ownerId){
|
||||
super(ownerId, 312, "Abandoned Outpost", Rarity.COMMON, new CardType[]{CardType.LAND}, "");
|
||||
this.expansionSetCode = "ODY";
|
||||
|
||||
// This enters the battlefield tapped
|
||||
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||
|
||||
// Tap to add {W} to your mana pool
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
|
||||
// Tap to add any color mana to your mana pool. Sacrifice Abandoned Outpost.
|
||||
Ability ability = new AnyColorManaAbility();
|
||||
ability.addCost(new SacrificeSourceCost());
|
||||
this.addAbility(ability);
|
||||
|
||||
// This enters the battlefield tapped
|
||||
this.addAbility(new EntersBattlefieldTappedAbility())
|
||||
|
||||
// Tap to add [W] to your mana pool
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
|
||||
// Tap to add any color mana to your mana pool. Sacrifice Abandoned Outpost.
|
||||
Ability ability = new AnyColorManaAbility());
|
||||
ability.addCost(new SacrificeSourceCost());
|
||||
this.addAbility(ability);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public AbandonedOutpost(final AbandonedOutpost card) {
|
||||
public AbandonedOutpost(final AbandonedOutpost card) {
|
||||
super(card);
|
||||
}
|
||||
|
Loading…
Reference in a new issue