Module:SkillDx2: Difference between revisions

Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 20: Line 20:
-- 1.2 SKILL LINK
-- 1.2 SKILL LINK
if getSkill.skill[input] and getSkill.skill[input].link then -- Check if an alternate link for a page is set in skill data
if getSkill.skill[input] and getSkill.skill[input].link then -- Check if an alternate link for a page is set in skill data
name = '[[' .. getSkill.skill[input].link .. '|' .. getSkill.skill[input].name .. ']]'
name = getSkill.skill[input].link .. '|' .. getSkill.skill[input].name  
else
else
name = '[[' .. getSkill.skill[input].name .. ']]'
name = getSkill.skill[input].name
end
end
-- 3 NAME AND ATTRIBUTE
-- 3 NAME AND ATTRIBUTE
Line 40: Line 40:
-- 4.2 IF ICON PAGE EXISTS
-- 4.2 IF ICON PAGE EXISTS
if iconPage.exists == true then
if iconPage.exists == true then
getIcon = require('Module:Data/Icon/' .. game)
getIcon = require('Module:Data/Icon/dx2')
if getIcon.icon[attribute] then -- Check if attribute is set in skill data
if getIcon.icon[attribute] then -- Check if attribute is set in skill data
nameattribute = getIcon.icon[attribute] .. ' ' .. name .. namenote -- Set icon
nameattribute = getIcon.icon[attribute] .. ' ' .. name .. namenote -- Set icon

Revision as of 01:30, 11 November 2024

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

local getArgument = require('Module:Arguments').getArgument

local p = {}

function capitalFirst(str) -- Allows capitalization of the first letter of each word in a string; adapted from (https://stackoverflow.com/questions/20284515/capitalize-first-letter-of-every-word-in-lua)
    return (str:gsub("(%l)(%w*)", function(a,b) return string.upper(a)..b end))
end

function p.Main(frame) 
	local args = frame.args
	local game = 'dx2'
	local input = args[1]:lower()
	local getSkill = require('Module:Data/Skill/dx2')
	local iconPage = mw.title.makeTitle('Module', 'Data/Icon/dx2') -- Creates information about a given page

-- 1 SKILL NAME
	if not getSkill.skill[input] then --Error message for invalid skill
		error("Skill \"" .. input .. "\" not defined for dx2")
	end
-- 1.2 SKILL LINK
	if getSkill.skill[input] and getSkill.skill[input].link then -- Check if an alternate link for a page is set in skill data
		name = getSkill.skill[input].link .. '|' .. getSkill.skill[input].name 
	else	
		name = getSkill.skill[input].name
	end
-- 3 NAME AND ATTRIBUTE
-- 3.1 NAME NOTE
	if getSkill.skill[input] and getSkill.skill[input].name_note then
		namenote = frame:expandTemplate{ title = 'exp', args = { getSkill.skill[input].name_note } }
	else
		namenote = ''
	end
-- 4.1 SET ATTRIBUTE OUTPUT
	if getSkill.skill[input].attribute then
		attribute = getSkill.skill[input].attribute:lower()
	else
		attribute = ''
	end
	attributeout = capitalFirst(attribute)
-- 4.2 IF ICON PAGE EXISTS
	if iconPage.exists == true then
		getIcon = require('Module:Data/Icon/dx2')
		if getIcon.icon[attribute] then -- Check if attribute is set in skill data
			nameattribute = getIcon.icon[attribute] .. ' ' .. name .. namenote -- Set icon
		else
			nameattribute = name .. namenote .. '\n|style="text-align:center;"|' .. '[[' .. attributeout .. ']]'
		end
	end
-- 5 COST
	if getSkill.skill[input].cost == nil then
		cost = ''
	elseif getSkill.skill[input].cost == '' or getSkill.skill[input].cost == '—' then
		cost = '\n|style="text-align:center;"|' .. '—'
	else
		cost = '\n|style="text-align:center;"|' .. getSkill.skill[input].cost
	end
-- 6 POWER
	if getSkill.skill[input].pow == nil then
		power = ''
	elseif getSkill.skill[input].pow == '' or getSkill.skill[input].pow == '—' then
		power = '\n|style="text-align:center;"|' .. '—'
	else
		power = '\n|style="text-align:center;"|' .. getSkill.skill[input].pow	
	end
-- 7 TARGET
	if getSkill.skill[input].target == nil then
		target = ''
	elseif getSkill.skill[input].target == '' or getSkill.skill[input].target == '—' then
		target = '\n|style="text-align:center;"|' .. '—'
	else
		target = '\n|style="text-align:center;"|' .. getSkill.skill[input].target	
	end
-- 10 FINAL OUTPUT
	local output = nameattribute .. cost .. power .. target .. '\n|-'
	return output
end

return p