Module:ModuleGenerator: Difference between revisions

From The First Descendant Wiki
No edit summary
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 2: Line 2:


function p.socketFileName(frame)
function p.socketFileName(frame)
local socket = tostring(frame.args[1])
local socket = frame.args[1]
local sockets = {
local sockets = {
unknown = "Icon_RunesCapacity_Mini_000.png",
cerulean = "Icon_RunesCapacity_Mini_001.png",
cerulean = "Icon_RunesCapacity_Mini_001.png",
almandine = "Icon_RunesCapacity_Mini_002.png",
almandine = "Icon_RunesCapacity_Mini_002.png",
Line 11: Line 10:
rutile = "Icon_RunesCapacity_Mini_005.png",
rutile = "Icon_RunesCapacity_Mini_005.png",
}
}
--return contains(sockets, socket)
if contains(sockets, socket) == true then
return sockets[socket]
return sockets[socket]
end
end
--if contains(sockets, socket) == true then
return "Icon_RunesCapacity_Mini_000.png"
--return sockets[socket]
end
--end
--return sockets["unknown"]
--end


function p.rarityFileName(frame)
function p.rarityFileName(frame)
local rarity = frame:getParent().args["rarity"]
local rarity = frame.args[1]
local rarities = {
local rarities = {
none = "UI_RuneSlot_Tier.png",
standard = "UI_RuneSlot_Tier_Standard.png",
standard = "UI_RuneSlot_Tier_Standard.png",
rare = "UI_RuneSlot_Tier_Rare.png",
rare = "UI_RuneSlot_Tier_Rare.png",
Line 32: Line 27:
return rarities[rarity]
return rarities[rarity]
end
end
return rarities["none"] --default color
return "UI_RuneSlot_Tier.png"
end
end


function p.moduleClassFileName(frame)
function p.moduleClassFileName(frame)
local moduleClass = frame:getParent().args[1]
local moduleClass = frame.args[1]
local moduleClasses = {
local moduleClasses = {
descendant ="Icon_RunesClass_Mini_0_Color.png",
descendant ="Icon_RunesClass_Mini_0_Color.png",
Line 52: Line 47:


function p.specialSlotFileName(frame)
function p.specialSlotFileName(frame)
local specialSlot = frame:getParent().args[1]
local specialSlot = frame.args[1]
local trimmedSpecialSlot = string.gsub(specialSlot, "_(.*)","")
local specialSlots = {
local specialSlots = {
none="UI_RuneSlot_ChaBG00_Mini.png",
Skill = "UI_RuneSlot_ChaBG01_Mini.png",
tab="UI_RuneSlot_ChaBG01_Mini.png",
Sub = "UI_RuneSlot_ChaBG02_Mini.png"
skill="UI_RuneSlot_ChaBG02_Mini.png"
}
}
if contains(specialSlots, specialSlot) == true then
if contains(specialSlots, trimmedSpecialSlot) == true then
return specialSlots[specialSlot]
return specialSlots[trimmedSpecialSlot]
end
end
return specialSlots["none"]
return "UI_RuneSlot_ChaBG00_Mini.png"
end
end


function contains(table, key)
function contains(table, key)
for _, value in pairs(table) do
for _, value in pairs(table) do
if value == key then
if _ == key then
return true
return true
end
end

Latest revision as of 08:06, 30 June 2024

Documentation for this module may be created at Module:ModuleGenerator/doc

local p = {}

function p.socketFileName(frame)
	local socket = frame.args[1]
	local sockets = {
		cerulean = "Icon_RunesCapacity_Mini_001.png",
		almandine = "Icon_RunesCapacity_Mini_002.png",
		malachite = "Icon_RunesCapacity_Mini_003.png",
		xantic = "Icon_RunesCapacity_Mini_004.png",
		rutile = "Icon_RunesCapacity_Mini_005.png",
	}
	if contains(sockets, socket) == true then
		return sockets[socket]
	end
	return "Icon_RunesCapacity_Mini_000.png"
end

function p.rarityFileName(frame)
	local rarity = frame.args[1]
	local rarities = {
		standard = "UI_RuneSlot_Tier_Standard.png",
		rare = "UI_RuneSlot_Tier_Rare.png",
		ultimate = "UI_RuneSlot_Tier_Ultimate.png",
		transcendent = "UI_RuneSlot_Tier_Transcendent.png",
	}
	if contains(rarities, rarity) == true then
		return rarities[rarity]
	end
	return "UI_RuneSlot_Tier.png"
end

function p.moduleClassFileName(frame)
	local moduleClass = frame.args[1]
	local moduleClasses = {
		descendant ="Icon_RunesClass_Mini_0_Color.png",
		general = "Icon_RunesClass_Mini_A_Color.png",
		special = "Icon_RunesClass_Mini_B_Color.png",
		impact = "Icon_RunesClass_Mini_C_Color.png",
		highpower = "Icon_RunesClass_Mini_D_Color.png",
		melee = "Icon_RunesClass_Mini_Melee_Color.png"
	}
	if contains(moduleClasses, moduleClass) == true then
		return moduleClasses[moduleClass]
	end
	return moduleClasses["descendant"]
end

function p.specialSlotFileName(frame)
	local specialSlot = frame.args[1]
	local trimmedSpecialSlot = string.gsub(specialSlot, "_(.*)","")
	local specialSlots = {
		Skill = "UI_RuneSlot_ChaBG01_Mini.png",
		Sub = "UI_RuneSlot_ChaBG02_Mini.png"
	}
	
	if contains(specialSlots, trimmedSpecialSlot) == true then
		return specialSlots[trimmedSpecialSlot]
	end
	return "UI_RuneSlot_ChaBG00_Mini.png"
end

function contains(table, key)
	for _, value in pairs(table) do
		if _ == key then
			return true
		end
	end
	return false
end

return p