Added diamond drilling head, energy crystals

This commit is contained in:
Maciej Kasatkin
2012-09-11 17:05:34 +02:00
parent 243028dfd5
commit f42c9b68c3
2 changed files with 82 additions and 36 deletions

View File

@ -37,41 +37,6 @@ minetest.register_node( "technic:mineral_chromium", {
drop = 'craft "technic:chromium_lump" 1',
})
minetest.register_node( "technic:diamond_block", {
description = "Diamond Block",
tiles = { "technic_diamond_block.png" },
is_ground_content = true,
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
drop = 'craft "technic:diamond_block" 1',
})
minetest.register_node( "technic:diamond_block_red", {
description = "Red Diamond Block",
tiles = { "technic_diamond_block_red.png" },
is_ground_content = true,
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
drop = 'craft "technic:diamond_block_red" 1',
})
minetest.register_node( "technic:diamond_block_green", {
description = "Green Diamond Block",
tiles = { "technic_diamond_block_green.png" },
is_ground_content = true,
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
drop = 'craft "technic:diamond_block_green" 1',
})
minetest.register_node( "technic:diamond_block_blue", {
description = "Red Diamond Block",
tiles = { "technic_diamond_block_blue.png" },
is_ground_content = true,
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
drop = 'craft "technic:diamond_block_blue" 1',
})
minetest.register_craftitem( "technic:chromium_lump", {
description = "Chromium Lump",
inventory_image = "technic_chromium_lump.png",