-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmtg_ext.pm
151 lines (148 loc) · 3.65 KB
/
mtg_ext.pm
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# package mtg_ext;
sub list_exp {
foreach $i (sort keys %expansions) {
print $i.": ".$expansions{ $i }."\n";
}
}
%expansions = (
ATQ => 'Antiquities',
LEG => 'Legends',
DRK => 'The Dark',
FEM => 'Fallen Empires',
HML => 'Homelands',
ICE => 'Ice Age',
ALL => 'Alliances',
CSP => 'Coldsnap',
MIR => 'Mirage',
VIS => 'Visions',
WTH => 'Weatherlight',
TMP => 'Tempest',
STH => 'Stronghold',
EXO => 'Exodus',
USG => 'Urza\'s Saga',
ULG => 'Urza\'s Legacy',
UDS => 'Urza\'s Destiny',
MMQ => 'Mercadian Masques',
NMS => 'Nemesis',
PCY => 'Prophecy',
INV => 'Invasion',
PLS => 'Planeshift',
APC => 'Apocalypse',
ODY => 'Odyssey',
TOR => 'Torment',
JUD => 'Judgment',
ONS => 'Onslaught',
LGN => 'Legions',
SCG => 'Scourge',
MRD => 'Mirrodin',
DST => 'Darksteel',
"5DN" => 'Fifth Dawn',
CHK => 'Champions of Kamigawa',
BOK => 'Betrayers of Kamigawa',
SOK => 'Saviors of Kamigawa',
RAV => 'Ravnica: City of Guilds',
GPT => 'Guildpact',
DIS => 'Dissension',
TSP => 'Time Spiral',
PLC => 'Planar Chaos',
FUT => 'Future Sight',
LRW => 'Lorwyn',
MOR => 'Morningtide',
SHM => 'Shadowmoor',
EVE => 'Eventide',
ALA => 'Shards of Alara',
CON => 'Conflux',
ARB => 'Alara Reborn',
ZEN => 'Zendikar',
WWK => 'Worldwake',
ROE => 'Rise of the Eldrazi',
SOM => 'Scars of Mirrodin',
MBS => 'Mirrodin Besieged',
NPH => 'New Phyrexia',
ISD => 'Innistrad',
DKA => 'Dark Ascension',
AVR => 'Avacyn Restored',
RTR => 'Return to Ravnica',
GTC => 'Gatecrash',
DGM => 'Dragon\'s Maze',
THS => 'Theros',
BNG => 'Born of the Gods',
JOU => 'Journey into Nyx',
KTK => 'Khans of Tarkir',
FRF => 'Fate Reforged',
DTK => 'Dragons of Tarkir',
BFZ => 'Battle for Zendikar',
EXP => 'Zendikar Expedition',
OGW => 'Oath of the Gatewatch',
SOI => 'Shadows over Innistrad',
EMN => 'Eldritch Moon',
KLD => 'Kaladesh',
AER => 'Aether Revolt',
AKH => 'Amonkhet',
HOU => 'Hour of Devastation',
XLN => 'Ixalan',
RIX => 'Rivals of Ixalan',
DOM => 'Dominaria',
GNR => 'Guilds of Ravnica',
RNA => 'Ravnica Allegiance',
WAR => 'War of the Spark',
ELD => 'Throne of Eldraine',
THB => 'Theros Beyond Death',
CHR => 'Chronicles',
MMA => 'Modern Masters',
MM2 => 'Modern Masters 2015 Edition',
EMA => 'Eternal Masters',
MM3 => 'Modern Masters 2017 Edition',
IMA => 'Iconic Masters',
A25 => 'Masters 25',
UMA => 'Ultimate Masters',
MH1 => 'Modern Horizons',
CMD => 'Magic: The Gathering-Commander',
C13 => 'Commander 2013 Edition',
C14 => 'Commander 2014',
C15 => 'Commander 2015',
C16 => 'Commander 2016',
C17 => 'Commander 2017',
CM1 => 'Commander\'s Arsenal',
CMA => 'Commander Anthology',
CM2 => 'Commander Anthology Volume II',
C18 => 'Commander 2018',
C19 => 'Commander 2019',
CNS => 'Magic: The Gathering—Conspiracy',
CN2 => 'Conspiracy: Take the Crown',
E02 => 'Explorers of Ixalan',
BBD => 'Battlebond',
POR => 'Portal',
PO2 => 'Portal Second Age',
PTK => 'Portal Three Kingdoms',
UGL => 'Unglued',
UNH => 'Unhinged',
UST => 'Unstable',
LEA => 'Limited Edition Alpha',
Alpha => 'Limited Edition Alpha',
LEB => 'Limited Edition Beta',
Beta => 'Limited Edition Beta',
"2ED" => 'Unlimited Edition',
UNL => 'Unlimited Edition',
"3ED" => 'Revised Edition',
REV => 'Revised Edition',
"4ED" => 'Fourth Edition',
"5ED" => 'Fifth Edition',
"6ED" => 'Classic Sixth Edition',
"7ED" => 'Seventh Edition',
"8ED" => 'Eighth Edition',
"9ED" => 'Ninth Edition',
"10E" => 'Tenth Edition',
M10 => 'Magic 2010',
M11 => 'Magic 2011',
M12 => 'Magic 2012',
M13 => 'Magic 2013',
M14 => 'Magic 2014 Core Set',
M15 => 'Magic 2015 Core Set',
ORI => 'Magic Origins',
W16 => 'Welcome Deck 2016',
M19 => 'Core Set 2019',
M20 => 'Core Set 2020',
M21 => 'Core Set 2021'
);
1;