Damageable
Damageable is an interface which defines properties, events, and functions for objects which can take damage and die.
Properties
Property Name | Return Type | Description | Tags |
---|---|---|---|
hitPoints |
number |
Current amount of hit points. | Read-Write |
maxHitPoints |
number |
Maximum amount of hit points. | Read-Write |
Functions
Function Name | Return Type | Description | Tags |
---|---|---|---|
ApplyDamage(Damage) |
None |
Damages a Damageable, unless it is invulnerable. If its hit points reach 0 and it is not immortal, it dies. | Server-Only |
Die([Damage]) |
None |
Kills the Damageable, unless it is immortal. The optional Damage parameter is a way to communicate cause of death. | Server-Only |
Events
Hooks
Last update:
January 27, 2022