mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Grand Coliseum - Added missing any mana ability to the land.
This commit is contained in:
parent
9c486c3abb
commit
e65be1ae3f
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,6 @@
|
|||
package mage.sets.onslaught;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
||||
import mage.abilities.effects.common.DamageControllerEffect;
|
||||
|
@ -55,6 +54,7 @@ public class GrandColiseum extends CardImpl<GrandColiseum> {
|
|||
// {tap}: Add one mana of any color to your mana pool. Grand Coliseum deals 1 damage to you.
|
||||
Ability ability = new AnyColorManaAbility();
|
||||
ability.addEffect(new DamageControllerEffect(1));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
public GrandColiseum(final GrandColiseum card) {
|
||||
|
|
Loading…
Reference in a new issue