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 13: Line 13:
["Venusaur"] = "フシギバナ"
["Venusaur"] = "フシギバナ"
}
}
return print(t1[x])
return t1[x]
end
end

Revision as of 20:07, 1 October 2022



----------------------------------------------------------------------------------------------------
--
--                                        Module:Sandbox
--
-- Here you can set anything you want in this sandbox, as long as it uses the language Lua.
--[[Category:Sandbox]]
----------------------------------------------------------------------------------------------------

function test(x)
	t1 = {
		["Bulbasaur"] = "フシギダネ",
		["Ivysaur"] = "フシギソウ",
		["Venusaur"] = "フシギバナ"
	}
	return t1[x]
end