diff --git a/src/App.jsx b/src/App.jsx index d79ee6d..2d3be71 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -297,6 +297,8 @@ const getPrimaryColor = (catalog) => { return "#44264C"; case "Ynnari": return "#536766"; + case "Leagues of Votann": + return "#7d4c08"; default: console.log(catalog); return "#536766"; diff --git a/src/Roster.jsx b/src/Roster.jsx index d347407..ccb5466 100644 --- a/src/Roster.jsx +++ b/src/Roster.jsx @@ -376,22 +376,6 @@ const ModelStats = ({ model.replaceAll(name, "") ); - const degradingStuff = []; - const bsChange = Math.abs(parseInt(modelStats[0].bs, 10) - parseInt(bs, 10)); - if (bsChange > 0) { - degradingStuff.push(`${bsChange} from the balistic skill`); - } - const wsChange = Math.abs(parseInt(modelStats[0].ws, 10) - parseInt(ws, 10)); - if (wsChange > 0) { - degradingStuff.push(`${wsChange} from the weapon skill`); - } - const attacksChange = Math.abs( - parseInt(modelStats[0].attacks, 10) - parseInt(attacks, 10) - ); - if (attacksChange > 0) { - degradingStuff.push(`${attacksChange} from the number of attacks`); - } - return (