-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_testData.lua
More file actions
58 lines (58 loc) · 1.18 KB
/
_testData.lua
File metadata and controls
58 lines (58 loc) · 1.18 KB
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
DemoSampleData = {
{
id = 1,
type = "donut",
name = "Cake",
batters = {
batter = {
{ id = 1001, type = "Regular" },
{ id = 1002, type = "Chocolate" },
{ id = 1003, type = "Blueberry" },
{ id = 1004, type = "Devil's Food" }
}
},
topping = {
{ id = 5001, type = "None" },
{ id = 5002, type = "Glazed" },
{ id = 5005, type = "Sugar" },
{ id = 5007, type = "Powdered Sugar" },
{ id = 5006, type = "Chocolate with Sprinkles" },
{ id = 5003, type = "Chocolate" },
{ id = 5004, type = "Maple" }
}
},
{
id = 2,
type = "donut",
name = "Raised",
batters = {
batter = {
{ id = 1001, type = "Regular" }
},
},
topping = {
{ id = 5001, type = "None" },
{ id = 5002, type = "Glazed" },
{ id = 5005, type = "Sugar" },
{ id = 5003, type = "Chocolate" },
{ id = 5004, type = "Maple" }
}
},
{
id = 3,
type = "donut",
name = "Old Fashioned",
batters = {
batter = {
{ id = 1001, type = "Regular" },
{ id = 1002, type = "Chocolate" }
},
},
topping = {
{ id = 5001, type = "None" },
{ id = 5002, type = "Glazed" },
{ id = 5003, type = "Chocolate" },
{ id = 5004, type = "Maple" }
}
}
}