Module:Collection/Affichage : Différence entre versions
Ligne 7 : | Ligne 7 : | ||
Faction[1] = { | Faction[1] = { | ||
nom = "Alliance rebelle", | nom = "Alliance rebelle", | ||
− | icone = " | + | icone = "<i class=\"xwing-miniatures-font xwing-miniatures-font-rebel\"></i>", |
} | } | ||
Faction[2] = { | Faction[2] = { |
Version du 10 avril 2019 à 08:43
La documentation pour ce module peut être créée à Module:Collection/Affichage/doc
local p = {} local Boite = mw.loadData('Module:Collection/Boite') local Vaisseau = mw.loadData('Module:Collection/Vaisseau') local Faction = {} Faction[1] = { nom = "Alliance rebelle", icone = "<i class=\"xwing-miniatures-font xwing-miniatures-font-rebel\"></i>", } Faction[2] = { nom = "Empire galactique", icone = "[[Fichier:Logo_empire.png]]", } Faction[3] = { nom = "Racails et scélérats", icone = "[[Fichier:Logo_racaille.png]]", } Faction[4] = { nom = "Résistance", icone = "[[Fichier:Logo_resistance.png]]", } Faction[5] = { nom = "Premier Ordre", icone = "[[Fichier:Logo_premier_ordre.png]]", } function p.affichageVaisseauListe(vaissCollecTab, affIfZero) retour = "" for k, v in pairs (vaissCollecTab) do if (v ~= 0) or (affIfZero == "true") then if Vaisseau[k] ~= nil then retour = retour .. "* " .. Vaisseau[k].lien .. " x " .. v .. "\n" end end end return retour end function p.affichageVaisseauByFaction(vaissCollecTab, affIfZero) retour = "" for kFac, vFac in pairs (Faction) do affLogoFac = false for kVai, vVai in pairs (vaissCollecTab) do if Vaisseau[kVai] ~= nil then if ((vVai ~= 0) or (affIfZero == "true")) and (Vaisseau[kVai].factiondefaut == vFac.nom) then if affLogoFac == false then affLogoFac = true retour = retour .. vFac.icone .." " end retour = retour .. "[[" .. Vaisseau[kVai].nom .. "|" .. Vaisseau[kVai].icone .. "]] x " .. vVai .. " " end end end retour = retour .. "\n\n" end return retour end return p