forked from minetest-mods/technic
update
This commit is contained in:
parent
335061997e
commit
54d6c27a06
43
items.lua
43
items.lua
|
@ -95,5 +95,48 @@ inventory_image = minetest.inventorycube("technic_diamond_block_red.png", "techn
|
|||
tool_capabilities = {load=0,max_drop_level=0, groupcaps={fleshy={times={}, uses=10000, maxlevel=0}}}})
|
||||
|
||||
|
||||
minetest.register_craftitem( "technic:fine_copper_wire", {
|
||||
description = "Fine Copper Wire",
|
||||
inventory_image = "technic_fine_copper_wire.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:fine_copper_wire 2',
|
||||
recipe = {
|
||||
{'', 'moreores:copper_ingot', ''},
|
||||
{'', 'moreores:copper_ingot', ''},
|
||||
{'', 'moreores:copper_ingot', ''},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craftitem( "technic:copper_coil", {
|
||||
description = "Copper Coil",
|
||||
inventory_image = "technic_copper_coil.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:copper_coil 1',
|
||||
recipe = {
|
||||
{'technic:fine_copper_wire', 'default:steel_ingot', 'technic:fine_copper_wire'},
|
||||
{'default:steel_ingot', '', 'default:steel_ingot'},
|
||||
{'technic:fine_copper_wire', 'default:steel_ingot', 'technic:fine_copper_wire'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craftitem( "technic:motor", {
|
||||
description = "Electric Motor",
|
||||
inventory_image = "technic_motor.png",
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:motor',
|
||||
recipe = {
|
||||
{'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'technic:copper_coil', 'default:steel_ingot'},
|
||||
{'default:steel_ingot', 'moreores:copper_ingot', 'default:steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
|
|
BIN
textures/technic_copper_coil.png
Normal file
BIN
textures/technic_copper_coil.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
textures/technic_fine_copper_wire.png
Normal file
BIN
textures/technic_fine_copper_wire.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
textures/technic_motor.png
Normal file
BIN
textures/technic_motor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in New Issue
Block a user