VoxeLibre/mods/ITEMS/mcl_heads/init.lua

48 lines
2.0 KiB
Lua
Raw Normal View History

2017-01-31 10:05:32 +01:00
-- Heads system
2015-06-29 19:55:56 +02:00
2017-03-11 18:56:01 +01:00
local function addhead(node, desc, longdesc)
2017-01-31 10:05:32 +01:00
minetest.register_node("mcl_heads:"..node, {
description = desc,
2017-03-11 18:56:01 +01:00
_doc_items_longdesc = longdesc,
drawtype = "nodebox",
is_ground_content = false,
node_box = {
type = "fixed",
fixed = {
{ -0.25, -0.5, -0.25, 0.25, 0.0, 0.25, },
2015-06-29 19:55:56 +02:00
},
},
2017-06-11 15:55:01 +02:00
groups = {handy=1, armor_head=1, head=1, deco_block=1, dig_by_piston=1},
tiles = {
"head_"..node.."_top.png",
"head_"..node.."_top.png",
"head_"..node.."_left.png",
"head_"..node.."_right.png",
"head_"..node.."_back.png",
"head_"..node.."_face.png",
},
paramtype = "light",
2017-02-01 23:18:09 +01:00
stack_max = 64,
paramtype2 = "facedir",
sunlight_propagates = true,
walkable = true,
selection_box = {
type = "fixed",
fixed = { -0.25, -0.5, -0.25, 0.25, 0.0, 0.25, },
},
sounds = mcl_sounds.node_sound_defaults({
footstep = {name="default_hard_footstep", gain=0.3}
}),
_mcl_blast_resistance = 5,
_mcl_hardness = 1,
2015-06-29 19:55:56 +02:00
})
end
2017-01-31 10:05:32 +01:00
-- Add heads
2017-06-11 22:06:07 +02:00
addhead("zombie", "Zombie Head", "A zombie head is a small decorative block which resembles the head of a zombie. It can also be worn as a helmet for fun, but does not offer any protection.")
addhead("creeper", "Creeper Head", "A creeper head is a small decorative block which resembles the head of a creeper. It can also be worn as a helmet for fun, but does not offer any protection.")
2017-03-11 18:51:39 +01:00
-- Original Minecraft name: “Head”
2017-06-11 22:06:07 +02:00
addhead("steve", "Human Head", "A human head is a small decorative block which resembles the head of a human (i.e. a player character). It can also be worn as a helmet for fun, but does not offer any protection.")
addhead("skeleton", "Skeleton Skull", "A skeleton skull is a small decorative block which resembles the head of a skeleton. It can also be worn as a helmet for fun, but does not offer any protection.")
addhead("wither_skeleton", "Wither Skeleton Skull", "A wither skeleton skull is a small decorative block which resembles the head of a wither skeleton. It can also be worn as a helmet for fun, but does not offer any protection.")