gold tools textures added, tab fixes, workong on CB

master
Victor Hackeridze 2012-03-18 19:27:46 +06:00
parent 576d1b7aea
commit f12488872d
7 changed files with 138 additions and 127 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

View File

@ -2,6 +2,7 @@
-- modifed by rtmmp-team
minetest.register_node("obsidian_rtmmp:obsidian_block", {
description="Obsidian",
tile_images = {"obsidian_rtmmp_block.png"},
inventory_image = minetest.inventorycube("obsidian_rtmmp_block.png"),
is_ground_content = true,

View File

@ -17,3 +17,13 @@ local CB_NAMES_COLORS = {
"pink" = "Pink cotton block",
"brown" = "Brown cotton block",
}
for color, name in ipairs(CB_NAMES_COLORS) do
minetest.register_node("cotton_blocks:" .. color, {
description = name,
tile_images = {"cb_" .. color .. ".png"},
inventory_image = minetest.inventorycube("cb_" .. color .. ".png"),
is_ground_content = true,
material = minetest.digprop_stonelike(0.3), -- WTF???????? FUCK!!!!!!!!!1111111!!!!!!!!!111
})
end