Toggle menu
1
18
17
345
Emergency Response: Liberty County Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Vehicle specifications

From Emergency Response: Liberty County Wiki
Revision as of 12:52, 20 February 2026 by Lucah1337 (talk | contribs)
Module documentation[view][edit][history][purge]
This documentation is transcluded from Module:Vehicle specifications/doc. Changes can be proposed in the talk page.
Function list
L 3 — p.main

local p = {}

function p.main(frame)
    local getArgs = require('Module:Arguments').getArgs
    local args = getArgs(frame)
    
    local err = '|-|Error=\n\n{{error|The [[Template:Vehicle_specifications|Vehicle_specifications]] has not been configured correctly. Check the documentation for usage.}}'

	if args['form_factor'] == nil then
	    return err
	end

    local wikitext = '|-|General=\n\n{|class="wikitable vehicle-specifications-table'

	if args['manufacturer'] then
		wikitext = wikitext .. '\n\n|-\n\n|Manufacturer\n\n|' .. args['manufacturer']
	end

	if args['form_factor'] then
		wikitext = wikitext .. '\n\n|-\n\n|Form factor\n\n|' .. args['form_factor']
	end
	
	wikitext = wikitext .. '\n\n|}\n\n|-|Performance=\n\n{|class="wikitable vehicle-specifications-table'
	
	if args['top_speed'] then
		wikitext = wikitext .. '\n\n|-\n\n|Top speed\n\n|' .. args['top_speed'] .. ' <small>MPH</small>'
	end
	
	wikitext = wikitext .. '\n\n|}\n\n|-|Structure=\n\n{|class="wikitable vehicle-specifications-table'
	
	if args['health'] then
		wikitext = wikitext .. '\n\n|-\n\n|Manufacturer\n\n|' .. args['health'] .. ' HP'
	end
	
	wikitext = wikitext .. '\n\n|}\n\n|-|Frame=\n\n{|class="wikitable vehicle-specifications-table'
	
	if args['seats'] then
		wikitext = wikitext .. '\n\n|-\n\n|Seats\n\n|' .. args['seats']
	end
	
	wikitext = wikitext .. '\n\n|}'

    return wikitext
end

return p
🍪 Cookies help us deliver our services. By using our site, you agree to our use of cookies.