add inventory.get_uses, inventory.use, item.uses & update base:bazalt_breaker

This commit is contained in:
MihailRis
2025-02-17 04:40:18 +03:00
parent 231fc7e0d0
commit bbfc0dbf17
5 changed files with 40 additions and 4 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
{
"icon-type": "sprite",
"icon": "items:bazalt_breaker"
"icon": "items:bazalt_breaker",
"uses": 100
}
+2 -1
View File
@@ -1,3 +1,4 @@
function on_block_break_by(x, y, z, p)
function on_block_break_by(x, y, z, pid)
block.set(x, y, z, 0, 0)
inventory.use(player.get_inventory(pid))
end