This commit is contained in:
VanessaE 2012-11-22 11:24:29 -08:00
commit ba505c8178
9 changed files with 17 additions and 4 deletions

View File

@ -795,7 +795,6 @@ minetest.register_node("default:sandstone", {
tiles = {"default_sandstone.png"},
is_ground_content = true,
groups = {crumbly=2,cracky=2},
drop = 'default:sand',
sounds = default.node_sound_stone_defaults(),
})

View File

@ -0,0 +1,11 @@
Changelog
---------
2012-11-22: Minor tweaks to formatting of init.lua, worked in new textures.
2012-07-26: Added a smelting step for recycling crafted items back into raw
materials. 2 Glass bottles/cups -> 1 "glass fragments" -> smelt into normal
glass block. 1 Steel bottle -> smelt to 1 steel ingot.
2012-07-26: Better bottle texture. Note that it is blended against the 50%
grey fields in the inventory display, so it will show artifacts if you try to
wield it. Don't do that. :-)

View File

@ -3,7 +3,8 @@
minetest.register_craftitem("vessels:glass_bottle", {
description = "Glass Bottle (empty)",
inventory_image = "vessels_glass_bottle.png",
inventory_image = "vessels_glass_bottle_inv.png",
wield_image = "vessels_glass_bottle.png",
groups = {vessel=1},
})
@ -18,7 +19,8 @@ minetest.register_craft( {
minetest.register_craftitem("vessels:drinking_glass", {
description = "Drinking Glass (empty)",
inventory_image = "vessels_drinking_glass.png",
inventory_image = "vessels_drinking_glass_inv.png",
wield_image = "vessels_drinking_glass.png",
groups = {vessel=1},
})
@ -33,7 +35,8 @@ minetest.register_craft( {
minetest.register_craftitem("vessels:steel_bottle", {
description = "Heavy Steel Bottle (empty)",
inventory_image = "vessels_steel_bottle.png",
inventory_image = "vessels_steel_bottle_inv.png",
wield_image = "vessels_steel_bottle.png",
groups = {vessel=1},
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 338 B

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 B

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 342 B

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B