/ bjvxlx_bronze / craft_existing.lua
craft_existing.lua
 1  local mod = bjvxlx.bronze
 2  
 3  local bnugget = 'bjvxlx_bronze:bronze_nugget'
 4  local bingot = 'bjvxlx_bronze:bronze_ingot'
 5  local bblock = 'bjvxlx_bronze:bronze_block'
 6  
 7  minetest.register_craft({
 8      type = 'shaped',
 9      output = 'mcl_cauldrons:cauldron',
10      recipe = {
11          {bingot, '', bingot},
12          {bingot, '', bingot},
13          {bingot, bingot, bingot}
14      }
15  })
16  minetest.register_craft({
17      type = 'shaped',
18      output = 'mcl_lanterns:lantern_floor',
19      recipe = {
20          {bnugget, bnugget, bnugget},
21          {bnugget, 'mcl_torches:torch', bnugget},
22          {bnugget, bnugget, bnugget}
23      }
24  })
25  minetest.register_craft({
26      type = 'shaped',
27      output = 'mcl_lanterns:soul_lantern_floor',
28      recipe = {
29          {bnugget, bnugget, bnugget},
30          {bnugget, 'mcl_blackstone:soul_torch', bnugget},
31          {bnugget, bnugget, bnugget}
32      }
33  })
34  minetest.register_craft({
35      type = 'shaped',
36      output = 'mcl_shields:shield',
37      recipe = {
38          {'group:wood', bingot, 'group:wood'},
39          {'group:wood', 'group:wood', 'group:wood'},
40          {'', 'group:wood', ''}
41      }
42  })
43  minetest.register_craft({
44      type = 'shaped',
45      output = 'mesecons_pistons:piston_normal_off',
46      recipe = {
47          {'group:wood', 'group:wood', 'group:wood'},
48          {'mcl_core:cobble', bingot, 'mcl_core:cobble'},
49          {'mcl_core:cobble', 'mesecons:redstone', 'mcl_core:cobble'}
50      }
51  })
52  minetest.register_craft({
53      type = 'shapeless',
54      output = 'mcl_fire:flint_and_steel',
55      recipe = {bingot, 'mcl_core:flint'}
56  })
57  minetest.register_craft({
58      type = 'shaped',
59      output = 'mcl_hoppers:hopper',
60      recipe = {
61          {bingot, '', bingot},
62          {bingot, 'mcl_chests:chest', bingot},
63          {'', bingot, ''}
64      }
65  })
66  minetest.register_craft({
67      type = 'shaped',
68      output = 'mcl_anvils:anvil',
69      recipe = {
70          {bblock, bblock, bblock},
71          {'', bingot, ''},
72          {bingot, bingot, bingot}
73      }
74  })
75  minetest.register_craft({
76      type = 'shaped',
77      output = 'mcl_bows:crossbow',
78      recipe = {
79          {'mcl_core:stick', bingot, 'mcl_core:stick'},
80          {'mcl_mobitems:string', 'mcl_bows:arrow', 'mcl_mobitems:string'},
81          {'', 'mcl_core:stick', ''}
82      }
83  })
84  minetest.register_craft({
85      type = 'shaped',
86      output = "mcl_minecarts:rail 16",
87      recipe = {
88          {bingot, '', bingot},
89          {bingot, 'mcl_core:stick', bingot},
90          {bingot, '', bingot}
91      }
92  })