sdzen
2013-08-07 df644d7f7736fce4e92a75d53f44b3df6671ceeb
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
9de141 52 minetest.register_node(":technic:uranium_block", {
KO 53     description = "Uranium Block",
54     tiles = { "technic_uranium_block.png" },
55     is_ground_content = true,
56     groups = {cracky=1, level=2},
57     sounds = default.node_sound_stone_defaults()
58 })
59
60 minetest.register_node(":technic:chromium_block", {
61     description = "Chromium Block",
62     tiles = { "technic_chromium_block.png" },
63     is_ground_content = true,
64     groups = {cracky=1, level=2},
65     sounds = default.node_sound_stone_defaults()
66 })
67
68 minetest.register_node(":technic:zinc_block", {
69     description = "Zinc Block",
70     tiles = { "technic_zinc_block.png" },
71     is_ground_content = true,
72     groups = {cracky=1, level=2},
73     sounds = default.node_sound_stone_defaults()
74 })
75
76 minetest.register_node(":technic:stainless_steel_block", {
77     description = "Stainless Steel Block",
78     tiles = { "technic_stainless_steel_block.png" },
79     is_ground_content = true,
80     groups = {cracky=1, level=2},
81     sounds = default.node_sound_stone_defaults()
82 })
83
84 minetest.register_node(":technic:brass_block", {
85     description = "Brass Block",
86     tiles = { "technic_brass_block.png" },
87     is_ground_content = true,
88     groups = {cracky=1, level=2},
89     sounds = default.node_sound_stone_defaults()
90 })
91
279776 92 minetest.register_craft({
R 93     output = 'technic:marble_bricks 4',
94     recipe = {
95         {'technic:marble','technic:marble'},
96         {'technic:marble','technic:marble'}
97     }
98 })
05131f 99
VE 100 minetest.register_alias("technic:diamond_block", "default:diamondblock")