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 parentFrame = frame:getParent()
local args = parentFrame and parentFrame.args or frame.args
local price = args['price'] or ''
local health = args['health'] or ''
local wikitext = '<tabber>\n\n|-|Price=\n\n' .. price .. '\n\n|-|Health=\n\n' .. health .. '\n\n</tabber>'
return wikitext
end
return p