
Coin Monsters
A downloadable game
made for 70th weekly Portfolio Builders Jam!
first Defold game

function init(self)
self.score = 0
print("self.score")
self.score = self.score + 1
self.item_name = "sword"
self.health = 100
self.health = self.health -15
if self.health <= 0 then
print ('Game over')
end
self.jump_height = 80.5
self.failling = false
end
function final(self)
print("final")
end
function update(self, dt)
end
function late_update(self, dt)
print("update")
end
function fixed_update(self, dt)
print("fixed update")
end
function on_message(self, message_id, message, sender)
end
function on_input(self, action_id, action)
end
function on_reload(self)
end
| Published | 2 days ago |
| Status | Prototype |
| Author | roadkillcandy |
| Content | No generative AI was used |
Download
Download
Coin monster proto.zip 1.6 MB
Install instructions

Development log
- portfolio-builders-jam-week-702 days ago


