From 0e87138789f4b6874b994b7e689d56c0a9a54c91 Mon Sep 17 00:00:00 2001 From: Trevor Date: Thu, 5 Oct 2023 00:03:35 +0000 Subject: [PATCH] Implemented eating of frog spawn --- Server/src/main/content/data/consumables/Consumables.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/src/main/content/data/consumables/Consumables.java b/Server/src/main/content/data/consumables/Consumables.java index b8d3b4cf9..31a22a6e0 100644 --- a/Server/src/main/content/data/consumables/Consumables.java +++ b/Server/src/main/content/data/consumables/Consumables.java @@ -309,6 +309,7 @@ public enum Consumables { EQUA_LEAVES(new Food(new int[]{2128}, new HealingEffect(1))), CHOC_ICE(new Food(new int[]{6794}, new HealingEffect(6))), EDIBLE_SEAWEED(new Food(new int[] {403}, new HealingEffect(4))), + FROG_SPAWN(new Food(new int[] {5004}, new RandomHealthEffect(3, 7), "You eat the frogspawn. Yuck.")), /** Special Events */ PUMPKIN(new Food(new int[] {1959}, new HealingEffect(14))),