mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 23:10:41 +01:00
11 lines
402 B
Lua
11 lines
402 B
Lua
|
minetest.register_craftitem( "technic:silicon_wafer", {
|
||
|
description = "Silicon Wafer",
|
||
|
inventory_image = "technic_silicon_wafer.png",
|
||
|
on_place_on_ground = minetest.craftitem_place_item,
|
||
|
})
|
||
|
|
||
|
minetest.register_craftitem( "technic:doped_silicon_wafer", {
|
||
|
description = "Doped Silicon Wafer",
|
||
|
inventory_image = "technic_doped_silicon_wafer.png",
|
||
|
on_place_on_ground = minetest.craftitem_place_item,
|
||
|
})
|