Module:Sandbox

MDFW - The Mystery Dungeon Tree of Information.
Revision as of 20:18, 2 October 2022 by Adkuate (talk | contribs)
Jump to navigation Jump to search



----------------------------------------------------------------------------------------------------
--
--                                        Module:Sandbox
--
-- Here you can set anything you want in this sandbox, as long as it uses the language Lua.
-- Do not forget to add {{#invoke:Sandbox|<function name>}} in your template.
-- [[Category:Sandbox]]
----------------------------------------------------------------------------------------------------

p = {}

function p.pick(name)
	local en = name
	t1 = {
		["Bulbasaur"] = {
			["ja"] = "フシギダネ", 
			["type1"] = "Grass"
		}
	}
		
	if en then
		return t1[en](en)
	end
end

return p