From c166cdffc9f9164f67944f874606d16414d79b44 Mon Sep 17 00:00:00 2001
From: Dragon Slayer <85514184+DragonSlayer62@users.noreply.github.com>
Date: Wed, 3 Jul 2024 17:41:19 -0500
Subject: [PATCH] updated animallore
---
data/js/skill/animallore.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/data/js/skill/animallore.js b/data/js/skill/animallore.js
index fe46a7c8..e233ee30 100644
--- a/data/js/skill/animallore.js
+++ b/data/js/skill/animallore.js
@@ -158,11 +158,11 @@ function onCallback0( pSock, ourObj )
animalLoreGump.AddGump( 28, 76, 0x826 );
animalLoreGump.AddHTMLGump( 47, 74, 160, 18, false, false, "" + GetDictionaryEntry( 2135, pSock.language ) + "" ); // Attributes
animalLoreGump.AddHTMLGump( 53, 92, 160, 18, false, false, "" + GetDictionaryEntry( 2144, pSock.language ) + "" ); // Hit Point Regeneration
- animalLoreGump.AddHTMLGump( position, 92, 75, 18, false, false, "N/A" ); // Not implemented yet
+ animalLoreGump.AddHTMLGump( position, 92, 75, 18, false, false, ourObj.healthRegen.toString() );
animalLoreGump.AddHTMLGump( 53, 110, 160, 18, false, false, "" + GetDictionaryEntry( 2145, pSock.language ) + "" ); // Stamina Regeneration
- animalLoreGump.AddHTMLGump( position, 110, 75, 18, false, false, "N/A" ); // Not implemented yet
+ animalLoreGump.AddHTMLGump( position, 110, 75, 18, false, false, ourObj.staminaRegen.toString() );
animalLoreGump.AddHTMLGump( 53, 128, 160, 18, false, false, "" + GetDictionaryEntry( 2146, pSock.language ) + "" ); // Mana Regeneration
- animalLoreGump.AddHTMLGump( position, 128, 75, 18, false, false, "N/A" ); // Not implemented yet
+ animalLoreGump.AddHTMLGump( position, 128, 75, 18, false, false, ourObj.manaRegen.toString() );
animalLoreGump.AddButton( 240, 328, 0x15E1, 0x15E5, 0, 3, 0 );
animalLoreGump.AddButton( 217, 328, 0x15E3, 0x15E7, 0, 1, 0 );
}