mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* City of Shadows - Fixed that the first ability was missing.
This commit is contained in:
parent
f77fd14b1e
commit
363915075c
1 changed files with 6 additions and 4 deletions
|
@ -45,7 +45,7 @@ import mage.target.common.TargetControlledCreaturePermanent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author anonymous
|
* @author Luna Skyrise
|
||||||
*/
|
*/
|
||||||
public class CityOfShadows extends CardImpl {
|
public class CityOfShadows extends CardImpl {
|
||||||
|
|
||||||
|
@ -53,12 +53,14 @@ public class CityOfShadows extends CardImpl {
|
||||||
super(ownerId, 113, "City of Shadows", Rarity.RARE, new CardType[]{CardType.LAND}, "");
|
super(ownerId, 113, "City of Shadows", Rarity.RARE, new CardType[]{CardType.LAND}, "");
|
||||||
this.expansionSetCode = "DRK";
|
this.expansionSetCode = "DRK";
|
||||||
|
|
||||||
// {tap}, Exile a creature you control: Put a storage counter on City of Shadows.
|
// {T}, Exile a creature you control: Put a storage counter on City of Shadows.
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.STORAGE.createInstance()), new TapSourceCost());
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersSourceEffect(CounterType.STORAGE.createInstance()), new TapSourceCost());
|
||||||
ability.addCost(new ExileTargetCost(new TargetControlledCreaturePermanent()));
|
ability.addCost(new ExileTargetCost(new TargetControlledCreaturePermanent()));
|
||||||
// {tap}: Add {X} to your mana pool, where X is the number of storage counters on City of Shadows.
|
this.addAbility(ability);
|
||||||
|
|
||||||
|
// {T}: Add {X} to your mana pool, where X is the number of storage counters on City of Shadows.
|
||||||
ability = new DynamicManaAbility(Mana.ColorlessMana, new CountersCount(CounterType.STORAGE),
|
ability = new DynamicManaAbility(Mana.ColorlessMana, new CountersCount(CounterType.STORAGE),
|
||||||
"{tap}: Add {X} to your mana pool, where X is the number of storage counters on City of Shadows");
|
"{tap}: Add {X} to your mana pool, where X is the number of storage counters on {this}");
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue