fixed some textures + add some crafts
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 175 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 241 B |
Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 238 B |
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 175 B |
Before Width: | Height: | Size: 253 B After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 282 B After Width: | Height: | Size: 265 B |
@ -137,6 +137,17 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
--lamp
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:box 4",
|
||||
recipe = {
|
||||
{"", "default:wood", ""},
|
||||
{"default:wood", "default:frame", "default:wood"},
|
||||
{"", "default:wood", ""},
|
||||
}
|
||||
})
|
||||
|
||||
-- stone
|
||||
|
||||
minetest.register_craft({
|
||||
@ -178,7 +189,7 @@ minetest.register_craft({
|
||||
minetest.register_craft({
|
||||
output = "default:coal_dust 3",
|
||||
recipe = {
|
||||
{"default:stone_with_coal"},
|
||||
{"default:coal_lump"},
|
||||
}
|
||||
})
|
||||
|
||||
@ -207,6 +218,17 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
|
||||
--lamp
|
||||
|
||||
minetest.register_craft({
|
||||
output = "default:lamp 4",
|
||||
recipe = {
|
||||
{"", "default:glass", ""},
|
||||
{"default:glass", "default:coal_lump", "default:glass"},
|
||||
{"", "default:glass", ""},
|
||||
}
|
||||
})
|
||||
|
||||
--workbench
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -783,6 +783,7 @@ minetest.register_node("default:stone_with_coal", {
|
||||
description = "Stone with Coal",
|
||||
tiles = {"default_stone_with_coal.png"},
|
||||
groups = {cracky = 2},
|
||||
drops = "default:coal_lump",
|
||||
sounds = default.sounds.stone(),
|
||||
})
|
||||
|
||||
|
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 270 B |
Before Width: | Height: | Size: 274 B After Width: | Height: | Size: 273 B |
Before Width: | Height: | Size: 292 B After Width: | Height: | Size: 274 B |
Before Width: | Height: | Size: 354 B After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 282 B After Width: | Height: | Size: 282 B |
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 313 B |
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 343 B |
@ -12,7 +12,7 @@ local furnace_form = furnace_form.."listring[current_player;main]"
|
||||
|
||||
minetest.register_node("furnace:furnace", {
|
||||
description = "Furnace",
|
||||
tiles = {"furnace_stone_top.png", "furnace_stone_tile.png", "furnace_stone_tile.png", "furnace_stone_tile.png","furnace_stone_tile.png","furnace_stone_front.png"},
|
||||
tiles = {"default_stonebrick.png", "default_stonebrick.png", "default_stonebrick.png", "default_stonebrick.png","default_stonebrick.png","furnace_stone_front.png"},
|
||||
groups = {cracky = 2},
|
||||
paramtype2 = "facedir",
|
||||
on_construct = function(pos)
|
||||
|
Before Width: | Height: | Size: 247 B After Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 219 B |
Before Width: | Height: | Size: 215 B |