Module:Collection : Différence entre versions

De X-Wing - Le wiki des figurines
Aller à : navigation, rechercher
(Page créée avec « local p = {} function p.parse(frame) return 'My fab’s squadron Generator speed select is ' .. frame.args[1] end return p »)
 
Ligne 1 : Ligne 1 :
 
local p = {}
 
local p = {}
 +
 +
local vaisseauBoite = {}
 +
Boite["UBISWX01"] = {
 +
vaisseaux = {
 +
xwing = 1,
 +
chasseurtie = 2,
 +
}
 +
}
 +
 
function p.parse(frame)
 
function p.parse(frame)
 
     return 'My fab’s squadron Generator speed select is ' .. frame.args[1]
 
     return 'My fab’s squadron Generator speed select is ' .. frame.args[1]
 
end
 
end
 
return p
 
return p

Version du 17 janvier 2018 à 10:44

La documentation pour ce module peut être créée à Module:Collection/doc

local p = {}

local vaisseauBoite = {}
Boite["UBISWX01"] = {
	vaisseaux = {
		xwing = 1,
		chasseurtie = 2,
	}
}

function p.parse(frame)
    return 'My fab’s squadron Generator speed select is ' .. frame.args[1]
end
return p