ShadowNinja
2013-07-11 5d470cd753efe8f4640099165a7bfc0c6e181c35
commit | author | age
ee5c6c 1 technic.register_grinder_recipe("gloopores:alatro_lump","technic:alatro_dust 2")
K 2 technic.register_grinder_recipe("gloopores:kalite_lump","technic:kalite_dust 2")
3 technic.register_grinder_recipe("gloopores:arol_lump","technic:arol_dust 2")
4 technic.register_grinder_recipe("gloopores:talinite_lump","technic:talinite_dust 2")
5 technic.register_grinder_recipe("gloopores:akalin_lump","technic:akalin_dust 2")
82cba9 6  
R 7 minetest.register_craftitem("technic:alatro_dust", {
8         description = "Alatro Dust",
9         inventory_image = "technic_alatro_dust.png",
10 })
11  
12 minetest.register_craft({
13     type = "cooking",
14     output = "gloopores:alatro_ingot",
15     recipe = "technic:alatro_dust",
16 })
17  
18 minetest.register_craftitem("technicplus:arol_dust", {
19         description = "Arol Dust",
20         inventory_image = "technic_arol_dust.png",
21 })
22  
23 minetest.register_craft({
24     type = "cooking",
25     output = "gloopores:arol_ingot",
26     recipe = "technic:arol_dust",
27 })
28  
29 minetest.register_craftitem("technic:talinite_dust", {
30         description = "Talinite Dust",
31         inventory_image = "technic_talinite_dust.png",
32 })
33  
34 minetest.register_craft({
35     type = "cooking",
36     output = "gloopores:talinite_ingot",
37     recipe = "technic:talinite_dust",
38 })
39  
40 minetest.register_craftitem("technic:akalin_dust", {
41         description = "Akalin Dust",
42         inventory_image = "technic_akalin_dust.png",
43 })
44  
45 minetest.register_craft({
46     type = "cooking",
47     output = "gloopores:akalin_ingot",
48     recipe = "technic:akalin_dust",
49 })
50  
51 minetest.register_craftitem("technic:kalite_dust", {
52         description = "Kalite Dust",
53         inventory_image = "technic_kalite_dust.png",
54         on_use = minetest.item_eat(2)
55 })