Module:Shiren 6 Trap Data Cell

MDFW - The Mystery Dungeon Tree of Information.
Revision as of 18:53, 21 September 2023 by Adkuate (talk | contribs) (Created page with "---------------------------------------------------------------------------------------------------- -- -- Module:Shiren 6 Trap Data Cell -- -- This module covers a list of traps in Japanese present in -- Mystery Dungeon: Shiren the Wanderer 6 - Coil Island Exploration Record. -- -- Parameters -- -- name: Insert the trap's English name there. -- ---------------------------------------------------------------------------------------...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Shiren 6 Trap Data Cell/doc

----------------------------------------------------------------------------------------------------
--
--                                        Module:Shiren 6 Trap Data Cell
--
-- This module covers a list of traps in Japanese present in 
-- Mystery Dungeon: Shiren the Wanderer 6 - Coil Island Exploration Record.
--
-- Parameters
--
-- name: Insert the trap's English name there.
--
----------------------------------------------------------------------------------------------------

p = {}

function p.shiren6TrapDataCell(f)
	-- Gets the arguments from #invoke:Shiren 6 Trap Data Cell|shiren6TrapDataCell
	local args = f.args

	-- List of every trap's Japanese names
	local list = {
		[""] = ""
	}

	-- Returns the selected trap's Japanese name
	return list[args.name]
end

return p