Module:Carte/Points : Différence entre versions
m |
(Ajout des Point/0 à Point/31) |
||
(3 révisions intermédiaires par 2 utilisateurs non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
− | + | local points = { | |
['aéroport'] = 'Airplane silhouette.svg', | ['aéroport'] = 'Airplane silhouette.svg', | ||
['aire protégée'] = 'Green pog.svg', | ['aire protégée'] = 'Green pog.svg', | ||
Ligne 5 : | Ligne 5 : | ||
['bataille'] = 'Legenda miejsce bitwy.svg', | ['bataille'] = 'Legenda miejsce bitwy.svg', | ||
['bâtiment'] = 'Solid blue.svg', | ['bâtiment'] = 'Solid blue.svg', | ||
− | |||
['château'] = 'Gfi-set01-castle1.png', | ['château'] = 'Gfi-set01-castle1.png', | ||
['cheminée'] = 'Factory-fontawesomish.svg', | ['cheminée'] = 'Factory-fontawesomish.svg', | ||
Ligne 35 : | Ligne 34 : | ||
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 |
Version actuelle datée du 5 octobre 2016 à 12:46
La documentation pour ce module peut être créée à Module:Carte/Points/doc
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