Dark Age of Camelot Wiki
Advertisement

The Formula[]

  • [x] = indicates a round down on x. [1.99] = 1
  • Formula should match +/-2 of the value ingame on all levels and classes

Constitution Base[]

This is just the sum of all base constitution

RACE = con from your race
STARTPOINTS = the points from the 30 starting points your spend into con
LEVELUP = the con you get from the level up
RA = the con from the realm ability
VAMPIER = the con you get from vampier level up
SICKNESS = missing con points from sickness
BASE = RACE + STARTPOINTS + LEVELUP + RA + VAMPIER - SICKNESS

IF (BASE < 0) {
    BASE = 0
}

Constitution Top[]

This is just the sum of all item and buff constitution

ITEM = con from items including mythical
BUFF = con base and spec buffs
TOP = ITEM + BUFF

Debuff[]

This is the sum of all debuffs to your constitution

DEBUFF = the value including debuff bonus of the con debuffs or 0
IF (DEBUFF > TOP) {
    BASE -= [(DEBUFF - TOP) / 2]
    TOP = 0
    
    IF (BASE < 10) {
        BASE = 10
    }
} ELSE {
    TOP -= DEBUFF
}

Constitution[]

This is the sum of BASE and TOP constitution

IF (BASE > 50) {
    BASE = 150 + [BASE / 2] * 2
} ELSE {
    BASE = 100 + BASE * 2
}

CON = BASE + TOP

Hitpoints[]

This is the result for your hitpoints

LEVEL = your current level
TABLE = your hitpoint table (see below)
CL = your champion level
TANK = your tank bonus. 1 per level from 41 to 50 on full tanks or 0
HPITEM = your item based + hitpoints
HPRA = your realm ability + hitpoints
HITPOINTS = [[20 + [LEVEL * TABLE * CON / 250] * (50 + CL) / 50]
          * (100 + TANK) / 100] + HPITEM + HPRA

Hitpoint Table[]

Value: 14

Value: 18

Value: 19

Value: 22

Notes[]

  • can't go below 0 constitution
  • if you have lost all your constitution by rezz sickness. you can log out of the game add or remove points from constitution starting points and will remain at 0 constitution until you visit the healer.
  • if you lost all your constitution, it's cheaper to log out, remove all starting points from constitution and then go to the healer.
  • if you debuff someone to below 10 BASE constitution he will get exactly 10 base constitution. so in this case the debuff may actually be a "buff".
  • going below 50 BASE constitution costs you the double amount of hitpoints. for example a Lurikeen caster with only 40 constitution needs 20 con from items to reach someone with 50 BASE constitution.
  • below 50 BASE constitution every point is counted. going above 50 base con only even numbers are counted (61 constitution gives you the same hitpoints as 60 constitution does)
  • on TOP constitution every point, even and uneven is counted. (61 constitution is more hitpoints then 60 constitution)
  • debuffs remove TOP constitution first. one point per debuff value.
  • if debuffs are stronger then the TOP consitution value then the BASE consitution is lowered to.
  • on BASE constitution over 50 debuffs only half as effective as they where on TOP constitution
  • but if you get debuffed below 50 BASE constitution the debuffs get back its full value. (so the talk that they are half effective here is NOT true)
Advertisement