diff --git a/index.html b/index.html index d9ffa49..010e301 100644 --- a/index.html +++ b/index.html @@ -9769,7 +9769,7 @@ const type = MONSTER_TYPES[m.type] || { name: 'Unknown', icon: '👹' }; monstersHtml += `
+
Lv${m.level} ${type.name}
${m.hp}/${m.maxHp} HP
+
`;
} else if (monster.buffs.generic && monster.buffs.generic.turnsLeft > 0) {
- html += `
`;
}
@@ -11045,8 +11045,8 @@
if (monster.statusEffects) {
monster.statusEffects.forEach(effect => {
const effectType = effect.type || 'status';
- html += `
`;
});
}
@@ -11061,8 +11061,8 @@
// Check for player defense buff
if (combatState.defenseBuffTurns > 0) {
- html += `
`;
}
@@ -11070,8 +11070,8 @@
if (combatState.playerStatusEffects && combatState.playerStatusEffects.length > 0) {
combatState.playerStatusEffects.forEach(effect => {
const effectType = effect.type || 'status';
- html += `
`;
});
}
@@ -11113,8 +11113,8 @@
+