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 ,
2017-01-10 05:35:44 +01:00
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-01-10 05:35:44 +01:00
} ,
2017-06-11 15:55:01 +02:00
groups = { handy = 1 , armor_head = 1 , head = 1 , deco_block = 1 , dig_by_piston = 1 } ,
2017-01-10 05:35:44 +01:00
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 ,
2017-01-10 05:35:44 +01:00
paramtype2 = " facedir " ,
sunlight_propagates = true ,
walkable = true ,
selection_box = {
type = " fixed " ,
fixed = { - 0.25 , - 0.5 , - 0.25 , 0.25 , 0.0 , 0.25 , } ,
} ,
2017-02-11 18:46:23 +01:00
sounds = mcl_sounds.node_sound_defaults ( {
2017-01-10 05:35:44 +01:00
footstep = { name = " default_hard_footstep " , gain = 0.3 }
} ) ,
2017-02-22 16:03:59 +01:00
_mcl_blast_resistance = 5 ,
2017-02-27 01:33:34 +01:00
_mcl_hardness = 1 ,
2015-06-29 19:55:56 +02:00
} )
end
2017-01-31 10:05:32 +01:00
-- Add heads
2017-03-18 18:01:28 +01:00
addhead ( " zombie " , " Zombie Head " , " A zombie head is a small decorative block which resembles the head of a zombie. " )
addhead ( " creeper " , " Creeper Head " , " A creeper head is a small decorative block which resembles the head of a creeper. " )
2017-03-11 18:51:39 +01:00
-- Original Minecraft name: “Head”
2017-03-11 18:56:01 +01: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). " )
addhead ( " skeleton " , " Skeleton Skull " , " A skeleton skull is a small decorative block which resembles the head of a skeleton. " )
addhead ( " wither_skeleton " , " Wither Skeleton Skull " , " A wither skeleton skull is a small decorative block which resembles the head of a wither skeleton. " )