Module:Gemshop: Difference between revisions

From IdleOn MMO Wiki
mNo edit summary
mNo edit summary
Line 45: Line 45:
local ret = ""
local ret = ""
for _, item in data do
for _, item in pairs(data) do
if item[section] == section then
if item[section] == section then
tabledata[#tabledata+1] = item
tabledata[#tabledata+1] = item

Revision as of 16:00, 4 March 2024

Data Here

The data is raw data without any conversion

Maintenance Procedure: simply update the return value of ha.MTXinfo() in N.js


local data = mw.loadJsonData('Module:Gemshop/data.json')
local p = {}

-- itemDisplayName, mtxName, desc, maxPurchases, cost, extra stuff, total stuff
local ROW_TEMPLATE = [[<tr>
<td>\[\[File:%s.png|50px\]\]</td>
<td>%s</td>
<td>%s</td>
<td style="text-align:center;">%s</td>
<td>'''Base:''' %d%s%s</td>
</tr>]]

-- Gemshop data format.
--    {
--        "section": "Hats",
--        "name": "EquipmentHats46",
--        "mtxName": "Strawbiggy",
--        "itemDisplayName": "Strawbiggy",
--        "desc": "This is the ACTUAL strawberry from the Buddhist story about the Tiger and the Strawberry. No wonder the dangling man thought it so tasty!",
--        "cost": 250,
--        "no": 3,
--        "maxPurchases": 100000,
--        "qty": 1,
--        "costIncrement": 0
--    },


-- Trim whitespace from args, and treat blank args as nil
local function preprocessArg(s)
    if not s then
        return nil
    end
    s = s:match('^%s*(.-)%s*$') -- trim whitespace
    if s == '' then
        return nil
    else
        return s
    end
end

function p.bySections(frame)
	local args = frame.args
	local section = preprocessArg(args.section)
	local tabledata
	local ret = ""
	
	for _, item in pairs(data) do
		if item[section] == section then
			tabledata[#tabledata+1] = item
		end
	end
	
	for itemdata in tabledata do
		local maxPurchases = itemdata.maxPurchases == 100000 and "∞" or itemdata.maxPurchases
		local extra = itemdata.costIncrement > 0 and string.format([[<br/>'''Increment:''' %d<br/>'''Final:''' %d]], itemdata.costIncrement, itemdata.cost + itemdata.costIncrement * (itemdata.maxPurchases - 1)) or ""
		local total = (1 < itemdata.maxPurchases < 100000) and string.format([[br/>'''Total:''' %d]], (itemdata.maxPurchases / 2) * (itemdata.cost * 2 + itemdata.costIncrement * (itemdata.maxPurchases - 1))) or ""

		ret = ret .. string.format(
            ROW_TEMPLATE,
            itemdata.itemDisplayName,
            itemdata.mtxName,
            itemdata.desc,
            maxPurchases,
            itemdata.cost,
            extra,
            total
        )
	end

	return ret
	
end

return p