Toggle menu
1.3K
1.7K
696
23.9K
Veloren Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Loot tables: Difference between revisions

From Veloren Wiki
Content added Content deleted
No edit summary
No edit summary
Line 7: Line 7:
p.getLootTables = function(frame)
p.getLootTables = function(frame)
for x, y in pairs(jsonparse["chance"]) do
for x, y in pairs(jsonparse["chance"]) do
mw.log(x, y)
return x, y
end
end
end
end

Revision as of 15:15, 27 November 2021

This module retrieves data from the "Loot tables.json" template according to the {{PAGENAME}} (usually, an NPC name) provided as an argument value.


local json = require('Module:Json')
local jsonraw = '{"Paddy": { "chance":0.33, "item":"Blue Linen Coat", "quantity":1},"Yeti": { "chance":0.33, "item":"Blue Cloth Pads", "quantity":1},"Paddy": { "chance":0.33, "item":"Green Worker Shirt", "quantity":1}}'
local jsonparse = json.decode( jsonraw )

local p = {}

p.getLootTables = function(frame)
	for x, y in pairs(jsonparse["chance"]) do
		return x, y
	end
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.