Update textures

master
Maksim Gamarnik 2017-01-18 22:23:21 +02:00
parent 4ec78a9fb5
commit c022289648
13 changed files with 8 additions and 24 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 246 B

After

Width:  |  Height:  |  Size: 463 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 279 B

After

Width:  |  Height:  |  Size: 440 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 B

After

Width:  |  Height:  |  Size: 372 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 B

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 B

After

Width:  |  Height:  |  Size: 306 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

After

Width:  |  Height:  |  Size: 291 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

After

Width:  |  Height:  |  Size: 346 B

View File

@ -66,3 +66,8 @@ minetest.register_alias("snow", "default:snow")
-- Aliases for corrected pine node names
minetest.register_alias("default:pinetree", "default:pine_tree")
minetest.register_alias("default:pinewood", "default:pine_wood")
-- Gold nugget
minetest.register_alias("default:gold_nugget", "default:gold_ingot")
-- Sandstone Carved
minetest.register_alias("default:sandstonecarved", "default:sandstonesmooth")

View File

@ -361,11 +361,6 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "default:gold_nugget 9",
recipe = {{"default:gold_ingot"}},
})
minetest.register_craft({
output = 'default:sandstone',
recipe = {
@ -512,9 +507,9 @@ minetest.register_craft({
minetest.register_craft({
output = "default:apple_gold",
recipe = {
{"default:gold_nugget", "default:gold_nugget", "default:gold_nugget"},
{"default:gold_nugget", 'default:apple', "default:gold_nugget"},
{"default:gold_nugget", "default:gold_nugget", "default:gold_nugget"},
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
{"default:gold_ingot", 'default:apple', "default:gold_ingot"},
{"default:gold_ingot", "default:gold_ingot", "default:gold_ingot"},
}
})

View File

@ -40,13 +40,6 @@ minetest.register_craftitem("default:charcoal_lump", {
groups = {materials = 1},
})
minetest.register_craftitem("default:gold_nugget", {
description = "Gold Nugget",
inventory_image = "default_gold_nugget.png",
stack_max = 64,
groups = {materials = 1},
})
minetest.register_craftitem("default:diamond", {
description = "Diamond",
inventory_image = "default_diamond.png",

View File

@ -353,15 +353,6 @@ minetest.register_node("default:sandstonesmooth", {
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("default:sandstonecarved", {
description = "Sandstone Carved",
tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_carved.png"},
is_ground_content = true,
stack_max = 64,
groups = {crumbly=2,cracky=2, building = 1},
sounds = default.node_sound_stone_defaults(),
})
-- red sandstone --
minetest.register_node("default:redsand", {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB