mtg/cards.py

15 lines
313 B
Python
Raw Normal View History

2010-06-16 14:16:49 +00:00
from mtg import *
"""
Elvish Archdruid
1GG
Creature -- Elf Druid
2/2
Other Elf creatures you control get +1/+1.
{T}: Add {G} to your mana pool for each Elf you control.
M10-R
"""
class Elvish_Archdruid(Card):
def __init__(self):
Card.__init__(self, 'Elvish Archdruid', ['elf', 'druid'], '1GG', 2, 2)