local item = require('item') local m = item:new() m.name = "Crowbar" m.description = "A durable tool for opening wooden boxes." function m:draw() love.graphics.push('all') love.graphics.translate(self.x, self.y) love.graphics.setLineWidth(3) love.graphics.line(10, 20, 20, 10, 25, 10, 30, 20, 40, 50) love.graphics.pop() end return m