Added 4 doors to fancy

This commit is contained in:
DonBatman 2015-08-29 08:45:45 -07:00
parent a5089bd53c
commit 48c1e7abe8
18 changed files with 46 additions and 7 deletions

View File

@ -1,8 +1,12 @@
local fdoor_list = { --Number , Description , Inven Image , Image
{ "1" , "Fancy Door 1" , "door1" , "door1"},
-- { "2" , "Fancy Door 2" , "door2" , "door2"},
-- { "3" , "Fancy Door 3" , "door3" , "door3"},
{ "4" , "Fancy Door 4" , "door4" , "door4"},
-- { "2" , "Fancy Door 2" , "door2" , "door2"},
-- { "3" , "Fancy Door 3" , "door3" , "door3"},
{ "4" , "Fancy Door 4" , "door4" , "door4"},
{ "5" , "Fancy Door 5" , "door5" , "door5"},
{ "6" , "Fancy Door 6" , "door6" , "door6"},
{ "7" , "Fancy Door 7" , "door7" , "door7"},
{ "8" , "Fancy Door 8" , "door8" , "door8"},
}
@ -58,7 +62,37 @@ minetest.register_craft({
{"my_door_wood:wood_red", "my_door_wood:wood_dark_grey", ""}
}
})
minetest.register_craft({
output = "my_fancy_doors:door5_locked 1",
recipe = {
{"default:glass", "my_door_wood:wood_yellow", ""},
{"my_door_wood:wood_yellow", "default:glass", "default:steel_ingot"},
{"my_door_wood:wood_yellow", "my_door_wood:wood_yellow", ""}
}
})
minetest.register_craft({
output = "my_fancy_doors:door6_locked 1",
recipe = {
{"default:glass", "my_door_wood:wood_red", ""},
{"my_door_wood:wood_red", "default:glass", "default:steel_ingot"},
{"my_door_wood:wood_red", "my_door_wood:wood_red", ""}
}
})
minetest.register_craft({
output = "my_fancy_doors:door7_locked 1",
recipe = {
{"my_door_wood:wood_red", "default:glass", ""},
{"my_door_wood:wood_red", "default:glass", "default:steel_ingot"},
{"my_door_wood:wood_red", "my_door_wood:wood_red", ""}
}
})
minetest.register_craft({
output = "my_fancy_doors:door7_locked 1",
recipe = {
{"default:glass", "my_door_wood:wood_red", ""},
{"default:glass", "my_door_wood:wood_red", "default:steel_ingot"},
{"my_door_wood:wood_red", "my_door_wood:wood_red", ""}
}
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 800 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 916 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 996 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 994 B

View File

@ -1,7 +1,12 @@
local fdoor_list = { --Number , Description , Inven Image , Image
-- { "1" , "Fancy Door 1" , "door1" , "door1"},
{ "2" , "Fancy Door 2" , "door2" , "door2"},
{ "3" , "Fancy Door 3" , "door3" , "door3"},
{ "2" , "Fancy Door 2" , "door2" , "door2"},
{ "3" , "Fancy Door 3" , "door3" , "door3"},
-- { "4" , "Fancy Door 4" , "door4" , "door4"},
-- { "5" , "Fancy Door 5" , "door5" , "door5"},
-- { "6" , "Fancy Door 6" , "door6" , "door6"},
-- { "7" , "Fancy Door 7" , "door7" , "door7"},
-- { "8" , "Fancy Door 8" , "door8" , "door8"},
}