Module:Donnees jeu : Différence entre versions
Ligne 12 : | Ligne 12 : | ||
local nomCarteStr = trim(frame.args[2]) or "" | local nomCarteStr = trim(frame.args[2]) or "" | ||
local typeDonnees = trim(frame.args[3]) or "Cout" | local typeDonnees = trim(frame.args[3]) or "Cout" | ||
+ | local formationStr = "" | ||
local typeAmeliorationStr = "" | local typeAmeliorationStr = "" | ||
if typeCarteStr == "Amelioration" then | if typeCarteStr == "Amelioration" then | ||
typeAmeliorationStr = nomCarteStr | typeAmeliorationStr = nomCarteStr | ||
nomCarteStr = typeDonnees | nomCarteStr = typeDonnees | ||
− | typeDonnees = trim(frame.args[ | + | formationStr = trim(frame.args[4]) or "" |
+ | typeDonnees = trim(frame.args[5]) or "" | ||
end | end | ||
if typeDonnees == "Cout" then | if typeDonnees == "Cout" then | ||
Ligne 29 : | Ligne 31 : | ||
return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" | return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" | ||
end | end | ||
− | if Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][ | + | if Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][formationStr] == nil then |
− | return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " - " .. | + | return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " - " .. formationStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" |
end | end | ||
− | return Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][typeDonnees] | + | if Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][formationStr][typeDonnees] == nil then |
+ | return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " - " .. formationStr .. " - " .. typeDonnees .. " : non défini [[Catégorie:Données de jeu manquantes]]" | ||
+ | end | ||
+ | return Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][formationStr][typeDonnees] | ||
end | end | ||
if Data[typeCarteStr][nomCarteStr] == nil then | if Data[typeCarteStr][nomCarteStr] == nil then |
Version du 27 septembre 2018 à 06:52
La documentation pour ce module peut être créée à Module:Donnees jeu/doc
local p = {} local Data = mw.loadData('Module:Donnees jeu/Data') local AmeliorationType = mw.loadData('Module:Donnees jeu/AmeliorationType') function trim(s) return (string.gsub(s, "^%s*(.-)%s*$", "%1")) end function p.affichage(frame) local typeCarteStr = trim(frame.args[1]) or "" local nomCarteStr = trim(frame.args[2]) or "" local typeDonnees = trim(frame.args[3]) or "Cout" local formationStr = "" local typeAmeliorationStr = "" if typeCarteStr == "Amelioration" then typeAmeliorationStr = nomCarteStr nomCarteStr = typeDonnees formationStr = trim(frame.args[4]) or "" typeDonnees = trim(frame.args[5]) or "" end if typeDonnees == "Cout" then if Data[typeCarteStr] == nil then return typeCarteStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" end if typeCarteStr == "Amelioration" then if Data[typeCarteStr][typeAmeliorationStr] == nil then return typeCarteStr .. " - " .. typeAmeliorationStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" end if Data[typeCarteStr][typeAmeliorationStr][nomCarteStr] == nil then return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" end if Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][formationStr] == nil then return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " - " .. formationStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" end if Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][formationStr][typeDonnees] == nil then return typeCarteStr .. " - " .. typeAmeliorationStr .. " - " .. nomCarteStr .. " - " .. formationStr .. " - " .. typeDonnees .. " : non défini [[Catégorie:Données de jeu manquantes]]" end return Data[typeCarteStr][typeAmeliorationStr][nomCarteStr][formationStr][typeDonnees] end if Data[typeCarteStr][nomCarteStr] == nil then return typeCarteStr .. " - " .. nomCarteStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" end if Data[typeCarteStr][nomCarteStr][typeDonnees] == nil then return typeCarteStr .. " - " .. nomCarteStr .. " - " .. typeDonnees .. " : non défini [[Catégorie:Données de jeu manquantes]]" end return Data[typeCarteStr][nomCarteStr][typeDonnees] end if typeDonnees == "Amelioration" then retour = "== Améliorations ==\n" if Data[typeCarteStr] == nil then return typeCarteStr .. " : non défini" end if Data[typeCarteStr][nomCarteStr] == nil then return typeCarteStr .. " - " .. nomCarteStr .. " : non défini [[Catégorie:Données de jeu manquantes]]" end if Data[typeCarteStr][nomCarteStr][typeDonnees] == nil then return typeCarteStr .. " - " .. nomCarteStr .. " - " .. typeDonnees .. " : non défini [[Catégorie:Données de jeu manquantes]]" end for k, a in pairs (Data[typeCarteStr][nomCarteStr][typeDonnees]) do retour = retour .. "* " .. AmeliorationType[k].icone .. " " .. AmeliorationType[k].lien .. " x " .. a .. "\n" end if retour == "== Améliorations ==\n" then retour = retour .. "* Aucune\n" end return retour end end return p