fix: update Steady Hand prestige upgrade with real enchantment power effect
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m23s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m23s
This commit is contained in:
@@ -95,9 +95,12 @@ export const useGameStore = create<GameCoordinatorStore>()(
|
||||
const addLog = (msg: string) => writes.logs.push(msg);
|
||||
|
||||
// Compute equipment and discipline effects
|
||||
const steadyHandLevel = ctx.prestige.prestigeUpgrades.steadyHand || 0;
|
||||
const enchantmentPowerMultiplier = 1 + steadyHandLevel * 0.15;
|
||||
const equipmentEffects = computeEquipmentEffects(
|
||||
ctx.crafting.equipmentInstances || {},
|
||||
ctx.crafting.equippedInstances || {}
|
||||
ctx.crafting.equippedInstances || {},
|
||||
enchantmentPowerMultiplier,
|
||||
);
|
||||
const disciplineEffects = computeDisciplineEffects();
|
||||
const allSpecials = new Set<string>([
|
||||
|
||||
Reference in New Issue
Block a user