Module:Torneko 1 Item Data Cell

MDFW - The Mystery Dungeon Tree of Information.
Revision as of 21:39, 20 February 2024 by Adkuate (talk | contribs) (Created page with "-------------------------------------------------------------------------------- -- -- Module:Torneko 1 Item Data Cell -- -- This module covers a list of items in Japanese present in -- Torneko's Great Adventure: Mystery Dungeon. -- -- Parameters -- -- name: Insert the item's English name there. -- -------------------------------------------------------------------------------- p = {} function p.torneko1ItemDataCell(f) -- Gets the arguments from #invoke:Torneko 1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Torneko 1 Item Data Cell/doc

--------------------------------------------------------------------------------
--
--						Module:Torneko 1 Item Data Cell
--
-- This module covers a list of items in Japanese present in
-- Torneko's Great Adventure: Mystery Dungeon.
--
-- Parameters
--
-- name: Insert the item's English name there.
--
--------------------------------------------------------------------------------

p = {}

function p.torneko1ItemDataCell(f)
	-- Gets the arguments from #invoke:Torneko 1 Item Data Cell|torneko1ItemDataCell
	local args = f.args

	-- List of every item's Japanese names
	local list = {
		["Wood Arrow"] = "木の失",
		["Steel Arrow"] = "鉄の失",
		["Silver Arrow"] = "銀の失",
		["Safe"] = "鉄の金庫",
		["Jewel Chest"] = "王様の宝石箱",
		["Box of Happiness"] = "しあわせの箱",
		["Mystery Box"] = "奇妙な箱",
		["Bread"] = "パン",
		["Big Bread"] = "大きいパン",
		["Moldy Bread"] = "くさったパン",
		["Medical Herb"] = "薬草",
		["Elixir Herb"] = "弟切草",
		["Antidote Herb"] = "毒けし草",
		["Strength Seed"] = "ちからの種",
		["Luck Seed"] = "幸せの種",
		["Agility Seed"] = "すばやさの種",
		["Eyedrop Herb"] = "目薬草",
		["Poison Herb"] = "毒草",
		["Blinding Herb"] = "目つぶし草",
		["Muddle Herb"] = "まどわし草",
		["Confuse Herb"] = "メダパニ草",
		["Sleep Herb"] = "ラリホー草",
		["Return Herb"] = "ルーラ草",
		["Blaze Herb"] = "火炎草",
		["Gold"] = "ゴールド",
		["Strength Ring"] = "ちからの指輪",
		["Antidote Ring"] = "毒けしの指輪",
		["Wakeful Ring"] = "眠らずの指輪",
		["Return Ring"] = "ルーラの指輪",
		["Belly Ring"] = "ハラヘラズの指輪",
		["Thief Ring"] = "とうぞくの指輪",
		["Scan Ring"] = "見とおしの指輪",
		["Adornment Ring"] = "きれいな指輪",
		["Vision Ring"] = "シャドーの指輪",
		["Starve Ring"] = "ハラペコの指輪",
		["Disarm Ring"] = "ワナ抜けの指輪",
		["Puppet Ring"] = "人形よけの指輪",
		["Awaken Ring"] = "ザメハの指輪",
		["Bikill Scroll"] = "バイキルトの巻物",
		["Upper Scroll"] = "スカラの巻物",
		["Plating Scroll"] = "メッキの巻物",
		["Uncurse Scroll"] = "シャナクの巻物",
		["Identify Scroll"] = "インパスの巻物",
		["Torch Scroll"] = "レミーラの巻物",
		["Numb Scroll"] = "かなしばりの巻物",
		["Repel Scroll"] = "聖域の巻物",
		["Outside Scroll"] = "リレミトの巻物",
		["Ultimate Scroll"] = "さいごの巻物",
		["Victory Scroll"] = "証明の巻物",
		["Clairvoyant Scroll"] = "千里眼の巻物",
		["Eavesdrop Scroll"] = "地獄耳の巻物",
		["Bread Scroll"] = "パンの巻物",
		["Re-charge Scroll"] = "祈りの巻物",
		["Bang Scroll"] = "イオの巻物",
		["Stopspell Scroll"] = "くちなしの巻物",
		["Sandglass Scroll"] = "時の砂の巻物",
		["Trap Scroll"] = "ワナの巻物",
		["Chance Scroll"] = "パルプンテの巻物",
		["Leather Shield"] = "皮の盾",
		["Bronze Shield"] = "青銅の盾",
		["Scale Shield"] = "うろこの盾",
		["Mirror Shield"] = "みかがみの盾",
		["Steel Shield"] = "鋼鉄の盾",
		["Dragon Shield"] = "ドラゴンシールド",
		["Metal Babble Shield"] = "はぐれメタルの盾",
		["Thunder Staff"] = "いかずちの杖",
		["Slow Staff"] = "ボミオスの杖",
		["Sleep Staff"] = "ラリホーの杖",
		["Chaos Staff"] = "メダパニの杖",
		["Seal Staff"] = "封印の杖",
		["Expel Staff"] = "バシルーラの杖",
		["Change Staff"] = "変化の杖",
		["Speed Up Staff"] = "ピオリムの杖",
		["Invisible Staff"] = "レムオルの杖",
		["Prevention Staff"] = "転ばぬ先の杖",
		["Cloning Staff"] = "分裂の杖",
		["Beat Staff"] = "ザキの杖",
		["Multi-Edge Staff"] = "もろ刃の杖",
		["Poverty Staff"] = "大損の杖",
		["Club"] = "こん棒",
		["Gold Sword"] = "金の剣",
		["Copper Sword"] = "銅の剣",
		["Steel Axe"] = "鉄の斧",
		["Dragon Sword"] = "ドラゴンキラー",
		["Metal Babble Sword"] = "はぐれメタルの剣",
		["Abacus Sword"] = "正義のソロバン"
	}

	-- Returns the selected item in Japanese
	return list[args.name]
end

return p