aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/tables.moon
diff options
context:
space:
mode:
Diffstat (limited to 'spec/inputs/tables.moon')
-rw-r--r--spec/inputs/tables.moon13
1 files changed, 7 insertions, 6 deletions
diff --git a/spec/inputs/tables.moon b/spec/inputs/tables.moon
index a1e861b..079be35 100644
--- a/spec/inputs/tables.moon
+++ b/spec/inputs/tables.moon
@@ -164,20 +164,21 @@ heroine =
164 age: 18 164 age: 18
165 job: "Princess" 165 job: "Princess"
166 likes: 166 likes:
167 # name: "kittens" 167 * name: "kittens"
168 img: "/image/kittens.png" 168 img: "/image/kittens.png"
169 # name: "flower" 169 * name: "flower"
170 img: "/image/flower.png" 170 img: "/image/flower.png"
171 items: 171 items:
172 # name: "ring" 172 * name: "ring"
173 amount: 2 173 amount: 2
174 # name: "necklace" 174 * name: "necklace"
175 amount: 1 175 amount: 1
176 status: 176 status:
177 desc: "weak" 177 desc: "weak"
178 # attribute: "health" 178 * attribute: "health"
179 value: 50 179 value: 50
180 # attribute: "mana" 180 * attribute: "mana"
181 value: 100 181 value: 100
182 182
183nil 183nil
184