Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add readme #23

Merged
merged 1 commit into from
Jun 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Health
=======

This module handles regeneration, restoration and damage of entities.

## Regeneration
Handles the natural healing of entities (and blocks).
To activate regeneration send `ActivateRegenEvent(String id, float value, float endTime)`. Health is regenerated every
second. Empty event `ActivateRegenEvent()` activates base regeneration of entity.

To deactivate particular type of regeneration, send `DeactivateRegenEvent(String id)`. Empty event
`DeactivateRegenEvent()` deactivates base regeneration fo entity.

## Restoration
Handles magical healing of entities.
To heal an entity, send `DoRestoreEvent(amount, instigatorRef)`.

The event chain of restoration:
* DoRestoreEvent
* BeforeRestoreEvent
* Entity restored, health component saved
* OnRestoreEvent
* OnFullyHealedEvent (if healed to full health)

## Damage System
Handles damage dealt to entities with health. Send `DoDamageEvent`
to deal damage to entity.

Event chain:
* DoDamageEvent
* BeforeDamageEvent
* Entity damaged, health component saved
* OnDamagedEvent

## Block Damage System
Enables block to sustain some damage before getting destroyed, and produces block particle effect on damage.