Skip to main content

Well Rested

info

Well Rested provides bonuses to speed, strength, and block mining speed, increases the player's HP, and also adds gradual health regeneration. The effect of the additional health and regeneration doesn't diminish over time, unlike other buffs.

The Well Rested level depends on the comfort of the sleeping area.

After waking up, the player receives the Rested effect. The effect has up to 5 levels — higher levels increase strength and duration.

Each level progresses through three phases, gradually weakening over time:

PhaseStrength
Phase 1Strongest
Phase 2Medium
Phase 3Weakest
tip

Higher Rested levels are always stronger overall. For example, Phase 3 of Level 5 is still stronger than Phase 1 of Level 1.

If a player goes to bed with the Well Rested buff, they will only receive a new buff upon waking if it is stronger than the buff they already have. For example, if a player currently has Well Rested at level 4, sleeping in a location that only provides Well Rested at level 1 will keep their level 4 buff. However, if the current buff is stronger but is about to expire, the player will receive a new one, even if it is weaker.

Well Rested

You can completely disable the HUD display using the following config parameter: "hideWellRestedHud": false

info

The HUD's position above the hunger bar is unique to NeoForge; in other versions, the HUD is in the lower left corner. NeoForge has a unique config parameter: "wellRestedHudPosition": "primary" This changes the position of the well-rested hud. "Primary" is above the hunger bar, while "alternative" is in the lower left corner.

Well Rested Left


Config

In the config, the following fields are responsible for the strength of the effects:

"level5": {
"durationMinutes": 15,
"speedPhase1": 0.5,
"speedPhase2": 0.3,
"speedPhase3": 0.16,
"strengthPhase1": 0.24,
"strengthPhase2": 0.16,
"strengthPhase3": 0.08,
"hastePhase1": 0.35,
"hastePhase2": 0.2,
"hastePhase3": 0.1,
"attackSpeedPhase1": 0.12,
"attackSpeedPhase2": 0.06,
"attackSpeedPhase3": 0.03,
"healthBonus": 10.0,
"regenBonus": 0.1
}

The strength of each buff can be adjusted for any effect level and any phase. durationMinutes indicates the total duration of the effect for the specified level.

The values in the buff parameters represent a multiplier added to the player's vanilla stats. For example, in a vanilla game a player's speed is 1 — receiving speedPhase1: 0.5 makes it 1.5. This applies to all stats, meaning all potions also stack with the Well Rested effect.


Regeneration

regenBonus restores the player's health every 5 seconds. The amount of healing is calculated as a percentage of the player's maximum health:

heal = maxHealth × regenBonus × 0.5

For example, with 20 HP (10 hearts) and regenBonus = 0.1 — restores 1 HP (0.5 hearts) every 5 seconds.

note

Regeneration and health increase remain the same regardless of the current phase of the effect.