4
0
Fork 0
This repository has been archived on 2023-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
surprise_dungeon/objects/oPlayer/Collision_oMonster.gml

6 lines
110 B
Plaintext
Raw Normal View History

if (inv == 0) {
2020-12-06 19:12:21 +00:00
audio_play_sound(snHit,1,false);
hit(other, self);
2020-12-06 16:05:26 +00:00
inv = 30;
2020-12-05 17:56:12 +00:00
}
knockBack(other, self);