From cc51e1c9a762740f69c7f5ffab90e8b5133483c5 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 13 Jun 2026 20:12:24 -0400 Subject: [PATCH] Apply bestiary XP bonus to all difficulties --- site/bestiary-tables.js | 4 ++++ site/bestiary.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/site/bestiary-tables.js b/site/bestiary-tables.js index 7ebd707..79a0906 100644 --- a/site/bestiary-tables.js +++ b/site/bestiary-tables.js @@ -159,6 +159,10 @@ function displayValue(row, key) { const value = row[key]; + if (key === "exp" && row.difficulty !== "Ultimate") { + return Math.round(Number(value || 0) * xpBonusMultiplier()); + } + if (row.difficulty !== "Ultimate") { return value ?? ""; } diff --git a/site/bestiary.html b/site/bestiary.html index 700c812..6874121 100644 --- a/site/bestiary.html +++ b/site/bestiary.html @@ -113,6 +113,6 @@ - +