-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslate-lands.py
61 lines (50 loc) · 1.99 KB
/
slate-lands.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# flake8: noqa
"""
The SLATE table contains the corresponding flags to each card that is relevant
to Lands as an archetype.
The FORMS table lists all forms for a Manabond into Marit Lage on the first
turn.
"""
SLATE = {
# Business
'Crop Rotation': ('CR',),
'Manabond': ('MB',),
# Mana
'Mox Diamond': ('MD',),
# Lands
'Ancient Tomb': ('L', '2',),
'Blast Zone': ('L', '1',),
'Bojuka Bog': ('L',),
'Dark Depths': ('L', 'DD',),
'Forest': ('L', 'G',),
'Ghost Quarter': ('L', '1',),
'Glacial Chasm': ('L',),
"Hall of Heliod's Generosity": ('L', '1',),
'Horizon Canopy': ('L', '1', 'G', 'W',),
'Karakas': ('L', 'W',),
'Maze of Ith': ('L',),
'Riftstone Portal': ('L', 'RP', '1',),
'Rishadan Port': ('L', '1',),
'Savannah': ('L', 'G', 'W',),
'The Tabernacle at Pendrell Vale': ('L',),
"Thespian's Stage": ('L', 'TS', '1',),
'Tranquil Thicket': ('L',),
'Verdant Catacombs': ('L', 'G', 'W',),
'Wasteland': ('L', '1',),
'Windswept Heath': ('L', 'G', 'W',),
'Wooded Foothills': ('L', 'G', 'W',),
}
FORMS = {
'No Mox Diamond, no Crop Rotation, no Ancient Tomb': [
{'base': ((1, 'MB',), (1, 'DD',), (1, 'TS',), (0, '=MD',), (0, '=CR'), (0, '=2'))},
((1, '=G',), (2, '1|W',),),
((2, '=G',), (1, '1|W',),),
((3, 'G',),),
],
'No Mox Diamond, no Crop Rotation, with Ancient Tomb': [
{'base': ((1, 'MB',), (1, 'DD',), (1, 'TS',), (0, '=MD',), (0, '=CR'))},
((1, '2'), (1, 'G',),),
],
}