Toggle menu
1.3K
1.7K
694
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 5: Line 5:
p.getLootTable = function(frame)
p.getLootTable = function(frame)
local npc = frame.args[1]
local npc = frame.args[1]
for k, v in pairs(lootTables[npc]) do
for k, v in pairs(lootTables{npc}) do
return k, v.item.rarity, v.item.quantity
return k, v.item.rarity, v.item.quantity
end
end

Revision as of 10:32, 23 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 lootTables = json.decode(mw.getCurrentFrame():expandTemplate{title='Template:Items.json'})

local p = {}
p.getLootTable = function(frame)
	local npc = frame.args[1]
	for k, v in pairs(lootTables{npc}) do
		return k, v.item.rarity, v.item.quantity
	end
end

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