-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCards.ts
56 lines (55 loc) · 2.75 KB
/
Cards.ts
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
import { type CATEGORIES } from '@/tools/markdown/constants';
/** Commonly used acronyms and their corresponding category. */
export const CARDS: Record<string, [string, (typeof CATEGORIES)[number][]]> =
// prettier-ignore
{
AoI: ['Act on Impulse', ['DDEFT', 'DDFT']],
BS: ['Brainstorm', []],
BW: ['Burning Wish', ['DDFT']],
CB: ["Conjurer's Bauble", ['DDFT']],
CR: ['Cabal Ritual', []],
CT: ['Cabal Therapy', []],
CoS: ['Cavern of Souls', []],
CoV: ['Chain of Vapor', []],
Con: ['Consider', ['DDFT', 'ENTOMBSDAY', 'MEANDECK']],
DA: ['Deep Analysis', ['MEANDECK']],
DD: ['Doomsday', []],
DR: ['Dark Ritual', []],
DW: ['Divining Witch', []],
Dur: ['Duress', []],
EF: ['Experimental Frenzy', ['DDEFT']],
ET: ['Echoing Truth', []],
Em: ['Emrakul, the Aeons Torn', []],
EoA: ['Edge of Autumn', ['DDFT', 'ENTOMBSDAY', 'MEANDECK']],
EoE: ['Echo of Eons', ['DDFT', 'MEANDECK']],
EtW: ['Empty the Warrens', ['DDEFT', 'DDFT']],
FoN: ['Force of Negation', []],
FoW: ['Force of Will', []],
GP: ['Gitaxian Probe', ['DDFT', 'MEANDECK']],
IC: ['Infernal Contract', ['DDFT']],
IU: ['Ideas Unbound', ['DDFT', 'ENTOMBSDAY', 'MEANDECK']],
LDV: ["Lim-Dul's Vault", ['DDEFT', 'ENTOMBSDAY', 'MEANDECK']],
LED: ["Lion's Eye Diamond", []],
LM: ['Laboratory Maniac', []],
LP: ['Lotus Petal', []],
Mm: ['Manamorphose', ['DDFT']],
NW: ["Night's Whisper", ['MEANDECK']],
PT: ['Personal Tutor', ['ENTOMBSDAY', 'MEANDECK']],
Pdt: ['Predict', ['ENTOMBSDAY', 'MEANDECK']],
PiF: ['Past in Flames', ['DDFT']],
Pnd: ['Ponder', []],
PoN: ['Pact of Negation', ['DDEFT', 'ENTOMBSDAY', 'MEANDECK']],
Pre: ['Preordain', []],
REB: ['Red Elemental Blast', []],
SE: ['Surgical Extraction', []],
SI: ['Shelldock Isle', []],
SW: ['Street Wraith', []],
SdT: ["Sensei's Divining Top", []],
SotV: ['Spoils of the Vault', ['DDFT']],
StP: ['Swords to Plowshares', []],
TO: ["Thassa's Oracle", []],
TW: ['Three Wishes', ['DDEFT', 'DDFT']],
ToA: ['Tendrils of Agony', []],
Tsz: ['Thoughtseize', []],
VoS: ['Veil of Summer', ['DDFT', 'MEANDECK']],
};