Add dungeon doors

master
Wuzzy 2021-10-08 20:27:33 +02:00
parent 7819de46cd
commit 7539162508
6 changed files with 47 additions and 0 deletions

View File

@ -49,6 +49,12 @@ Obsidian door textures by red-001 based on textures by Pilzadam and BlockMen (CC
Glass door textures by red-001 based on textures by celeron55 (CC BY-SA 3.0):
door_glass.png
Dungeon door textures by sorcerykid (CC BY-SA 4.0):
doors_door_dungeon1.png
doors_door_dungeon2.png
doors_item_dungeon1.png
doors_item_dungeon2.png
All other textures (created by PilzAdam) (CC BY-SA 3.0):
Door textures were converted to the new texture map by sofar, paramat and

View File

@ -163,6 +163,47 @@ for c=1, #colors do
})
end
doors.register_door("doors:door_dungeon1", {
tiles = {{ name = "doors_door_dungeon1.png", backface_culling = true}},
description = S("Dungeon Interior Door"),
inventory_image = "doors_item_dungeon1.png",
only_placer_can_open = true,
groups = { cracky = 2, door = 1 },
sounds = hades_sounds.node_sound_metal_defaults(),
sound_open = "doors_steel_door_open",
sound_close = "doors_steel_door_close",
})
minetest.register_craft({
output = "doors:door_dungeon1",
recipe = {
{ "hades_core:steel_ingot", "hades_core:stick", "hades_core:steel_ingot" },
{ "hades_core:stick", "hades_core:stick", "hades_core:stick" },
{ "hades_core:steel_ingot", "hades_core:stick", "hades_core:steel_ingot" },
},
})
doors.register_door("doors:door_dungeon2", {
tiles = {{ name = "doors_door_dungeon2.png", backface_culling = true}},
description = S("Dungeon Exterior Door"),
inventory_image = "doors_item_dungeon2.png",
only_placer_can_open = true,
groups = { cracky = 2, door = 1 },
sounds = hades_sounds.node_sound_metal_defaults(),
sound_open = "doors_steel_door_open",
sound_close = "doors_steel_door_close",
sunlight = true,
})
minetest.register_craft({
output = "doors:door_dungeon2",
recipe = {
{ "hades_core:stick", "hades_core:stick", "hades_core:stick" },
{ "hades_core:steel_ingot", "hades_core:steel_ingot", "hades_core:steel_ingot" },
{ "hades_core:steel_ingot", "hades_core:steel_ingot", "hades_core:steel_ingot" },
},
})
-- stone
doors.register_door("doors:door_stone", {
description = S("Stone Door"),

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B