kpoppel
2013-06-06 66d6431a914acdedf448692cdd8096884d6dacc2
commit | author | age
279776 1 minetest.register_node( ":technic:mineral_uranium", {
R 2     description = "Uranium Ore",
3     tiles = { "default_stone.png^technic_mineral_uranium.png" },
4     is_ground_content = true,
5     groups = {cracky=3},
6     sounds = default.node_sound_stone_defaults(),
7     drop = 'craft "technic:uranium" 1',
8 }) 
9
10 minetest.register_node( ":technic:mineral_chromium", {
11     description = "Chromium Ore",
12     tiles = { "default_stone.png^technic_mineral_chromium.png" },
13     is_ground_content = true,
14     groups = {cracky=3},
15     sounds = default.node_sound_stone_defaults(),
16     drop = 'craft "technic:chromium_lump" 1',
17 }) 
18
19 minetest.register_node( ":technic:mineral_zinc", {
20     description = "Zinc Ore",
21     tile_images = { "default_stone.png^technic_mineral_zinc.png" },
22     is_ground_content = true,
23     groups = {cracky=3},
24     sounds = default.node_sound_stone_defaults(),
25     drop = 'craft "technic:zinc_lump" 1',
26 })
27
28 minetest.register_node( ":technic:granite", {
29     description = "Granite",
30     tiles = { "technic_granite.png" },
31     is_ground_content = true,
32     groups = {cracky=3},
33     sounds = default.node_sound_stone_defaults(),
34 }) 
35
36 minetest.register_node( ":technic:marble", {
37     description = "Marble",
38     tiles = { "technic_marble.png" },
39     is_ground_content = true,
40     groups = {cracky=3},
41     sounds = default.node_sound_stone_defaults(),
42 }) 
43
44 minetest.register_node( ":technic:marble_bricks", {
45     description = "Marble Bricks",
46     tiles = { "technic_marble_bricks.png" },
47     is_ground_content = true,
48     groups = {cracky=3},
49     sounds = default.node_sound_stone_defaults(),
50 }) 
51
52 minetest.register_craft({
53     output = 'technic:marble_bricks 4',
54     recipe = {
55         {'technic:marble','technic:marble'},
56         {'technic:marble','technic:marble'}
57     }
58 })
05131f 59
VE 60 minetest.register_alias("technic:diamond_block", "default:diamondblock")