mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 15:50:39 +02:00
Added silicon wafers
This commit is contained in:
11
items.lua
Normal file
11
items.lua
Normal file
@ -0,0 +1,11 @@
|
||||
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,
|
||||
})
|
Reference in New Issue
Block a user