CommitLog |
This commit is contained in:
parent
a951c8908b
commit
5519e5bf70
18 changed files with 565 additions and 26 deletions
8
scripts/damage_player.gml
Normal file
8
scripts/damage_player.gml
Normal file
|
@ -0,0 +1,8 @@
|
|||
///damage_player(amount)
|
||||
|
||||
if(invuln_counter == invuln_counter_max)
|
||||
{
|
||||
hp -= argument0;
|
||||
invuln_counter = 0;
|
||||
}
|
||||
|
Reference in a new issue