Module:Etrian 1 Item Data Cell
Jump to navigation
Jump to search
This template covers a list of items and their names in Japanese present in Etrian Mystery Dungeon for use only in table Templates such as Module:Etrian 1 Dungeon Items table.
In this example, the attribute {{{item|}}} uses this module...
{{#invoke:Etrian 1 Dungeon Items table|main | category = Scrolls | item_1 = Light Scroll | floor_1 = 2 | frequency_1 = 20.00% }}
...and will result in:
![]() Scrolls | |||
---|---|---|---|
English | Japanese | Floors | Item Frequency |
Light Scroll | 2 | 20.00% |
--------------------------------------------------------------------------------
--
-- Module:Etrian 1 Item Data Cell
--
-- This module covers a list of items in Japanese present in
-- Etrian Mystery Dungeon.
--
--------------------------------------------------------------------------------
p = {}
function p.etrian1ItemDataCell(f)
-- Gets the arguments from #invoke:Etrian 1 Item Data Cell|etrian1ItemDataCell
local args = f.args
-- List of every item's Japanese names
local list = {
["Ental"] = "",
}
-- Returns the selected item
return list[args.name]
end
return p