Hexes vs 1 hd Monsters


Although the central place for design discussion is ##crawl-dev on freenode, some may find it helpful to discuss requests and suggestions here first.

Temple Termagant

Posts: 10

Joined: Tuesday, 8th September 2015, 04:55

Post Tuesday, 8th September 2015, 19:24

Hexes vs 1 hd Monsters

actor.cc contains the following code in actor::check_res_magic
  Code:
    // Evil, evil hack to make weak one hd monsters easier for first level
    // characters who have resistable 1st level spells. Six is a very special
    // value because mrs = hd * 2 * 3 for most monsters, and the weak, low
    // level monsters have been adjusted so that the "3" is typically a 1.
    // There are some notable one hd monsters that shouldn't fall under this,
    // so we do < 6, instead of <= 6...  or checking mons->hit_dice. The
    // goal here is to make the first level easier for these classes and give
    // them a better shot at getting to level two or three and spells that can
    // help them out (or building a level or two of their base skill so they
    // aren't resisted as often). - bwr
    if (is_monster() && mrs < 6 && coinflip())
        return -1;


I can confirm that this affects the hit chance of Hexes; with 0 power and a reported 50% chance to defeat MR versus a rat, I had 70 successes out of 80 attempts of casting Corona during wizard mode testing. Is this behaviour desired? If it is, then the code to display the estimated success chance for hexes should be updated to include this factor.

For this message the author gerbias has received thanks: 4
Arrhythmia, duvessa, neil, rchandra
User avatar

Dungeon Master

Posts: 502

Joined: Wednesday, 7th March 2012, 13:25

Location: Lexington, KY, US

Post Tuesday, 8th September 2015, 20:12

Re: Hexes vs 1 hd Monsters

Fixed, thanks!

In the future, bug reports like this should go to Mantis so they'll be less likely to be missed. If you're not sure whether it's a bug report, go ahead and Mantis it, and the worst that happens is we close it as "no change required".

For this message the author neil has received thanks:
gerbias

Temple Termagant

Posts: 10

Joined: Tuesday, 8th September 2015, 04:55

Post Tuesday, 8th September 2015, 23:56

Re: Hexes vs 1 hd Monsters

Alright, I will do that in the future. Thanks for the prompt reply!

Return to Game Design Discussion

Who is online

Users browsing this forum: No registered users and 127 guests

Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by ST Software for PTF.