15 lines
313 B
Python
15 lines
313 B
Python
|
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)
|