• Joined on 2025-05-17
Anexim closed issue Anexim/Mana-Loop#40 2026-05-18 20:08:56 +02:00
fix: golems/utils.ts and equipment/utils.ts duplicate local constants instead of importing from index
Anexim commented on issue Anexim/Mana-Loop#40 2026-05-18 20:08:56 +02:00
fix: golems/utils.ts and equipment/utils.ts duplicate local constants instead of importing from index

Fixed. Updated golems/utils.ts to import GOLEMS_DEF from './index' instead of locally spreading BASE/ELEMENTAL/HYBRID_GOLEMS. Updated equipment/utils.ts to import EQUIPMENT_TYPES from './index'…

Anexim closed issue Anexim/Mana-Loop#39 2026-05-18 20:08:56 +02:00
fix: RoomType type defined in two places
Anexim commented on issue Anexim/Mana-Loop#39 2026-05-18 20:08:56 +02:00
fix: RoomType type defined in two places

Fixed. Removed duplicate RoomType from constants/rooms.ts and changed it to re-export from types/game.ts. Updated constants/index.ts to re-export RoomType from types/game.ts instead of from rooms.ts.

Anexim closed issue Anexim/Mana-Loop#38 2026-05-18 20:08:56 +02:00
fix: EquipmentSlot type defined differently in two places
Anexim closed issue Anexim/Mana-Loop#43 2026-05-18 20:08:55 +02:00
fix: lifeEssenceDrop references banned life mana type
Anexim commented on issue Anexim/Mana-Loop#43 2026-05-18 20:08:55 +02:00
fix: lifeEssenceDrop references banned life mana type

Fixed. Renamed lifeEssenceDrop to vitalityEssenceDrop (id, name) to remove the banned "life" mana type reference.

Anexim closed issue Anexim/Mana-Loop#42 2026-05-18 20:08:55 +02:00
fix: pactMaster achievement requires 12 pacts but only 9 guardians exist
Anexim commented on issue Anexim/Mana-Loop#42 2026-05-18 20:08:55 +02:00
fix: pactMaster achievement requires 12 pacts but only 9 guardians exist

Fixed. Changed pactMaster achievement requirement from value: 12 to value: 9 to match the actual number of guardians (9 guardians at floors 10,20,30,40,50,60,80,90,100).

Anexim closed issue Anexim/Mana-Loop#45 2026-05-18 20:08:54 +02:00
fix: drain spell description references banned "life force" concept
Anexim commented on issue Anexim/Mana-Loop#45 2026-05-18 20:08:54 +02:00
fix: drain spell description references banned "life force" concept

Fixed. Changed drain spell description from "Drain life force from your enemy." to "Siphon vital energy from your enemy." to remove the banned "life force" reference.

Anexim closed issue Anexim/Mana-Loop#44 2026-05-18 20:08:54 +02:00
fix: ascension skill category in attunements.ts references banned mechanic
Anexim commented on issue Anexim/Mana-Loop#44 2026-05-18 20:08:54 +02:00
fix: ascension skill category in attunements.ts references banned mechanic

Fixed. Commented out categories.add('ascension') in getAvailableSkillCategories. The ascension skill category is a banned mechanic.

Anexim commented on issue Anexim/Mana-Loop#36 2026-05-18 19:54:40 +02:00
chore: Duplicate RARITY_COLORS constants with different values

Starting work on #36. Will rename duplicate RARITY_COLORS in loot-drops.ts to LOOT_RARITY_COLORS.

Anexim commented on issue Anexim/Mana-Loop#40 2026-05-18 19:54:39 +02:00
fix: golems/utils.ts and equipment/utils.ts duplicate local constants instead of importing from index

Starting work on #40. Will fix golems/utils.ts and equipment/utils.ts to import from index instead of duplicating constants.

Anexim commented on issue Anexim/Mana-Loop#39 2026-05-18 19:54:39 +02:00
fix: RoomType type defined in two places

Starting work on #39. Will remove duplicate RoomType from constants/rooms.ts and import from types/game.ts.

Anexim commented on issue Anexim/Mana-Loop#38 2026-05-18 19:54:39 +02:00
fix: EquipmentSlot type defined differently in two places

Starting work on #38. Will consolidate EquipmentSlot type into a single definition.

Anexim commented on issue Anexim/Mana-Loop#37 2026-05-18 19:54:39 +02:00
fix: Duplicate EnchantmentEffectDef types with incompatible shapes

Starting work on #37. Will remove duplicate EnchantmentEffectDef from spell-effects/types.ts and import from enchantment-types.ts.

Anexim commented on issue Anexim/Mana-Loop#43 2026-05-18 19:54:38 +02:00
fix: lifeEssenceDrop references banned life mana type

Starting work on #43. Will rename lifeEssenceDrop to remove banned 'life' reference.

Anexim commented on issue Anexim/Mana-Loop#42 2026-05-18 19:54:38 +02:00
fix: pactMaster achievement requires 12 pacts but only 9 guardians exist

Starting work on #42. Will fix pactMaster achievement to require 9 pacts instead of 12 to match the actual number of guardians.