Module:Rescue Team DX Trap Data Cell

MDFW - The Mystery Dungeon Tree of Information.
Revision as of 20:30, 14 October 2023 by Adkuate (talk | contribs) (Created page with "-------------------------------------------------------------------------------- -- -- Module:Rescue Team DX Trap Data Cell -- -- This module covers a list of traps in Japanese present in -- Pokémon Mystery Dungeon: Rescue Team DX. -- -- Parameters -- -- name: Insert the trap's English name there. -- -------------------------------------------------------------------------------- p = {} function p.rescueTeamDXTrapDataCell(f) -- Gets the argument...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Rescue Team DX Trap Data Cell/doc

--------------------------------------------------------------------------------
--
--                       Module:Rescue Team DX Trap Data Cell
--
-- This module covers a list of traps in Japanese present in
-- Pokémon Mystery Dungeon: Rescue Team DX.
--
-- Parameters
--
-- name: Insert the trap's English name there.
--
--------------------------------------------------------------------------------

p = {}

function p.rescueTeamDXTrapDataCell(f)
	-- Gets the arguments from #invoke:Rescue Team DX Trap Data Cell|rescueTeamDXTrapDataCell
	local args = f.args

	-- List of every trap's Japanese names
	local list = {
		["Chestnut Trap"] = "イガグリスイッチ",
		["Explosion Trap"] = "ばくはスイッチ",
		["Grimy Trap"] = "ベトベタスイッチ",
		["Gust Trap"] = "とっぷうスイッチ",
		["Mud Trap"] = "どろスイッチ",
		["Pitfall Trap"] = "おとしあな",
		["Poison Trap"] = "どくばりスイッチ",
		["Pokémon Trap"] = "ポケモンスイッチ",
		["PP-Zero Trap"] = "わざへりのわな",
		["Seal Trap"] = "ふういんスイッチ",
		["Selfdestruct Trap"] = "じばくスイッチ",
		["Slow Trap"] = "ヤドンスイッチ",
		["Slumber Trap"] = "バクスイッチ",
		["Spiked Tile"] = "まきびし",
		["Spin Trap"] = "ぐるぐるスイッチ",
		["Sticky Trap"] = "くっつきスイッチ",
		["Summon Trap"] = "よびよせスイッチ",
		["Warp Trap"] = "ワープスイッチ",
		["Carpet"] = "カーペット",
		["Rescue Spot"] = "きゅうじょちてん",
		["Stairs"] = "かいだん",
		["Wonder Tile"] = "ふしぎなゆか",
		["Warp Zone"] = "ワープゾーン"
	}

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

return p