« Module:Carte/Points » : différence entre les versions
defaut : red pog : plus clair |
Ajout des Point/0 à Point/31 |
||
(11 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
local points = { | |||
[' | ['aéroport'] = 'Airplane silhouette.svg', | ||
['aire protégée'] = 'Green pog.svg', | |||
['barrage'] = 'Arch dam 12x12 ne.svg', | |||
['bataille'] = 'Legenda miejsce bitwy.svg', | |||
['bâtiment'] = 'Solid blue.svg', | |||
['château'] = 'Gfi-set01-castle1.png', | |||
['cheminée'] = 'Factory-fontawesomish.svg', | |||
['col'] = 'Mountain pass 12x12 ne.svg', | |||
['cratère'] = 'Redpoint.svg', | |||
['église'] = 'Gfi-set01-church1.png', | |||
['gare'] = 'HR icon.png', | |||
['grotte'] = 'Gfi-set01-cave.svg ', | |||
['hôpital'] = 'Sign hospital.svg', | |||
['lac'] = 'Blue pog.svg', | |||
['localité'] = 'Red pog.svg', | |||
['mine'] = 'Mining symbol.svg', | |||
['montagne'] = 'TriangleArrow-Up.svg', | |||
['mosquée'] = 'Gfi-set01-mosque1.png', | |||
['naufrage'] = 'NChart-Symbol INT Wreck.svg', | |||
['phare'] = 'Legenda latarnia.svg', | |||
['pont'] = 'Bridge 12x12 ne.svg', | |||
['port'] = 'Legenda port.svg', | |||
['pyramide'] = 'Gfi-set01-pyramide.png', | |||
['refuge'] = 'RedHut.svg', | |||
['site'] = 'Point rouge.gif', | |||
['site archéologique'] = 'Gfi-set01-archaeology.png', | |||
['station de ski'] = 'Steel pog.svg', | |||
['synagogue'] = 'Gfi-set01-synagogue1.png', | |||
['tour'] = 'Gfi-set01-tower1.png ', | |||
['ville'] = 'City locator 4.svg', | |||
['volcan'] = 'Fire.svg', | |||
default = 'Red pog.svg', | default = 'Red pog.svg', | ||
} | } | ||
for i = 0, 31 do | |||
-- ajout de tous les point City locator X, en number et en string | |||
points[ i ] = 'City locator ' .. i .. '.svg' | |||
points[ tostring( i ) ] = 'City locator ' .. i .. '.svg' | |||
end | |||
return points |
Dernière version du 5 octobre 2016 à 12:46
local points = { ['aéroport'] = 'Airplane silhouette.svg', ['aire protégée'] = 'Green pog.svg', ['barrage'] = 'Arch dam 12x12 ne.svg', ['bataille'] = 'Legenda miejsce bitwy.svg', ['bâtiment'] = 'Solid blue.svg', ['château'] = 'Gfi-set01-castle1.png', ['cheminée'] = 'Factory-fontawesomish.svg', ['col'] = 'Mountain pass 12x12 ne.svg', ['cratère'] = 'Redpoint.svg', ['église'] = 'Gfi-set01-church1.png', ['gare'] = 'HR icon.png', ['grotte'] = 'Gfi-set01-cave.svg ', ['hôpital'] = 'Sign hospital.svg', ['lac'] = 'Blue pog.svg', ['localité'] = 'Red pog.svg', ['mine'] = 'Mining symbol.svg', ['montagne'] = 'TriangleArrow-Up.svg', ['mosquée'] = 'Gfi-set01-mosque1.png', ['naufrage'] = 'NChart-Symbol INT Wreck.svg', ['phare'] = 'Legenda latarnia.svg', ['pont'] = 'Bridge 12x12 ne.svg', ['port'] = 'Legenda port.svg', ['pyramide'] = 'Gfi-set01-pyramide.png', ['refuge'] = 'RedHut.svg', ['site'] = 'Point rouge.gif', ['site archéologique'] = 'Gfi-set01-archaeology.png', ['station de ski'] = 'Steel pog.svg', ['synagogue'] = 'Gfi-set01-synagogue1.png', ['tour'] = 'Gfi-set01-tower1.png ', ['ville'] = 'City locator 4.svg', ['volcan'] = 'Fire.svg',
default = 'Red pog.svg', }
for i = 0, 31 do -- ajout de tous les point City locator X, en number et en string points[ i ] = 'City locator ' .. i .. '.svg' points[ tostring( i ) ] = 'City locator ' .. i .. '.svg' end
return points