Module:Shiren 3 Wii Tile Data Cell: Difference between revisions

MDFW - The Mystery Dungeon Tree of Information.
Jump to navigation Jump to search
(Created page with "-------------------------------------------------------------------------------- -- -- Module:Shiren 3 Wii Tile Data Cell -- -- This module covers a list of special tiles in Japanese present in -- Shiren the Wanderer 3: The Sleeping Princess and the Karakuri Mansion. -- -- Parameters -- -- name: Insert the tile's English name there. -- -------------------------------------------------------------------------------- return { ["Spike Floor"] = { ["ja"] = "トゲ床"...")
 
No edit summary
Line 13: Line 13:


return {
return {
["Spike Floor"] = { ["ja"] = "トゲ床" },
["Anti-Projectile Square"] = { ["ja"] = "投てき封じの床" },
["Ice Floor"] = { ["ja"] = "氷の床" },
["Frozen Waterway"] = { ["ja"] = "凍った水路" },
["Oil Floor"] = { ["ja"] = "油の床" },
["Crows Feathers"] = { ["ja"] = "カラスの羽" },
["Anti-Scroll Square"] = { ["ja"] = "巻物封じの床" },
["Anti-Scroll Square"] = { ["ja"] = "巻物封じの床" },
["Anti-Staff Square"] = { ["ja"] = "杖封じの床" },
["Anti-Staff Square"] = { ["ja"] = "杖封じの床" },
["Anti-Projectile Square"] = { ["ja"] = "投てき封じの床" },
["Blue Metal Pole"] = { ["ja"] = "青い鉄柱" },
["Blue Metal Pole"] = { ["ja"] = "青い鉄柱" },
["Red Metal Pole"] = { ["ja"] = "赤い鉄柱" }
["Crows Feathers"] = { ["ja"] = "カラスの羽" },
["Frozen Waterway"] = { ["ja"] = "凍った水路" },
["Ice Floor"] = { ["ja"] = "氷の床" },
["Oil Floor"] = { ["ja"] = "油の床" },
["Red Metal Pole"] = { ["ja"] = "赤い鉄柱" },
["Spike Floor"] = { ["ja"] = "トゲ床" },
["Upstairs"] = { ["ja"] = "" }
}
}

Revision as of 21:11, 14 September 2024

Documentation for this module may be created at Module:Shiren 3 Wii Tile Data Cell/doc

--------------------------------------------------------------------------------
--
--					Module:Shiren 3 Wii Tile Data Cell
--
-- This module covers a list of special tiles in Japanese present in
-- Shiren the Wanderer 3: The Sleeping Princess and the Karakuri Mansion.
--
-- Parameters
--
-- name: Insert the tile's English name there.
--
--------------------------------------------------------------------------------

return {
	["Anti-Projectile Square"] = { ["ja"] = "投てき封じの床" },
	["Anti-Scroll Square"] = { ["ja"] = "巻物封じの床" },
	["Anti-Staff Square"] = { ["ja"] = "杖封じの床" },
	["Blue Metal Pole"] = { ["ja"] = "青い鉄柱" },
	["Crows Feathers"] = { ["ja"] = "カラスの羽" },
	["Frozen Waterway"] = { ["ja"] = "凍った水路" },
	["Ice Floor"] = { ["ja"] = "氷の床" },
	["Oil Floor"] = { ["ja"] = "油の床" },
	["Red Metal Pole"] = { ["ja"] = "赤い鉄柱" },
	["Spike Floor"] = { ["ja"] = "トゲ床" },
	["Upstairs"] = { ["ja"] = "" }
}