This commit is contained in:
Dominic Szablewski
2021-09-13 09:34:08 +02:00
commit a844ba46f8
95 changed files with 11727 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
class entity_pickup_health_t extends entity_pickup_t {
_init() {
super._init();
this._texture = 23;
}
_pickup() {
audio_play(sfx_pickup);
game_entity_player._health += 25;
this._kill();
}
}