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

From Veloren Wiki
Revision as of 21:05, 27 November 2021 by Scott Williams (talk | contribs)

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.getLootTables = function(frame)
	local npc = frame.args[1]
	local txt = '{| class="wikitable"\n|-\n! Item   !! Quantity !! Rarity'
	txt = txt .. '\n|-\n'
	loot_rarity = lootTable[npc][1]["chance"]
	loot_item = lootTable[npc][1]["item"]
	loot_quantity = lootTable[npc][1]["quantity"]
	return frame:expandTemplate{ title = 'LootRow', args = { itemname = loot_item, rarity = loot_rarity, quantity = loot_quantity } }

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