-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_1a.lua
120 lines (110 loc) · 2.42 KB
/
data_1a.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
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
-- data_1a.lua
--
-- Copyright 2010 Brandon Blodget
--
-- This file is part of "Love To Type."
--
-- "Love To Type" is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
-- "Love To Type" is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with "Love To Type". If not, see <http://www.gnu.org/licenses/>.
module(..., package.seeall);
name="Lesson 1-A"
-- home row
target_wpm = 15
actual_wpm = 0
nonsense_len = 2
nonsense = {}
nonsense.size = 16
nonsense.words_per_index = 1
nonsense[1] = "aaa"
nonsense[2] = "jjj"
nonsense[3] = "sss"
nonsense[4] = "kkk"
nonsense[5] = "ddd"
nonsense[6] = "lll"
nonsense[7] = "fff"
nonsense[8] = ";;;"
nonsense[9] = "kkk"
nonsense[10] = "sss"
nonsense[11] = ";;;"
nonsense[12] = "fff"
nonsense[13] = "jjj"
nonsense[14] = "aaa"
nonsense[15] = "lll"
nonsense[16] = "ddd"
intro = {}
intro.size = 8
intro[1] = "key: home\nHome row"
intro[2] = intro[1]
intro[3] = intro[1]
intro[4] = intro[1]
intro[5] = intro[1]
intro[6] = intro[1]
intro[7] = intro[1]
intro[8] = intro[1]
intro[9] = intro[1]
intro[10] = intro[1]
intro[11] = intro[1]
intro[12] = intro[1]
intro[13] = intro[1]
intro[14] = intro[1]
intro[15] = intro[1]
intro[16] = intro[1]
letter = {}
letter.size = 8
letter[1] = "a"
letter[2] = "s"
letter[3] = "d"
letter[4] = "f"
letter[5] = "j"
letter[6] = "k"
letter[7] = "l"
letter[8] = ";"
short ={}
short.size = 15
short.words_per_index = 1
short[1] = "skd"
short[2] = "add"
short[3] = "all"
short[4] = "as"
short[5] = "kaf"
short[6] = "sad"
short[7] = "fad"
short[8] = "ja;"
short[9] = "ask;"
short[10] = "all;"
short[11] = "jal"
short[12] = "lad"
short[13] = "dad"
short[14] = "ads"
short[15] = "ask"
long ={}
long.size = 19
long.words_per_index = 1
long[1] = "lads"
long[2] = "daks"
long[3] = "lakf"
long[4] = "dlsk"
long[5] = "ajds"
long[6] = "jal;"
long[7] = "salad"
long[8] = "flask"
long[9] = "lass"
long[10] = "jakl"
long[11] = "falls"
long[12] = "alas"
long[13] = "adds"
long[14] = "asks"
long[15] = "dads"
long[16] = "fads"
long[17] = "fall"
long[18] = "flak"
long[19] = "sass"