mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-10-28 20:28:21 +01:00
28 lines
877 B
Lua
28 lines
877 B
Lua
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
local tt_help = S("Flight Duration:")
|
|
local description = S("Firework Rocket")
|
|
|
|
local function register_rocket(n, duration, force)
|
|
minetest.register_craftitem("mcl_fireworks:rocket_" .. n, {
|
|
description = description,
|
|
_tt_help = tt_help .. " " .. duration,
|
|
inventory_image = "mcl_fireworks_rocket.png",
|
|
stack_max = 64,
|
|
on_use = function(itemstack, user, pointed_thing)
|
|
local elytra = mcl_playerplus.elytra[user]
|
|
if elytra.active and elytra.rocketing <= 0 then
|
|
elytra.rocketing = duration
|
|
if not minetest.is_creative_enabled(user:get_player_name()) then
|
|
itemstack:take_item()
|
|
end
|
|
minetest.sound_play("mcl_fireworks_rocket", {pos = user:get_pos()})
|
|
end
|
|
return itemstack
|
|
end,
|
|
})
|
|
end
|
|
|
|
register_rocket(1, 2.2, 10)
|
|
register_rocket(2, 4.5, 20)
|
|
register_rocket(3, 6, 30)
|