5ee972fb55
- Fix attachment positions for drivers/passengers on all vehicles. - Adds red, green, and yellow hovercrafts. - Use `mod.conf` for name, description and dependencies. Requires MT 5.0.0 and above to work.
12 lines
318 B
Lua
12 lines
318 B
Lua
|
|
local name = "hover_green"
|
|
|
|
local definition = ...
|
|
|
|
definition.description = "Green hovercraft"
|
|
definition.inventory_image = "hovercraft_green_inv.png"
|
|
definition.wield_image = "hovercraft_green_inv.png"
|
|
definition.textures = {"hovercraft_green.png"}
|
|
|
|
vehicle_mash.register_vehicle("vehicle_mash:"..name, definition)
|