Mahklebs "spellpower"?


Ask fellow adventurers how to stay alive in the deep, dark, dangerous dungeon below, or share your own accumulated wisdom.

User avatar

Vestibule Violator

Posts: 1591

Joined: Saturday, 3rd August 2013, 18:59

Post Saturday, 8th February 2014, 20:18

Mahklebs "spellpower"?

I am assuming its either piety or invocations skill, but how does the game determine how much damage your minor and greater destructive does? Also, what is the formula for demon hostility?

I ask because I am trying to beat the whole game using batform, no spells, potions, and barely any melee. If their is any advice you guys could give one that, that would be appreciated as well. :)
To all new players: Ignore all strategy guides posted on the wiki, ask questions in the Advice forum, players with lots of posts normally have the best advice.

crawl.akrasiac.org:8080 <- take this link to play online or spectate.

Halls Hopper

Posts: 79

Joined: Sunday, 24th November 2013, 04:12

Post Saturday, 8th February 2014, 20:46

Re: Mahklebs "spellpower"?

According to the wiki (yes, yes, i know) the chance of hostility is 4/(20+3*Invocations). Not sure about the conjurations.

Spider Stomper

Posts: 224

Joined: Monday, 19th November 2012, 04:56

Post Sunday, 9th February 2014, 04:41

Re: Mahklebs "spellpower"?

Makhleb's Destruction abilities also scale with Invocations.

From ability.cc:

  Code:
case ABIL_MAKHLEB_MINOR_DESTRUCTION:
        if (!spell_direction(spd, beam))
            return false;
 
        power = you.skill(SK_INVOCATIONS, 1)
                + random2(1 + you.skill(SK_INVOCATIONS, 1))
                + random2(1 + you.skill(SK_INVOCATIONS, 1));


  Code:
case ABIL_MAKHLEB_MAJOR_DESTRUCTION:
        if (!spell_direction(spd, beam))
            return false;
 
        power = you.skill(SK_INVOCATIONS, 3)
                + random2(1 + you.skill(SK_INVOCATIONS, 1))
                + random2(1 + you.skill(SK_INVOCATIONS, 1));

Return to Dungeon Crawling Advice

Who is online

Users browsing this forum: No registered users and 22 guests

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