26 lines
772 B
Python
26 lines
772 B
Python
from mtg import *
|
|
import abilities
|
|
|
|
"""
|
|
Forest
|
|
Basic Land -- Forest
|
|
A-L, B-L, U-L, RV-L, 4E-L, 5E-L, 6E-L, 7E-L, 8ED-L, 9ED-L, 10E-L, M10-L, P1-L, P2-L, P3K-L, S99-L, S00-L, IA-L, MI-L, TE-L, US-L, MM-L, IN-L, OD-L, ONS-L, MRD-L,
|
|
CHK-L, RAV-L, TSP-L, LRW-L, SHM-L, ALA-L, ZEN-L, ROE-L, HOP-L
|
|
"""
|
|
class Forest(Card):
|
|
def __init__(self):
|
|
Card.__init__(self, 'Forest', 'basic land', ['forest'])
|
|
self.abilities.append(abilities.TapMana(self, 'G'))
|
|
|
|
"""
|
|
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', 'creature', ['elf', 'druid'], '1GG', 2, 2)
|