- Passat a mini v1.3.6

This commit is contained in:
2025-10-30 12:39:44 +01:00
parent 5fef769534
commit a5d097aa50
26 changed files with 396 additions and 399 deletions

View File

@@ -8,13 +8,13 @@ function fireball.init(_hab,_x,_y,_flip)
fireball.flip=_flip
end
function fireball:draw()
circfill(fireball.x,fireball.y,3,16)
circfill(fireball.x,fireball.y,2,3)
circfill(fireball.x,fireball.y,1,8)
function fireball.draw()
draw.circf(fireball.x,fireball.y,3,16)
draw.circf(fireball.x,fireball.y,2,3)
draw.circf(fireball.x,fireball.y,1,8)
end
function fireball:update()
function fireball.update()
if fireball.hab == -1 then return end
fireball.wait=fireball.wait+1