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 @@ - +