[5일]

* 몬스터가 문을 열 때 부서질 확률 33%->20%로 감소


* 시야 밖의 몬스터는 문을 열 때 문을 부수지 않음


* 콜오브카오스 조정

 - 버서커가 낮은 확률로 터지는 나쁜 효과로 이동.

 - 나쁜효과 뒤틀림 제거

 - 좋은 효과로 어질리티 추가


* 몬스터 데몬스폰 간단화

warmonger 클래스 => monstrous 베이스 (추가 hp, 추가 데미지, 2개의 신체 추가타)
blood saint 클래스 => infernal 베이스 (화저 3단계, +3 ac, 화염 추가피해)
black sun 클래스 => gelid 베이스 (냉저 3단계, +6 ac, 투명감지)
corrupter 클래스 => torturous 베이스 (음저 3단계, +3 ev, 1개의 신체 추가타)
또한 상위 데몬스폰들은 이제 더 높은 의지 수치를 가짐

(밑에 설명 잘 해놨길래 긁어옴)


* 몬스터 전용 버프 아이스메일 삭제


* 몬스터 데몬스폰 착용무기 리스트 조정


* 데몬스폰 커럽터가 임시 돌연변이 대신 엔트로피위브 주문을 사용


* 신성도 evill에 포함되는 항목(언데드, 악마, 사악)에서 '사악'을 단순화.

 - 더 정확히 말하면, 기존에는 사악한 존재를 하드코딩했었는데 이젠 다음과 같은 조건을 만족시키면 자동으로 사악한 존재로 취급함.

bool monster::evil() const
{
    // Assume that all unknown gods are evil.
    if (is_priest() && (is_evil_god(god) || is_unknown_god(god)))
        return true;
    if (has_attack_flavour(AF_DRAIN) || has_attack_flavour(AF_VAMPIRIC))
        return true;
    if (testbits(flags, MF_SPECTRALISED))
        return true;
    for (auto slot : spells)
        if (is_evil_spell(slot.spell))
            return true;
    return actor::evil();
}



[6일]

* 포탈 미믹 삭제

 - 포탈은 즐거운 도전입니다. 그러나 포탈 미믹은 플레이어들에게 극심한 좌절감을 주었습니다. 미믹은 다른 형태로 다시 구현할 생각입니다.


* 엘리빌론 타인 치료가 적을 중립화할 때 경험치 100%를 획득


* 광폭화한 몬스터는 문을 열 때 33% 확률로 문을 부숨.


 * Add a demonspawn cloak slot mut: weakening stinger
The weakening stinger mutation gives demonspawn a tail and a stinger, granting a tail-slap aux attack. At level 3, it becomes large and sharp enough to block the cloak slot, and begins to apply the weakness status on hit (to all except undead and nonliving monsters).


 * Add a demonspawn gloves slot mut: demonic touch
The demonic touch mutation grants an offhand touch attack which deals a small amount of irresistible damage (not increased by skills/stats, and not reduced by AC). At level 3 it blocks the gloves slot and also applies the vulnerability status effect for a short duration.


 * Remove talons as a demonspawn mutation
 - Unlike the other body slots with multiple options (horns/antennae, and now claws/demonic touch), there's no noticeable mechanical distinction between hooves and talons, and hooves are much more demonic.