Added silicon wafers

This commit is contained in:
Maciej Kasatkin
2012-09-11 13:57:16 +02:00
parent 1f1562f630
commit d771496210
2 changed files with 12 additions and 0 deletions

11
items.lua Normal file
View 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,
})