Skip to content

Commit

Permalink
Slightly nerf soul cake
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarussOne committed Jun 9, 2024
1 parent 606adc5 commit 7ce1f1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/mod/emt/harkenscythe/blocks/HSSoulCake.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private boolean eatCake(World world, BlockPos pos, IBlockState state, EntityPlay
{
player.addStat(StatList.CAKE_SLICES_EATEN);
player.getFoodStats().addStats(4, 0.2F);
player.addPotionEffect(new PotionEffect(MobEffects.REGENERATION, 8 * 20, 0));
player.addPotionEffect(new PotionEffect(MobEffects.REGENERATION, 6 * 20, 0));
int i = state.getValue(BITES);
ItemStack stack = this.getPickBlock(state, null, world, pos, player);

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/harkenscythe/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ message.harkenscythe.hs_reap=%s was reaped
tooltip.harkenscythe.altar=Requires a Harken Athame for rituals
tooltip.harkenscythe.athame=A Blunt Harken Blade could develop magical abilities if it comes into contact with blood or souls...
tooltip.harkenscythe.blunt_blade=It could develop magical abilities if it comes into contact with blood or souls...
tooltip.harkenscythe.soul_cake=Gives Regeneration (0:08) when a slice is eaten and will drop itself when no slice is eaten
tooltip.harkenscythe.soul_cake=Gives Regeneration (0:06) when a slice is eaten and will drop itself when no slice is eaten
tooltip.harkenscythe.soul_cookie=Gives Regeneration (0:04) when eaten

0 comments on commit 7ce1f1a

Please sign in to comment.