promotional bannermobile promotional banner
premium banner
Addon for Passive Health Regen. Adds craftable bandages that clear regen cooldown and boost passive healing speed. Can be used standalone without the host mod.

Description

THIS IS AN ADDON TO PASSIVE HEALTH REGEN

Adds four craftable bandage items to Minecraft. Each bandage clears your passive regen cooldown instantly and applies a temporary regen speed boost. Higher tier bandages last longer, heal faster, and can cure effects like poison and wither. Works best with Passive Health Regen but can be used standalone.

EXAMPLE CONFIG

{
  // Master toggle for every bandage item in this addon.
  "enabled": true,

  // Shared item use cooldown in ticks (how long before you can use any bandage again). 20 ticks = 1 second.
  "useCooldownTicks": 100,

  // Per-item cooldowns in ticks. Overrides the shared cooldown for each specific bandage.
  "clothCooldownTicks": 100,
  "woolCooldownTicks": 100,
  "honeyCooldownTicks": 100,
  "goldenCooldownTicks": 100,

  // How long a bandage takes to use. 32 ticks feels close to a drink animation.
  "useDurationTicks": 32,

  // If false, bandage recipes are not loaded. Requires restart to update.
  "enableRecipes": true,

  // Per-item enable toggles.
  "clothBandageEnabled": true,
  "woolBandageEnabled": true,
  "honeyBandageEnabled": true,
  "goldenBandageEnabled": true,

  // Per-item stack sizes. Changing these is safest with a restart.
  "clothBandageStackSize": 16,
  "woolBandageStackSize": 16,
  "honeyBandageStackSize": 16,
  "goldenBandageStackSize": 4,

  // Wool bandage passive regen boost. Multiplier and duration in ticks.
  "woolBoostMultiplier": 1.5,
  "woolBoostDurationTicks": 600,

  // Honey bandage passive regen boost and poison cure toggle.
  "honeyBoostMultiplier": 2.0,
  "honeyBoostDurationTicks": 400,
  "honeyCurePoison": true,

  // Golden bandage passive regen boost and curative toggles.
  "goldenBoostMultiplier": 2.5,
  "goldenBoostDurationTicks": 900,
  "goldenCurePoison": true,
  "goldenCureWither": true,

  // Loot injection settings.
  "injectIntoLoot": true,
  "lootInjectionWeight": 6,
  "lootCountMin": 1,
  "lootCountMax": 2,
  "lootTables": ["minecraft:chests/simple_dungeon", "minecraft:chests/abandoned_mineshaft", "minecraft:chests/shipwreck_supply", "minecraft:chests/pillager_outpost", "minecraft:chests/desert_pyramid", "minecraft:chests/jungle_temple"],
  "lootAllowedTypes": ["cloth_bandage", "wool_bandage", "honey_bandage", "golden_bandage"]
}