RealBadAngel
2013-03-30 279776ff62951a8a9ab96b86b03b7558e77a1c87
commit | author | age
82cba9 1 minetest.register_craftitem( "technic:silicon_wafer", {
R 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,
11 })
12
4411ba 13 -- tubes crafting recipes
R 14
82cba9 15 minetest.register_craft({
R 16     output = 'pipeworks:tube_000000 9',
17     recipe = {
18         {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
19         {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
20         {'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
21     }
22 })
3b5e6c 23 minetest.register_craft({
R 24     output = 'pipeworks:mese_tube_000000',
25     recipe = {
26         {'default:mese_crystal_fragment', 'pipeworks:tube_000000', 'default:mese_crystal_fragment'},
27         }
28 })
82cba9 29
4411ba 30 minetest.register_craft({
R 31     output = 'pipeworks:accelerator_tube_000000',
32     recipe = {
33         {'technic:copper_coil', 'pipeworks:tube_000000', 'technic:copper_coil'},
34         }
35 })
36
37 minetest.register_craft({
38     output = 'pipeworks:detector_tube_off_000000',
39     recipe = {
40         {'mesecons:mesecon', 'pipeworks:tube_000000', 'mesecons:mesecon'},
41         }
42 })
43
44 minetest.register_craft({
45     output = 'pipeworks:sand_tube_000000',
46     recipe = {
47         {'default:sand', 'pipeworks:tube_000000', 'default:sand'},
48         }
49 })
50
51 minetest.register_craft({
52     output = 'pipeworks:teleport_tube_000000',
53     recipe = {
54         {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
55         {'pipeworks:tube_000000', 'technic:control_logic_unit', 'pipeworks:tube_000000'},
56         {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
57         }
58 })
59
82cba9 60 minetest.register_craftitem( "technic:diamond_drill_head", {
R 61     description = "Diamond Drill Head",
62     inventory_image = "technic_diamond_drill_head.png",
63     on_place_on_ground = minetest.craftitem_place_item,
64 })
65
66 minetest.register_craft({
67     output = 'technic:diamond_drill_head',
68     recipe = {
279776 69         {'technic:stainless_steel_ingot', 'default:diamond', 'technic:stainless_steel_ingot'},
R 70         {'default:diamond', '', 'default:diamond'},
71         {'technic:stainless_steel_ingot', 'default:diamond', 'technic:stainless_steel_ingot'},
82cba9 72     }
R 73 })
74
75 minetest.register_craft({
76     output = 'technic:green_energy_crystal',
77     recipe = {
78         {'moreores:gold_ingot', 'technic:battery', 'dye:green'},
79         {'technic:battery', 'technic:red_energy_crystal', 'technic:battery'},
80         {'dye:green', 'technic:battery', 'moreores:gold_ingot'},
81     }
82 })
83
84 minetest.register_craft({
85     output = 'technic:blue_energy_crystal',
86     recipe = {
87         {'moreores:gold_ingot', 'technic:battery', 'dye:blue'},
88         {'technic:battery', 'technic:green_energy_crystal', 'technic:battery'},
89         {'dye:blue', 'technic:battery', 'moreores:gold_ingot'},
90     }
91 })
92
93 minetest.register_craft({
94     output = 'technic:red_energy_crystal',
95     recipe = {
96         {'moreores:gold_ingot', 'technic:battery', 'dye:red'},
279776 97         {'technic:battery', 'default:diamondblock', 'technic:battery'},
82cba9 98         {'dye:red', 'technic:battery', 'moreores:gold_ingot'},
R 99     }
100 })
101
102 minetest.register_tool("technic:blue_energy_crystal",
103 {description = "Blue Energy Crystal",
104 inventory_image = minetest.inventorycube("technic_diamond_block_blue.png", "technic_diamond_block_blue.png", "technic_diamond_block_blue.png"),
105 tool_capabilities = {load=0,max_drop_level=0, groupcaps={fleshy={times={}, uses=10000, maxlevel=0}}}}) 
106
107 minetest.register_tool("technic:green_energy_crystal",
108 {description = "Green Energy Crystal",
109 inventory_image = minetest.inventorycube("technic_diamond_block_green.png", "technic_diamond_block_green.png", "technic_diamond_block_green.png"),
110 tool_capabilities = {load=0,max_drop_level=0, groupcaps={fleshy={times={}, uses=10000, maxlevel=0}}}}) 
111
112 minetest.register_tool("technic:red_energy_crystal",
113 {description = "Red Energy Crystal",
114 inventory_image = minetest.inventorycube("technic_diamond_block_red.png", "technic_diamond_block_red.png", "technic_diamond_block_red.png"),
115 tool_capabilities = {load=0,max_drop_level=0, groupcaps={fleshy={times={}, uses=10000, maxlevel=0}}}}) 
116
117
118 minetest.register_craftitem( "technic:fine_copper_wire", {
119     description = "Fine Copper Wire",
120     inventory_image = "technic_fine_copper_wire.png",
121     on_place_on_ground = minetest.craftitem_place_item,
122 })
123
124 minetest.register_craft({
125     output = 'technic:fine_copper_wire 2',
126     recipe = {
127         {'', 'moreores:copper_ingot', ''},
128         {'', 'moreores:copper_ingot', ''},
129         {'', 'moreores:copper_ingot', ''},
130     }
131 })
132
133 minetest.register_craftitem( "technic:copper_coil", {
134     description = "Copper Coil",
135     inventory_image = "technic_copper_coil.png",
136     on_place_on_ground = minetest.craftitem_place_item,
137 })
138
139 minetest.register_craft({
140     output = 'technic:copper_coil 1',
141     recipe = {
142         {'technic:fine_copper_wire', 'default:steel_ingot', 'technic:fine_copper_wire'},
143         {'default:steel_ingot', '', 'default:steel_ingot'},
144         {'technic:fine_copper_wire', 'default:steel_ingot', 'technic:fine_copper_wire'},
145     }
146 })
147
148 minetest.register_craftitem( "technic:motor", {
149     description = "Electric Motor",
150     inventory_image = "technic_motor.png",
151     on_place_on_ground = minetest.craftitem_place_item,
152 })
153
154 minetest.register_craft({
155     output = 'technic:motor',
156     recipe = {
157         {'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'},
158         {'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'},
159         {'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'},
160     }
161 })
162
163 minetest.register_craftitem( "technic:mv_transformer", {
164     description = "Medium Voltage Transformer",
165     inventory_image = "technic_mv_transformer.png",
166     on_place_on_ground = minetest.craftitem_place_item,
167 })
168
169 minetest.register_craft({
170     output = 'technic:mv_transformer',
171     recipe = {
172         {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
173         {'technic:copper_coil', 'default:steel_ingot', 'technic:copper_coil'},
174         {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
175     }
176 })
177
3b5e6c 178 minetest.register_craftitem( "technic:control_logic_unit", {
R 179     description = "Control Logic Unit",
180     inventory_image = "technic_control_logic_unit.png",
181     on_place_on_ground = minetest.craftitem_place_item,
182 })
183
184 minetest.register_craft({
185     output = 'technic:control_logic_unit',
186     recipe = {
187         {'', 'moreores:gold_ingot', ''},
188         {'moreores:copper_ingot', 'technic:silicon_wafer', 'moreores:copper_ingot'},
189         {'', 'moreores:copper_ingot', ''},
190     }
191 })