README.txt 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Minetest mod "Stamina"
  2. =====================
  3. (C) 2015 - BlockMen
  4. (C) 2016 - Auke Kok <sofar@foo-projects.org>
  5. About this mod:
  6. ---------------
  7. This mod adds a stamina, or "hunger" mechanic to Minetest. Actions like
  8. crafting, walking, digging or fighting make the player exhausted. When
  9. enough exhaustion has been accumulated, the player gets more hungry,
  10. and loses stamina.
  11. If a player is low on stamina, they start taking periodical damage,
  12. and ultimately will die if they do not eat food.
  13. Eating food no longer heals the player. Instead, it increases the
  14. stamina of the player. The stamina bar shows how well fed the player
  15. is. More bread pieces means more stamina.
  16. Q&A time: Why won't I move the stamina bar to the right?
  17. Answer: this conflicts with the builtin breath bar. To move the
  18. builtin breath bar, I basically have to entirely re-implement it
  19. in lua including timers to catch breath changes for each online
  20. player, which is all a waste of time, just to move a few pixels
  21. around.
  22. For Modders:
  23. ------------
  24. This mod intercepts minetest.item_eat(), and applies the hp_change
  25. as stamina change. The value can be positive (increase stamina) or
  26. negative (periodically damage the player by 1 hp).
  27. Callbacks that are registered via minetest.register_on_item_eat()
  28. are called after this mod, so the itemstack will have changed already
  29. when callbacks are called. You can get the original itemstack as 6th
  30. parameter of your function then.
  31. License:
  32. --------
  33. Code:
  34. - all code LGPL-2.1+
  35. Textures:
  36. - stamina_hud_poison.png - BlockMen (CC-BY 3.0)
  37. - stamina_hud_fg.png - PilzAdam (WTFPL), modified by BlockMen
  38. - stamina_hud_bg.png - PilzAdam (WTFPL), modified by BlockMen
  39. Sounds:
  40. - stamina_eat.*.ogg - http://www.freesound.org/people/sonictechtonic/sounds/242215/ CC-BY-3.0