Module:Vehicle specifications
From Emergency Response: Liberty County Wiki
More actions
This documentation is transcluded from Module:Vehicle specifications/doc. Changes can be proposed in the talk page.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}/{{No documentation}} to the calling template's or parent's module documentation.| Function list |
|---|
| L 3 — p.main |
local p = {}
function p.main(frame)
local getArgs = require('Module:Arguments').getArgs
local args = getArgs(frame)
local _ = args[1]
if next(args) == nil then
return '|-|Error=\n\n{{error|The [[Template:Vehicle_specifications]] template requires at least one parameter to display content. Check the documentation for usage.}}'
end
local wikitext = ''
if args['price'] then
wikitext = wikitext .. '|-|Price=\n\n' .. "[[" .. args['price'] .. "]]" .. '\n\n'
end
if args['health'] then
wikitext = wikitext .. '|-|Health=\n\n' .. args['health'] .. '\n\n'
end
return wikitext
end
return p