forked from Caffeinated-Auri/warcraftle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathword.js
111 lines (109 loc) · 1.92 KB
/
word.js
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
export const WORDS = [
{
word: "wrath",
hint: "a druid spell"
},
{
word: "smite",
hint: "a priest spell"
},
{
word: "renew",
hint: "a priest spell"
},
{
word: "glyph",
hint: "an item made by a scribe"
},
{
word: "blind",
hint: "an annoying rogue ability"
},
{
word: "blink",
hint: "a mage spell"
},
{
word: "agony",
hint: "a warlock spell"
},
{
word: "carve",
hint: "a survival hunter ability"
},
{
word: "block",
hint: "something you do with a shield"
},
{
word: "parry",
hint: "something melee classes can do with weapons"
},
{
word: "totem",
hint: "#justshamanthings"
},
{
word: "magic",
hint: "used by mages"
},
{
word: "guild",
hint: "a place for friends"
},
{
word: "auras",
hint: "used by paladins"
},
{
word: "frost",
hint: "a mage and death knight spec"
},
{
word: "druid",
hint: "treehugger",
},
{
word: "feral",
hint: "never gets invited to raids"
},
{
word: "rogue",
hint: "you hate them"
},
{
word: "havoc",
hint: "chaos demon"
},
{
word: "purge",
hint: "a spell that removes a magical effect"
},
{
word: "shear",
hint: ""
},
{
word: "mount",
hint: "gotta go fast"
},
{
word: "focus",
hint: "a hunter's energy source"
},
{
word: "gnome",
hint: "very puntable humanoid"
},
{
word: "troll",
hint: "plenty of these in trade chat"
},
{
word: "dwarf",
hint: "beards"
},
{
word: "magni",
hint: "azerite"
}];