Module:Sandbox: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 8: | Line 8: | ||
---------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- | ||
function p.pick(name, | p = {} | ||
function p.pick(name, getVar) | |||
local argsA = name.args | local argsA = name.args | ||
local argsB = | local argsB = getVar.args | ||
local list = {} | local list = {} | ||
list = { | list = { |
Revision as of 19:23, 3 October 2022
----------------------------------------------------------------------------------------------------
--
-- 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, getVar)
local argsA = name.args
local argsB = getVar.args
local list = {}
list = {
["Bulbasaur"] = {
["ja"] = "フシギダネ",
["type1"] = "Grass"
}
}
if argsA and argsB then
return print(list[argsA][argsB])
end
end
return p