Organize mods into modpacks for better overview
1
mods/ITEMS/mcl_heads/depends.txt
Normal file
|
@ -0,0 +1 @@
|
|||
mcl_sounds
|
1
mods/ITEMS/mcl_heads/description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Small decorational head blocks.
|
43
mods/ITEMS/mcl_heads/init.lua
Normal file
|
@ -0,0 +1,43 @@
|
|||
-- Heads system
|
||||
|
||||
local function addhead(node, desc)
|
||||
minetest.register_node("mcl_heads:"..node, {
|
||||
description = desc,
|
||||
drawtype = "nodebox",
|
||||
is_ground_content = false,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {
|
||||
{ -0.25, -0.5, -0.25, 0.25, 0.0, 0.25, },
|
||||
},
|
||||
},
|
||||
groups = {oddly_breakable_by_hand=3, head=1, deco_block=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",
|
||||
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}
|
||||
}),
|
||||
})
|
||||
end
|
||||
|
||||
-- Add heads
|
||||
addhead("zombie", "Zombie Head")
|
||||
addhead("creeper", "Creeper Head")
|
||||
addhead("steve", "Head")
|
||||
addhead("skeleton", "Skeleton Skull")
|
||||
addhead("wither_skeleton", "Wither Skeleton Skull")
|
1
mods/ITEMS/mcl_heads/mod.conf
Normal file
|
@ -0,0 +1 @@
|
|||
name = mcl_heads
|
BIN
mods/ITEMS/mcl_heads/textures/head_creeper_back.png
Normal file
After Width: | Height: | Size: 830 B |
BIN
mods/ITEMS/mcl_heads/textures/head_creeper_face.png
Normal file
After Width: | Height: | Size: 871 B |
BIN
mods/ITEMS/mcl_heads/textures/head_creeper_left.png
Normal file
After Width: | Height: | Size: 785 B |
BIN
mods/ITEMS/mcl_heads/textures/head_creeper_right.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
mods/ITEMS/mcl_heads/textures/head_creeper_top.png
Normal file
After Width: | Height: | Size: 835 B |
BIN
mods/ITEMS/mcl_heads/textures/head_skeleton_back.png
Normal file
After Width: | Height: | Size: 748 B |
BIN
mods/ITEMS/mcl_heads/textures/head_skeleton_face.png
Normal file
After Width: | Height: | Size: 763 B |
BIN
mods/ITEMS/mcl_heads/textures/head_skeleton_left.png
Normal file
After Width: | Height: | Size: 768 B |
BIN
mods/ITEMS/mcl_heads/textures/head_skeleton_right.png
Normal file
After Width: | Height: | Size: 745 B |
BIN
mods/ITEMS/mcl_heads/textures/head_skeleton_top.png
Normal file
After Width: | Height: | Size: 755 B |
BIN
mods/ITEMS/mcl_heads/textures/head_steve_back.png
Normal file
After Width: | Height: | Size: 640 B |
BIN
mods/ITEMS/mcl_heads/textures/head_steve_face.png
Normal file
After Width: | Height: | Size: 499 B |
BIN
mods/ITEMS/mcl_heads/textures/head_steve_left.png
Normal file
After Width: | Height: | Size: 987 B |
BIN
mods/ITEMS/mcl_heads/textures/head_steve_right.png
Normal file
After Width: | Height: | Size: 978 B |
BIN
mods/ITEMS/mcl_heads/textures/head_steve_top.png
Normal file
After Width: | Height: | Size: 548 B |
BIN
mods/ITEMS/mcl_heads/textures/head_wither_skeleton_back.png
Normal file
After Width: | Height: | Size: 679 B |
BIN
mods/ITEMS/mcl_heads/textures/head_wither_skeleton_face.png
Normal file
After Width: | Height: | Size: 809 B |
BIN
mods/ITEMS/mcl_heads/textures/head_wither_skeleton_left.png
Normal file
After Width: | Height: | Size: 747 B |
BIN
mods/ITEMS/mcl_heads/textures/head_wither_skeleton_right.png
Normal file
After Width: | Height: | Size: 751 B |
BIN
mods/ITEMS/mcl_heads/textures/head_wither_skeleton_top.png
Normal file
After Width: | Height: | Size: 683 B |
BIN
mods/ITEMS/mcl_heads/textures/head_zombie_back.png
Normal file
After Width: | Height: | Size: 923 B |
BIN
mods/ITEMS/mcl_heads/textures/head_zombie_face.png
Normal file
After Width: | Height: | Size: 958 B |
BIN
mods/ITEMS/mcl_heads/textures/head_zombie_left.png
Normal file
After Width: | Height: | Size: 987 B |
BIN
mods/ITEMS/mcl_heads/textures/head_zombie_right.png
Normal file
After Width: | Height: | Size: 1,021 B |
BIN
mods/ITEMS/mcl_heads/textures/head_zombie_top.png
Normal file
After Width: | Height: | Size: 930 B |