-- Fat minetest.register_craftitem("vox_mobdrops:fat", { description = "Fat", inventory_image = "fat.png", }) -- Add fat drops from mobs minetest.register_on_dieplayer(function(player) local inventory = player:get_inventory() if math.random(1, 5) == 1 then inventory:add_item("main", "vox_mobdrops:fat") end end) -- Leather