-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.lua
64 lines (54 loc) · 2.73 KB
/
items.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
--------------------------------------------------------------------------------
local function ByValue(name, search_value, domain)
for _, value in pairs(domain) do
if value[name] == search_value then
return value
end
end
return domain['']
end
--------------------------------------------------------------------------------
local function AllByValue(name, search_value, domain)
local matches = {}
for _, value in pairs(domain) do
if value[name] == search_value then
table.insert(matches, value)
end
end
table.insert(matches, domain[''])
return matches
end
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
local Items = {}
Items.Values = {}
-- Nil Key
Items.Values[''] = { id = 0000, idx = 0, en = '' }
-- Items
Items.Values[8973] = { id = 8973, idx = 01, type = 'normal', en = 'SP Gobbie Key' }
Items.Values[4181] = { id = 4181, idx = 02, type = 'normal', en = 'Warp Scroll' }
Items.Values[5945] = { id = 5945, idx = 12, type = 'normal', en = 'Prize Powder' }
-- Special Items
Items.Values[8979] = { id = 8979, idx = 00, type = 'special', en = 'Imperator\'s Wing' }
Items.Values[8982] = { id = 8982, idx = 02, type = 'special', en = 'Intuila\'s Hide' }
Items.Values[8987] = { id = 8987, idx = 07, type = 'special', en = 'Strix\'s Tailfeather' }
Items.Values[8989] = { id = 8989, idx = 09, type = 'special', en = 'Arke\'s Wing' }
Items.Values[8990] = { id = 8990, idx = 10, type = 'special', en = 'Largantua\'s Shard' }
Items.Values[9031] = { id = 9031, idx = 19, type = 'special', en = 'Vedrfolnir\s Wing' }
Items.Values[9047] = { id = 9047, idx = 20, type = 'special', en = 'Immani. Hide' }
Items.Values[9051] = { id = 9051, idx = 23, type = 'special', en = 'Camahueto\'s Fur' }
Items.Values[9094] = { id = 9094, idx = 33, type = 'special', en = 'Clawberry\'s Coat' }
Items.Values[9097] = { id = 9097, idx = 35, type = 'special', en = 'Mhuufya\'s Beak' }
Items.Values[9098] = { id = 9098, idx = 39, type = 'special', en = 'G. Grenade\s Ash' }
Items.Values[9151] = { id = 9151, idx = 40, type = 'special', en = 'Sovereign\'s Hide' }
Items.Values[8974] = { id = 8974, idx = 53, type = 'special', en = 'Harold\s Ore' }
Items.Values[8975] = { id = 8975, idx = 54, type = 'special', en = 'Belinda\s Hide' }
--------------------------------------------------------------------------------
function Items.GetByProperty(key, value)
return ByValue(tostring(key), value, Items.Values)
end
--------------------------------------------------------------------------------
function Items.GetAllByProperty(key, value)
return AllByValue(tostring(key), value, Items.Values)
end
return Items