Initial upload

This commit is contained in:
Jeija 2012-09-05 10:35:50 +02:00
commit 93b9f3703d
4 changed files with 110 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*~

7
README.md Normal file
View File

@ -0,0 +1,7 @@
Jumping
Jumping is a mod for minetest that adds trampolines, cushions, ...
License: GPLv3
Creator: Jeija

102
jumping/init.lua Normal file
View File

@ -0,0 +1,102 @@
local trampolinebox = {
type = "fixed",
fixed = {
{-0.5, -0.2, -0.5, 0.5, 0, 0.5},
{-0.5, -0.5, -0.5, -0.4, -0.2, -0.4},
{ 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},
}
}
minetest.register_node("jumping:trampoline1", {
description = "Trampoline",
drawtype = "nodebox",
node_box = trampolinebox,
selection_box = trampolinebox,
paramtype = "light",
tiles = {"default_stone.png"},
groups = {dig_immediate=2, bouncy=30, fall_damage_add_percent=-70},
})
minetest.register_node("jumping:trampoline2", {
description = "Trampoline",
drawtype = "nodebox",
node_box = trampolinebox,
selection_box = trampolinebox,
paramtype = "light",
tiles = {"default_stone.png"},
drop = "jumping:trampoline1",
groups = {not_in_creative_inventory = 1, dig_immediate=2, bouncy=50, fall_damage_add_percent=-70},
})
minetest.register_node("jumping:trampoline3", {
description = "Trampoline",
drawtype = "nodebox",
node_box = trampolinebox,
selection_box = trampolinebox,
paramtype = "light",
tiles = {"default_stone.png"},
drop = "jumping:trampoline1",
groups = {not_in_creative_inventory = 1, dig_immediate=2, bouncy=70, fall_damage_add_percent=-70},
})
minetest.register_node("jumping:trampoline4", {
description = "Trampoline",
drawtype = "nodebox",
node_box = trampolinebox,
selection_box = trampolinebox,
paramtype = "light",
tiles = {"default_stone.png"},
drop = "jumping:trampoline1",
groups = {not_in_creative_inventory = 1, dig_immediate=2, bouncy=90, fall_damage_add_percent=-70},
})
minetest.register_node("jumping:trampoline5", {
description = "Trampoline",
drawtype = "nodebox",
node_box = trampolinebox,
selection_box = trampolinebox,
paramtype = "light",
tiles = {"default_wood.png"},
drop = "jumping:trampoline1",
groups = {not_in_creative_inventory = 1, dig_immediate=2, bouncy=100, fall_damage_add_percent=-70},
})
minetest.register_node("jumping:trampoline6", {
description = "Trampoline",
drawtype = "nodebox",
node_box = trampolinebox,
selection_box = trampolinebox,
paramtype = "light",
tiles = {"default_wood.png"},
drop = "jumping:trampoline1",
groups = {not_in_creative_inventory = 1, dig_immediate=2, bouncy=110, fall_damage_add_percent=-70},
})
minetest.register_on_punchnode(function (pos, node)
if string.find(node.name, "jumping:trampoline") then
local id = string.sub(node.name, #node.name) --get number
id = id + 1
if id == 7 then id = 1 end
minetest.env:add_node(pos, {name = string.sub(node.name, 1, #node.name - 1)..id})
end
end)
minetest.register_node("jumping:cushion", {
description = "Cushion",
drawtype = "nodebox",
node_box = cushionbox,
selection_box = cushionbox,
paramtype = "light",
tiles = {"default_stone.png"},
groups = {dig_immediate=2, disable_jump=1, fall_damage_add_percent=-100},
})

0
modpack.txt Normal file
View File