diff --git a/game-server/app/services/pvpService.ts b/game-server/app/services/pvpService.ts index d4adedece..b3058a390 100644 --- a/game-server/app/services/pvpService.ts +++ b/game-server/app/services/pvpService.ts @@ -508,7 +508,7 @@ export function getPlayerAttribute(ceAttr: CeAttr, globalCeAttr: CeAttrRole) { for(let attrName in newAttribute) { let { base, ratioUp, fixUp, equipUp } = ceAttr[attrName]; let { ratioUp: ratioUp2, fixUp: fixUp2 } = globalCeAttr[attrName]; - let result = base * ( 1 + ratioUp + ratioUp2) + fixUp + fixUp2 + equipUp; + let result = base * ( 100 + ratioUp + ratioUp2) + (fixUp + fixUp2 + equipUp) *100; newAttribute[attrName] += reduceCe(result); } newAttribute['speed'] = 0;