Modül:Item/data
Additional data for inferring item data.
item_data.itemtypes(member; table)- Map of item types to their respective categories.
item_data.weapontypes(member; table)- Map of weapon types to their respective categories. Not used on Undertale Wiki.
--- Additional data for inferring item data.
-- @file {table} item_data
--- Map of item types to their respective categories.
-- @property {table} item_data.itemtypes
--- Map of weapon types to their respective categories.
-- Not used on Undertale Wiki.
-- @property {table} item_data.weapontypes
return {
itemtypes = {
['Armor'] = 'Armor',
['Consumable'] = 'Consumables',
['Key Item'] = 'Key Items',
['Weapon'] = 'Weapons',
['The Legend of Tenna'] = 'The Legend of Tenna',
['Light World item'] = 'Light World items'
},
weapontypes = {
['[[Kris]]'] = 'Swords',
['[[Kris]], [[Noelle]]'] = 'Swords',
['[[Susie]]'] = 'Axes',
['[[Ralsei]]'] = 'Scarves',
['[[Noelle]]'] = 'Rings',
},
}