Toggle menu
1.3K
1.7K
695
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 6:
for i=1, #lootTable, 1 do
if lootTable[i][1] ~= nil then
returnlocal loot = frame:expandTemplate{ title = 'LootRow', args = { itemname = lootTable[i][3] } }
end
end
return loot
 
end
return p

Revision as of 18:14, 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)
	for i=1, #lootTable, 1 do
		if lootTable[i][1] ~= nil then
			local loot = frame:expandTemplate{ title = 'LootRow', args = { itemname = lootTable[i][3] } }
		end
	end
	return loot
end
return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.