Untitled diff

创建于 差异永不过期
0 删除
12
12 添加
24
uint32_t getBaseMagicLevel() const {
uint32_t getBaseMagicLevel() const {
return magLevel;
return magLevel;
}
}
uint8_t getMagicLevelPercent() const {
uint8_t getMagicLevelPercent() const {
return magLevelPercent;
return magLevelPercent;
}
}

// custom edit : passive damage bonus
uint16_t getPassiveDamageBonus() const {
return passiveDamageBonus;
}

void setPassiveDamageBonus(uint16_t newValue)
{
passiveDamageBonus = newValue;
}
// end custom edit

uint8_t getSoul() const {
uint8_t getSoul() const {
return soul;
return soul;
}
}
bool isAccessPlayer() const {
bool isAccessPlayer() const {
return group->access;
return group->access;
}
}