45 lines
1.4 KiB
Lua
45 lines
1.4 KiB
Lua
color1 = minetest.setting_get("color1") or "292421"
|
|
color2 = minetest.setting_get("color2") or "0000FF"
|
|
color3 = minetest.setting_get("color3") or "00FF00"
|
|
color4 = minetest.setting_get("color4") or "F5F5F5"
|
|
color5 = minetest.setting_get("color5") or "FF6103"
|
|
color6 = minetest.setting_get("color6") or "FF0000"
|
|
color7 = minetest.setting_get("color7") or "FFFF00"
|
|
color8 = minetest.setting_get("color8") or "FF69B4"
|
|
|
|
local source_list = {
|
|
{"black", "Color1", color1, 40, 36, 33},
|
|
{"blue", "Color2", color2, 0, 0, 255},
|
|
{"green", "Color3", color3, 0, 255, 0},
|
|
{"white", "Color4", color4, 245, 245, 245},
|
|
{"orange", "Color5", color5, 255, 97, 3},
|
|
{"red", "Color6", color6, 255, 0, 0},
|
|
{"yellow", "Color7", color7, 255, 255, 0},
|
|
{"pink", "Color8", color8, 255, 105, 180}
|
|
}
|
|
|
|
for i in ipairs(source_list) do
|
|
local color = source_list[i][1]
|
|
local desc = source_list[i][2]
|
|
local colour = source_list[i][3]
|
|
local red = source_list[i][4]
|
|
local green = source_list[i][5]
|
|
local blue = source_list[i][6]
|
|
|
|
dofile(minetest.get_modpath("hovercraft").."/hover.lua")
|
|
|
|
hover:register_hovercraft("hovercraft:hover_" .. color,{
|
|
description = color .."Hovercraft",
|
|
textures = {"hovercraft.png^[colorize:#"..colour..":70"},
|
|
wield_image = "none.png",
|
|
inventory_image = "hovercraft_inv.png^[colorize:#"..colour..":70",
|
|
max_speed = 10,
|
|
acceleration = 0.25,
|
|
deceleration = 0.05,
|
|
jump_velocity = 4.0,
|
|
fall_velocity = 1.0,
|
|
bounce = 0.5,
|
|
})
|
|
|
|
end
|