Maciej Kasatkin
2012-09-24 4503c4562bf831185834abbc84bab7c85056fe2e
commit | author | age
d77149 1 minetest.register_craftitem( "technic:silicon_wafer", {
MK 2     description = "Silicon Wafer",
3     inventory_image = "technic_silicon_wafer.png",
4     on_place_on_ground = minetest.craftitem_place_item,
5 })
6
7 minetest.register_craftitem( "technic:doped_silicon_wafer", {
8     description = "Doped Silicon Wafer",
9     inventory_image = "technic_doped_silicon_wafer.png",
10     on_place_on_ground = minetest.craftitem_place_item,
243028 11 })
MK 12
13 minetest.register_craft({
582f94 14     output = 'pipeworks:tube_000000 9',
243028 15     recipe = {
MK 16         {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
17         {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
18         {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
19     }
f42c9b 20 })
MK 21
22 minetest.register_craftitem( "technic:diamond_drill_head", {
23     description = "Diamond Drill Head",
24     inventory_image = "technic_diamond_drill_head.png",
25     on_place_on_ground = minetest.craftitem_place_item,
26 })
27
28 minetest.register_craft({
29     output = 'technic:diamond_drill_head',
30     recipe = {
31         {'technic:stainless_steel_ingot', 'technic:diamond', 'technic:stainless_steel_ingot'},
32         {'technic:diamond', '', 'technic:diamond'},
33         {'technic:stainless_steel_ingot', 'technic:diamond', 'technic:stainless_steel_ingot'},
34     }
35 })
36
37 minetest.register_craft({
38     output = 'technic:diamond_block',
39     recipe = {
40         {'technic:diamond', 'technic:diamond', 'technic:diamond'},
41         {'technic:diamond', 'technic:diamond', 'technic:diamond'},
42         {'technic:diamond', 'technic:diamond', 'technic:diamond'},
43     }
44 })
45
46 minetest.register_node( "technic:diamond_block", {
47     description = "Diamond Block",
48     tiles = { "technic_diamond_block.png" },
49     is_ground_content = true,
50     groups = {cracky=3},
51     sounds = default.node_sound_stone_defaults(),
52     drop = 'craft "technic:diamond_block" 1',
53 }) 
54
55 minetest.register_craft({
56     output = 'technic:red_energy_crystal',
57     recipe = {
58         {'moreores:gold_ingot', 'technic:battery', 'dye:red'},
59         {'technic:battery', 'technic:diamond_block', 'technic:battery'},
60         {'dye:red', 'technic:battery', 'moreores:gold_ingot'},
61     }
62 })
63
64 minetest.register_craftitem( "technic:red_energy_crystal", {
65     description = "Red Energy Crystal",
66     inventory_image = minetest.inventorycube("technic_diamond_block_red.png", "technic_diamond_block_red.png", "technic_diamond_block_red.png"),
67     on_place_on_ground = minetest.craftitem_place_item,
68 })
69
70 minetest.register_craft({
71     output = 'technic:green_energy_crystal',
72     recipe = {
73         {'moreores:gold_ingot', 'technic:battery', 'dye:green'},
74         {'technic:battery', 'technic:red_energy_crystal', 'technic:battery'},
75         {'dye:green', 'technic:battery', 'moreores:gold_ingot'},
76     }
77 })
78
79 minetest.register_craftitem( "technic:green_energy_crystal", {
80     description = "Green Energy Crystal",
81     inventory_image = minetest.inventorycube("technic_diamond_block_green.png", "technic_diamond_block_green.png", "technic_diamond_block_green.png"),
82     on_place_on_ground = minetest.craftitem_place_item,
83 })
84
85 minetest.register_craft({
86     output = 'technic:blue_energy_crystal',
87     recipe = {
88         {'moreores:gold_ingot', 'technic:battery', 'dye:blue'},
89         {'technic:battery', 'technic:green_energy_crystal', 'technic:battery'},
90         {'dye:blue', 'technic:battery', 'moreores:gold_ingot'},
91     }
92 })
93
94 minetest.register_craftitem( "technic:blue_energy_crystal", {
95     description = "Blue Energy Crystal",
96     inventory_image = minetest.inventorycube("technic_diamond_block_blue.png", "technic_diamond_block_blue.png", "technic_diamond_block_blue.png"),
97     on_place_on_ground = minetest.craftitem_place_item,
98 })
99
100
101