User Tools

Site Tools


mr:regeneration_buff

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
mr:regeneration_buff [2026/03/14 07:57] – Wiki standards compliance fixes for 5 random pages Qwen Assistantmr:regeneration_buff [2026/03/14 08:00] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Regeneration Buff ======
 +
 +Machine-readable reference page for the Regeneration buff entity.
 +
 +==== Entity Information ====
 +  * **Entity Kind:** Regeneration
 +  * **Type:** Buff (healing over time)
 +  * **Implementation:** Java buff class
 +  * **File:** `com/watabou/pixeldungeon/actors/buffs/Regeneration.java`
 +
 +==== Java Classes ====
 +  * [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/java/com/watabou/pixeldungeon/actors/buffs/Regeneration.java|Regeneration.java]] - Main buff implementation
 +    * Extends `Buff` class
 +    * Default regeneration delay: 10 ticks
 +    * Supports fast regeneration facilitation bonus
 +    * Applies healing to non-starving targets in unsafe levels
 +
 +==== JSON Configuration ====
 +This entity is implemented in Java, no JSON configuration exists
 +
 +==== String Resources ====
 +  * English: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values/strings_all.xml#L605-L606|strings_all.xml]]
 +<code xml>
 +<string name="RegenerationBuff_Name">Natural Regeneration</string>
 +<string name="RegenerationBuff_Info">The function for natural regeneration is in a buff form to make things easier.</string>
 +</code>
 +  * Russian: [[https://github.com/NYRDS/remixed-dungeon/blob/master/RemixedDungeon/src/main/res/values-ru/strings_all.xml#L1707-L1708|strings_all.xml (ru)]]
 +<code xml>
 +<string name="RegenerationBuff_Info">Функция естественной регенерации реализована в форме баффа, дабы упростить работу.</string>
 +<string name="RegenerationBuff_Name">Естественная регенерация</string>
 +</code>
 +
 +==== Lua Scripts ====
 +This entity is implemented in Java, no Lua script exists
 +
 +==== Code Details ====
 +  * **Regeneration Rate:** Base 1 HP per 10 ticks
 +  * **Fast Regeneration:** +10 bonus when facilitation is enabled (for Hero)
 +  * **Healing Rate Formula:** healRate = 1.2^bonus
 +  * **Max Healing Rate:** Capped at 5x base rate (50 ticks)
 +  * **Conditions:** Only heals when not starving and in unsafe level
 +
 +==== Related mr: Entities ====
 +  * [[mr:buff|Buff Base Class]]
 +  * [[mr:hunger_buff|Hunger Buff]]
 +  * [[mr:fast_regeneration_facilitation|Fast Regeneration Facilitation]]
 +  * [[mr:mana_regeneration_buff|Mana Regeneration Buff]]
  
mr/regeneration_buff.txt · Last modified: by 127.0.0.1