version 0.21
This commit is contained in:
parent
bd1233aaf1
commit
c8d70b992c
1717 changed files with 68882 additions and 0 deletions
20
mods/DOM/watch/itens.lua
Normal file
20
mods/DOM/watch/itens.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
-- Watch recipe
|
||||
minetest.register_craft({
|
||||
description = "Watch",
|
||||
output = 'watch:watch',
|
||||
groups = {not_in_creative_inventory=1},
|
||||
recipe = {
|
||||
{'', 'default:gold_ingot', ''},
|
||||
{'default:gold_ingot', 'default:redstone_dust', 'default:gold_ingot'},
|
||||
{'', 'default:gold_ingot', ''}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
--Watch tool
|
||||
watch.registra_item("watch:watch",watch.images_a[3],true)
|
||||
|
||||
--Faces
|
||||
for a=0,11,1 do
|
||||
watch.registra_item("watch:watch_a"..tostring(a),watch.images_a[a+1],false)
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue