Parts of body for hits, for use with set_user_hitzones().
const HITZONE_GENERIC = (1 << HIT_GENERIC);
const HITZONE_HEAD = (1 << HIT_HEAD);
const HITZONE_CHEST = (1 << HIT_CHEST);
const HITZONE_STOMACH = (1 << HIT_STOMACH);
const HITZONE_LEFTARM = (1 << HIT_LEFTARM);
const HITZONE_RIGHTARM = (1 << HIT_RIGHTARM);
const HITZONE_LEFTLEG = (1 << HIT_LEFTLEG);
const HITZONE_RIGHTLEG = (1 << HIT_RIGHTLEG);
const HITZONES_DEFAULT = HITZONE_GENERIC | HITZONE_HEAD | HITZONE_CHEST | HITZONE_STOMACH |
HITZONE_LEFTARM | HITZONE_RIGHTARM | HITZONE_LEFTLEG | HITZONE_RIGHTLEG;