Module:Torneko 1 Trap Data Cell
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Torneko 1 Trap Data Cell/doc
--------------------------------------------------------------------------------
--
-- Module:Torneko 1 Trap Data Cell
--
-- This module covers a list of traps in Japanese present in
-- Torneko's Great Adventure: Mystery Dungeon.
--
-- Parameters
--
-- name: Insert the trap's English name there.
--
--------------------------------------------------------------------------------
p = {}
function p.torneko1TrapDataCell(f)
-- Gets the arguments from #invoke:Torneko 1 Trap Data Cell|torneko1TrapDataCell
local args = f.args
-- List of every trap's Japanese names
local list = {
["Acid Trap"] = "硫酸",
["Arrow Trap"] = "矢",
["Bear Trap"] = "トラばさみ",
["Gas Trap"] = "睡眠ガス",
["Mine Trap"] = "地雷",
["Pitfall Trap"] = "落とし穴",
["Poison Arrow Trap"] = "毒矢",
["Rock Trap"] = "石ころ",
["Warp Pad"] = "ワープゾーン"
}
-- Returns the selected trap's Japanese name
return list[args.name]
end
return p