mirror of
https://github.com/minetest-mods/maptools.git
synced 2025-06-30 14:20:22 +02:00
Merge branch 'master' into nalc-1.2
This commit is contained in:
69
nodes.lua
69
nodes.lua
@ -1,15 +1,15 @@
|
||||
--[[
|
||||
Map Tools: node definitions
|
||||
|
||||
Copyright (c) 2012-2015 Calinou and contributors.
|
||||
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
||||
Licensed under the zlib license. See LICENSE.md for more information.
|
||||
--]]
|
||||
|
||||
local S = maptools.intllib
|
||||
local S = maptools.S
|
||||
|
||||
maptools.creative = maptools.config["hide_from_creative_inventory"]
|
||||
|
||||
-- Redefine cloud so that the admin pickaxe can mine it:
|
||||
-- Redefine cloud so that the admin pickaxe can mine it
|
||||
minetest.register_node(":default:cloud", {
|
||||
description = S("Cloud"),
|
||||
tiles = {"default_cloud.png"},
|
||||
@ -20,7 +20,6 @@ minetest.register_node(":default:cloud", {
|
||||
})
|
||||
|
||||
-- Nodes
|
||||
-- =====
|
||||
|
||||
minetest.register_node("maptools:black", {
|
||||
description = S("Black"),
|
||||
@ -62,7 +61,6 @@ minetest.register_node("maptools:playerclip", {
|
||||
|
||||
minetest.register_node("maptools:fake_walkable", {
|
||||
description = S("Player Clip"),
|
||||
drawtype = "nodebox",
|
||||
range = 12,
|
||||
stack_max = 10000,
|
||||
inventory_image = "default_steel_block.png^dye_green.png",
|
||||
@ -96,7 +94,6 @@ minetest.register_node("maptools:fullclip", {
|
||||
|
||||
minetest.register_node("maptools:fake_walkable_pointable", {
|
||||
description = S("Player Clip"),
|
||||
drawtype = "nodebox",
|
||||
range = 12,
|
||||
stack_max = 10000,
|
||||
inventory_image = "default_steel_block.png^dye_green.png",
|
||||
@ -186,7 +183,11 @@ minetest.register_node("maptools:fullclip_face", {
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
||||
},
|
||||
drop = "",
|
||||
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100},
|
||||
groups = {
|
||||
unbreakable = 1,
|
||||
not_in_creative_inventory = maptools.creative,
|
||||
fall_damage_add_percent = -100,
|
||||
},
|
||||
on_drop = maptools.drop_msg
|
||||
})
|
||||
|
||||
@ -205,7 +206,11 @@ minetest.register_node("maptools:playerclip_bottom", {
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
||||
},
|
||||
drop = "",
|
||||
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100},
|
||||
groups = {
|
||||
unbreakable = 1,
|
||||
not_in_creative_inventory = maptools.creative,
|
||||
fall_damage_add_percent = -100,
|
||||
},
|
||||
on_drop = maptools.drop_msg
|
||||
})
|
||||
|
||||
@ -224,29 +229,38 @@ minetest.register_node("maptools:playerclip_top", {
|
||||
fixed = {-0.5, 0.4999, -0.5, 0.5, 0.5, 0.5},
|
||||
},
|
||||
drop = "",
|
||||
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100},
|
||||
groups = {
|
||||
unbreakable = 1,
|
||||
not_in_creative_inventory = maptools.creative,
|
||||
fall_damage_add_percent = -100,
|
||||
},
|
||||
on_drop = maptools.drop_msg
|
||||
})
|
||||
|
||||
for pusher_num=1,10,1 do
|
||||
minetest.register_node("maptools:pusher_" .. pusher_num, {
|
||||
description = S("Pusher (%s)"):format(pusher_num),
|
||||
range = 12,
|
||||
stack_max = 10000,
|
||||
inventory_image = "default_steel_block.png^default_apple.png",
|
||||
drawtype = "nodebox",
|
||||
tiles = {"invisible.png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
||||
},
|
||||
drop = "",
|
||||
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative, fall_damage_add_percent=-100, bouncy=pusher_num*100},
|
||||
on_drop = maptools.drop_msg
|
||||
})
|
||||
minetest.register_node("maptools:pusher_" .. pusher_num, {
|
||||
description = S("Pusher (%s)"):format(pusher_num),
|
||||
range = 12,
|
||||
stack_max = 10000,
|
||||
inventory_image = "default_steel_block.png^default_apple.png",
|
||||
drawtype = "nodebox",
|
||||
tiles = {"invisible.png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.4999, 0.5},
|
||||
},
|
||||
drop = "",
|
||||
groups = {
|
||||
unbreakable = 1,
|
||||
not_in_creative_inventory = maptools.creative,
|
||||
fall_damage_add_percent = -100,
|
||||
bouncy = pusher_num * 100,
|
||||
},
|
||||
on_drop = maptools.drop_msg
|
||||
})
|
||||
end
|
||||
|
||||
minetest.register_node("maptools:lightbulb", {
|
||||
@ -422,7 +436,6 @@ minetest.register_node("maptools:igniter", {
|
||||
drawtype = "airlike",
|
||||
range = 12,
|
||||
stack_max = 10000,
|
||||
inventory_image = "default_steel_block.png^crosshair.png",
|
||||
description = S("Igniter"),
|
||||
paramtype = "light",
|
||||
inventory_image = "fire_basic_flame.png",
|
||||
|
Reference in New Issue
Block a user