Mineclonia/mods/PLAYER/mcl_hunger/API.md

58 lines
1.8 KiB
Markdown
Raw Permalink Normal View History

# API information (WIP)
2019-02-06 20:23:05 +00:00
This API information is not complete yet.
The mod API is still pretty much unofficial; this mod is mostly seen
as standalone for now.
This may change in the future development of MineClone 2. Hopefully.
2019-02-06 20:23:05 +00:00
## Mod state
The hunger mechanic is disabled when damage is disabled
(setting `enable_damage=false`).
You can check the hunger state with `mcl_hunger.active`. If it's true,
then hunger is active.
If the hunger is disabled, most of the functions are no-ops or return
default values.
2017-02-22 12:33:45 +00:00
2019-02-06 20:23:05 +00:00
## Player values
### Hunger level
2017-02-21 14:58:51 +00:00
The hunger level of the player is a whole number between 0 and 20 inclusive.
0 is starving and 20 is full. The hunger level is represented in
the HUD by a statbar with 20 half-icons.
2019-02-06 20:23:05 +00:00
### Saturation
To be written ...
### Exhaustion
To be written ...
2017-02-21 14:58:51 +00:00
## Functions
2019-02-06 20:23:05 +00:00
This API documentation is not complete yet, more documentation will
come.
2017-02-21 14:58:51 +00:00
### `mcl_hunger.get_hunger(player)`
Returns the current hunger level of `player` (ObjectRef).
### `mcl_hunger.set_hunger(player, hunger)`
Sets the hunger level of `player` (ObjectRef) to `hunger` immediately.
`hunger` ***must*** be between 0 and 20 inclusive.
2019-02-06 20:23:05 +00:00
### `mcl_hunger.exhaust(player, exhaust)`
Increase exhaustion of player by `exhaust`.
### `mcl_hunger.stop_poison(player)`
Immediately stops food poisoning for player.
2019-02-06 20:23:05 +00:00
### More functions ...
There are more functions (of less importance) available, see `api.lua`.
## Groups
Items in group `food=3` will make a drinking sound and no particles.
Items in group `food` with any other rating will make an eating sound and particles,
based on the inventory image or wield image (whatever is available first).
## Suppressing food particles
Normally, all food items considered food (not drinks) make food particles.
You can suppress the food particles by adding the field
`_food_particles=false` to the item definition.