-
Notifications
You must be signed in to change notification settings - Fork 0
/
words.lua
89 lines (86 loc) · 3.15 KB
/
words.lua
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
local words ={}
words["easy"] ={
{ word = "learn",
definition= "To gain knowledge or understanding of or skill in by study, instruction,or experience",
phrase = "Tell me and I forget. Teach me and I remember. Involve me and I learn."
},
{ word = "sleep",
definition= "A natural periodic suspension of consciousness during which the powers of the body are restored",
phrase = "I just need to get some sleep."
},
{ word = "lady",
definition= "A woman having proprietary rights or authority especially as a feudal superior",
phrase = "Her mother was always telling her to act like a lady."
},
{ word = "except",
definition= "With the exclusion of; excluding; save; but:;" ,
phrase = "except the Braves did not win 14 straight pennants."
},
{ word = "bluff",
definition= "Good-naturedly direct, blunt, or frank; heartily outspoken." ,
phrase = "His courage was all bluff •A noun sense fr 1849 is ''an excuse'' (1870s+)."
},
{ word = "work",
definition= "Exertion or effort directed to produce or accomplish something; labor; toil." ,
phrase = "Team work is important; it helps to put the blame on someone else."
},
{ word = "avenue",
definition= "a way of approaching a problem or making progress toward something",
phrase = "three possible avenues of research suggested themselves."
},
{ word = "road",
definition= "a wide way leading from one place to another.",
phrase = "one way can have multiple roads."
},
{
word = "strength",
definition= "a good or beneficial quality or attribute of a person or thing.",
phrase = "the strengths and weaknesses of their sales and marketing operation."
},
{
word = "power",
definition= "the ability to do something or act in a particular way, especially as a faculty or quality.",
phrase = "the politicians get drunk with power not with booze"
},
{
word = "vortex",
definition= "a mass of whirling fluid or air, especially a whirlpool or whirlwind.",
phrase = "a whirling vortex of smoke."
},
{
word = "luxury",
definition= "the state of great comfort and extravagant living.",
phrase = "we'll live in great comfort."
}
}
words["hard"] ={
{ word = "avenue",
definition= "a way of approaching a problem or making progress toward something",
phrase = "three possible avenues of research suggested themselves."
},
{ word = "road",
definition= "a wide way leading from one place to another.",
phrase = "one way can have multiple roads."
},
{
word = "strength",
definition= "a good or beneficial quality or attribute of a person or thing.",
phrase = "the strengths and weaknesses of their sales and marketing operation."
},
{
word = "power",
definition= "the ability to do something or act in a particular way, especially as a faculty or quality.",
phrase = "the politicians get drunk with power not with booze"
},
{
word = "vortex",
definition= "a mass of whirling fluid or air, especially a whirlpool or whirlwind.",
phrase = "a whirling vortex of smoke."
},
{
word = "luxury",
definition= "the state of great comfort and extravagant living.",
phrase = "we'll live in great comfort."
},
}
return words