mod-hovercraft/init.lua
2013-07-28 17:08:45 +01:00

27 lines
639 B
Lua

dofile(minetest.get_modpath("hovercraft").."/hover.lua")
hover:register_hovercraft("hovercraft:hover_red" ,{
description = "Red Hovercraft",
textures = {"hovercraft_red.png"},
inventory_image = "hovercraft_red_inv.png",
max_speed = 10,
acceleration = 0.25,
deceleration = 0.025,
jump_velocity = 4.0,
fall_velocity = 1.0,
bounce = 0.5,
})
hover:register_hovercraft("hovercraft:hover_blue" ,{
description = "Blue Hovercraft",
textures = {"hovercraft_blue.png"},
inventory_image = "hovercraft_blue_inv.png",
max_speed = 12,
acceleration = 0.25,
deceleration = 0.05,
jump_velocity = 4,
fall_velocity = 1,
bounce = 0.8,
})