Module:Rescue Team Trap Data Cell: Difference between revisions
Jump to navigation
Jump to search
(Created page with "-------------------------------------------------------------------------------- -- -- 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 #...") |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ||
-- | -- | ||
-- | -- 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 | ||
Line 12: | Line 12: | ||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ||
return { | |||
["Chestnut Trap"] = { ["ja"] = "イガグリスイッチ" }, | |||
["Explosion Trap"] = { ["ja"] = "ばくはスイッチ" }, | |||
- | ["Grimy Trap"] = { ["ja"] = "ベトベタスイッチ" }, | ||
["Gust Trap"] = { ["ja"] = "とっぷうスイッチ" }, | |||
["Mud Trap"] = { ["ja"] = "どろスイッチ" }, | |||
["Pitfall Trap"] = { ["ja"] = "おとしあな" }, | |||
["Poison Trap"] = { ["ja"] = "どくばりスイッチ" }, | |||
["Pokémon Trap"] = { ["ja"] = "ポケモンスイッチ" }, | |||
} | ["PP-Zero Trap"] = { ["ja"] = "わざへりのわな" }, | ||
["Seal Trap"] = { ["ja"] = "ふういんスイッチ" }, | |||
["Selfdestruct Trap"] = { ["ja"] = "じばくスイッチ" }, | |||
["Slow Trap"] = { ["ja"] = "ヤドンスイッチ" }, | |||
["Slumber Trap"] = { ["ja"] = "バクスイッチ" }, | |||
["Spiked Tile"] = { ["ja"] = "まきびし" }, | |||
["Spin Trap"] = { ["ja"] = "ぐるぐるスイッチ" }, | |||
["Sticky Trap"] = { ["ja"] = "くっつきスイッチ" }, | |||
["Summon Trap"] = { ["ja"] = "よびよせスイッチ" }, | |||
["Warp Trap"] = { ["ja"] = "ワープスイッチ" }, | |||
["Carpet"] = { ["ja"] = "カーペット" }, | |||
["Rescue Spot"] = { ["ja"] = "きゅうじょちてん" }, | |||
["Stairs"] = { ["ja"] = "かいだん" }, | |||
["Wonder Tile"] = { ["ja"] = "ふしぎなゆか" }, | |||
["Warp Zone"] = { ["ja"] = "ワープゾーン" } | |||
} |
Latest revision as of 18:53, 11 August 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.
--
--------------------------------------------------------------------------------
return {
["Chestnut Trap"] = { ["ja"] = "イガグリスイッチ" },
["Explosion Trap"] = { ["ja"] = "ばくはスイッチ" },
["Grimy Trap"] = { ["ja"] = "ベトベタスイッチ" },
["Gust Trap"] = { ["ja"] = "とっぷうスイッチ" },
["Mud Trap"] = { ["ja"] = "どろスイッチ" },
["Pitfall Trap"] = { ["ja"] = "おとしあな" },
["Poison Trap"] = { ["ja"] = "どくばりスイッチ" },
["Pokémon Trap"] = { ["ja"] = "ポケモンスイッチ" },
["PP-Zero Trap"] = { ["ja"] = "わざへりのわな" },
["Seal Trap"] = { ["ja"] = "ふういんスイッチ" },
["Selfdestruct Trap"] = { ["ja"] = "じばくスイッチ" },
["Slow Trap"] = { ["ja"] = "ヤドンスイッチ" },
["Slumber Trap"] = { ["ja"] = "バクスイッチ" },
["Spiked Tile"] = { ["ja"] = "まきびし" },
["Spin Trap"] = { ["ja"] = "ぐるぐるスイッチ" },
["Sticky Trap"] = { ["ja"] = "くっつきスイッチ" },
["Summon Trap"] = { ["ja"] = "よびよせスイッチ" },
["Warp Trap"] = { ["ja"] = "ワープスイッチ" },
["Carpet"] = { ["ja"] = "カーペット" },
["Rescue Spot"] = { ["ja"] = "きゅうじょちてん" },
["Stairs"] = { ["ja"] = "かいだん" },
["Wonder Tile"] = { ["ja"] = "ふしぎなゆか" },
["Warp Zone"] = { ["ja"] = "ワープゾーン" }
}