mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-16 07:20:31 +01:00
added new prison doors 2 and 3 panels
This commit is contained in:
parent
2c41969e6a
commit
2d08bde2a1
|
@ -587,4 +587,23 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
doors3.register_door("doors:door3_prison", {
|
||||||
|
description = "Prison Door 3",
|
||||||
|
inventory_image = "doors3_prison_inv.png",
|
||||||
|
groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1},
|
||||||
|
tiles_bottom = {"doors_prison_b.png", "doors_black.png"},
|
||||||
|
tiles_middle = {"doors_prison_t.png", "doors_black.png"},
|
||||||
|
tiles_top = {"doors_prison_t.png", "doors_black.png"},
|
||||||
|
only_placer_can_open = true,
|
||||||
|
sounds = default.node_sound_wood_defaults(),
|
||||||
|
sunlight = false,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "doors:door3_prison",
|
||||||
|
recipe = {
|
||||||
|
{"", "", ""},
|
||||||
|
{"", "doors:door_prison", ""},
|
||||||
|
{"", "doors:door_prison", ""}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
|
@ -464,6 +464,29 @@ minetest.register_craft({
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- doors prison MFF
|
||||||
|
doors.register_door("doors:door_prison", {
|
||||||
|
description = "Prison Door",
|
||||||
|
inventory_image = "doors_prison_inv.png",
|
||||||
|
groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1},
|
||||||
|
tiles_bottom = {"doors_prison_b.png", "doors_black.png"},
|
||||||
|
tiles_top = {"doors_prison_t.png", "doors_black.png"},
|
||||||
|
only_placer_can_open = true,
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
sunlight = false,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "doors:door_prison",
|
||||||
|
recipe = {
|
||||||
|
{"darkage:iron_stick", "darkage:iron_stick"},
|
||||||
|
{"darkage:iron_stick", "darkage:iron_stick"},
|
||||||
|
{"darkage:iron_stick", "darkage:iron_stick"}
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
----trapdoor----
|
----trapdoor----
|
||||||
|
|
||||||
|
|
BIN
minetestforfun_game/mods/doors/textures/doors3_prison_inv.png
Executable file
BIN
minetestforfun_game/mods/doors/textures/doors3_prison_inv.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 322 B |
BIN
minetestforfun_game/mods/doors/textures/doors_black.png
Executable file
BIN
minetestforfun_game/mods/doors/textures/doors_black.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 140 B |
BIN
minetestforfun_game/mods/doors/textures/doors_prison_b.png
Executable file
BIN
minetestforfun_game/mods/doors/textures/doors_prison_b.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 217 B |
BIN
minetestforfun_game/mods/doors/textures/doors_prison_inv.png
Executable file
BIN
minetestforfun_game/mods/doors/textures/doors_prison_inv.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 336 B |
BIN
minetestforfun_game/mods/doors/textures/doors_prison_t.png
Executable file
BIN
minetestforfun_game/mods/doors/textures/doors_prison_t.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 196 B |
Loading…
Reference in New Issue
Block a user