fixed some textures + add some crafts

This commit is contained in:
cale 2016-06-11 21:51:37 +02:00
parent 13d0b6ab98
commit f9816d12c4
20 changed files with 25 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 B

After

Width:  |  Height:  |  Size: 175 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

After

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 241 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 249 B

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 193 B

After

Width:  |  Height:  |  Size: 175 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 229 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 B

After

Width:  |  Height:  |  Size: 265 B

View File

@ -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({

View File

@ -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(),
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 289 B

After

Width:  |  Height:  |  Size: 270 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

After

Width:  |  Height:  |  Size: 273 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 B

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 354 B

After

Width:  |  Height:  |  Size: 329 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 B

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 332 B

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 360 B

After

Width:  |  Height:  |  Size: 343 B

View File

@ -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)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 B

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 B