Module:Sandbox
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(f)
local args = f.args
local s = {
["Bulbasaur"] = {
["ja"] = "フシギダネ",
["type1"] = "Grass"
}
}
for k,v in pairs(f) do
for ka,va in pairs(k) do
s[va]=ka
end
end
return s
end
return p