* Fixed bug of Druids Repository (related to b5c93cf2da),

This commit is contained in:
LevelX2 2020-07-28 13:28:24 +02:00
parent 7e771a2fc3
commit 0458778c44
4 changed files with 149 additions and 83 deletions

View file

@ -31,10 +31,9 @@ public final class DruidsRepository extends CardImpl {
this.addAbility(new AttacksCreatureYouControlTriggeredAbility(new AddCountersSourceEffect(CounterType.CHARGE.createInstance())));
// Remove a charge counter from Druids' Repository: Add one mana of any color.
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, Mana.AnyMana(1),
new RemoveCountersSourceCost(CounterType.CHARGE.createInstance()),
new CountersSourceCount(CounterType.CHARGE));
this.addAbility(ability);
this.addAbility(new SimpleManaAbility(Zone.BATTLEFIELD,
new AddManaOfAnyColorEffect(1, new CountersSourceCount(CounterType.CHARGE), false),
new RemoveCountersSourceCost(CounterType.CHARGE.createInstance())));
}
public DruidsRepository(final DruidsRepository card) {