Module:Sandbox: Difference between revisions

MDFW - The Mystery Dungeon Tree of Information.
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 18: Line 18:
}
}
return s[f]
return s[f][0]
end
end


return p
return p

Revision as of 20:52, 2 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(f)
	local args = f.args
	local ja = {"フシギダネ"}
	local typePkmn = {"Grass"}
	local s = {
		["Bulbasaur"] = {0, 0}
	}
	
	return s[f][0]
end

return p