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]
return lootTable[npc]
return lootTable[1][1]
end
end

Revision as of 17:50, 28 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 lootTable = mw.text.jsonDecode(mw.getCurrentFrame():expandTemplate{title='Template:Loot tables.json'})

local p = {}

p.getLootTable = function(frame)
	local npc = frame.args[1]
	return lootTable[1][1]
	
end
return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.