Module:Rescue Team Trap Data Cell: Difference between revisions

MDFW - The Mystery Dungeon Tree of Information.
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--
--
--                       Module:Rescue Team Trap Data Cell
-- Module:Rescue Team Trap Data Cell
--
--
-- This module covers a list of traps in Japanese present in
-- This module covers a list of traps in Japanese present in

Revision as of 23:14, 9 February 2024

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

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

p = {}

function p.rescueTeamTrapDataCell(f)
	-- Gets the arguments from #invoke:Rescue Team Trap Data Cell|rescueTeamTrapDataCell
	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