Skip to content

Commit 1ac5c3d

Browse files
NuclearfartsNuclearfarts
Nuclearfarts
authored and
Nuclearfarts
committed
increase duration of health boost to match absorption
1 parent 6d9157e commit 1ac5c3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/nuclearfarts/morepotions/MorePotions.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ private MorePotions() {}
6060
public static final Potion LONG_ABSORPTION = register("long_absorption", new Potion(new StatusEffectInstance(StatusEffects.ABSORPTION, 4 * 60 * 20, 1)));
6161
public static final Potion STRONG_ABSORPTION = register("strong_absorption", new Potion(new StatusEffectInstance(StatusEffects.ABSORPTION, 1 * 60 * 20, 3)));
6262

63-
public static final Potion HEALTH_BOOST = register("health_boost", new Potion(new StatusEffectInstance(StatusEffects.HEALTH_BOOST, 90 * 20)), Items.GLISTERING_MELON_SLICE, ABSORPTION);
64-
public static final Potion LONG_HEALTH_BOOST = register("long_health_boost", new Potion(new StatusEffectInstance(StatusEffects.HEALTH_BOOST, 3 * 60 * 20)));
65-
public static final Potion STRONG_HEALTH_BOOST = register("strong_health_boost", new Potion(new StatusEffectInstance(StatusEffects.HEALTH_BOOST, 45 * 20, 1)));
63+
public static final Potion HEALTH_BOOST = register("health_boost", new Potion(new StatusEffectInstance(StatusEffects.HEALTH_BOOST, 2 * 60 * 20)), Items.GLISTERING_MELON_SLICE, ABSORPTION);
64+
public static final Potion LONG_HEALTH_BOOST = register("long_health_boost", new Potion(new StatusEffectInstance(StatusEffects.HEALTH_BOOST, 4 * 60 * 20)));
65+
public static final Potion STRONG_HEALTH_BOOST = register("strong_health_boost", new Potion(new StatusEffectInstance(StatusEffects.HEALTH_BOOST, 60 * 20, 1)));
6666

6767
public static void init() {
6868
RECIPES.forEach(RecipeToInit::init);

0 commit comments

Comments
 (0)