forked from minetest-mods/jumping
Compare commits
12 Commits
nalc-1.2.0
...
master
Author | SHA1 | Date | |
---|---|---|---|
35601d5c66 | |||
02eeafdc03 | |||
75d0b9b9ed | |||
4345462384 | |||
41170cabc4 | |||
9519784885 | |||
93ad0f555f | |||
fb4ba8ff96 | |||
b5205e4e7d | |||
4deba41966 | |||
811847b0e7 | |||
f375986e33 |
@ -1 +0,0 @@
|
||||
default
|
@ -1 +0,0 @@
|
||||
adds trampolines, cushions, ...
|
54
init.lua
54
init.lua
@ -7,14 +7,14 @@ local trampolinebox = {
|
||||
{ 0.4, -0.5, -0.5, 0.5, -0.2, -0.4},
|
||||
{ 0.4, -0.5, 0.4, 0.5, -0.2, 0.5},
|
||||
{-0.5, -0.5, 0.4, -0.4, -0.2, 0.5},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
local cushionbox = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{-0.5, -0.5, -0.5, 0.5, -0.3, 0.5},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
local trampoline_punch = function(pos, node)
|
||||
@ -35,6 +35,7 @@ local power_decrease = function(pos, node)
|
||||
end
|
||||
end
|
||||
|
||||
local use_texture_alpha = minetest.features.use_texture_alpha_string_modes and "clip" or nil
|
||||
for i = 1, 6 do
|
||||
minetest.register_node("jumping:trampoline"..i, {
|
||||
description = "Trampoline",
|
||||
@ -48,17 +49,19 @@ for i = 1, 6 do
|
||||
on_punch = trampoline_punch,
|
||||
on_rightclick = power_decrease,
|
||||
drop = "jumping:trampoline1",
|
||||
use_texture_alpha = use_texture_alpha,
|
||||
tiles = {
|
||||
"jumping_trampoline_top.png",
|
||||
"jumping_trampoline_bottom.png",
|
||||
"jumping_trampoline_sides.png^jumping_trampoline_sides_overlay"..i..".png"
|
||||
},
|
||||
is_ground_content = false,
|
||||
groups = {
|
||||
dig_immediate = 2,
|
||||
bouncy = 20 + i * 20,
|
||||
fall_damage_add_percent = -70,
|
||||
not_in_creative_inventory = ( i > 1 and 1 or nil),
|
||||
},
|
||||
dig_immediate = 2,
|
||||
bouncy = 20 + i * 20,
|
||||
fall_damage_add_percent = -70,
|
||||
not_in_creative_inventory = ( i > 1 and 1 or nil),
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
@ -68,29 +71,36 @@ minetest.register_node("jumping:cushion", {
|
||||
node_box = cushionbox,
|
||||
selection_box = cushionbox,
|
||||
paramtype = "light",
|
||||
use_texture_alpha = use_texture_alpha,
|
||||
tiles = {
|
||||
"jumping_cushion_tb.png",
|
||||
"jumping_cushion_tb.png",
|
||||
"jumping_cushion_sides.png"
|
||||
},
|
||||
is_ground_content = false,
|
||||
groups = {dig_immediate=2, disable_jump=1, fall_damage_add_percent=-100},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "jumping:trampoline1",
|
||||
recipe = {
|
||||
{"jumping:cushion", "jumping:cushion", "jumping:cushion"},
|
||||
{"default:steel_ingot", "", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
-- register recipes if the corresponding mods are present
|
||||
if minetest.get_modpath("default") then
|
||||
minetest.register_craft({
|
||||
output = "jumping:trampoline1",
|
||||
recipe = {
|
||||
{"jumping:cushion", "jumping:cushion", "jumping:cushion"},
|
||||
{"default:steel_ingot", "", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_craft({
|
||||
output = "jumping:cushion",
|
||||
recipe = {
|
||||
{"farming:cotton", "group:wool", "farming:cotton"},
|
||||
{"farming:cotton", "group:wool", "farming:cotton"},
|
||||
{"farming:cotton", "farming:cotton", "farming:cotton"}
|
||||
}
|
||||
})
|
||||
if minetest.get_modpath("farming") and minetest.get_modpath("wool") then
|
||||
minetest.register_craft({
|
||||
output = "jumping:cushion",
|
||||
recipe = {
|
||||
{"farming:cotton", "group:wool", "farming:cotton"},
|
||||
{"farming:cotton", "group:wool", "farming:cotton"},
|
||||
{"farming:cotton", "farming:cotton", "farming:cotton"}
|
||||
}
|
||||
})
|
||||
end
|
||||
|
||||
minetest.log("action", "[jumping] loaded.")
|
||||
|
Reference in New Issue
Block a user