This time we're trying blackguard. Unlike the paladin, this one is not human, but superhuman. Will the blackguard fare better than his noble counterpart?
Comp 229
Collapse
X
-
Impaired recovery is what, 50%?Please like my indie game company on Facebook! https://www.facebook.com/RatherFunGamesComment
-
Some interesting things from class.txt:
Two books: "Dark Rituals" and "Deadly Powers"
You don't get extra blows for having a weapon under 10 lbs
You can have up to 40 lbs of armor before losing SPsPlease like my indie game company on Facebook! https://www.facebook.com/RatherFunGamesComment
-
Does the quality of your shield affect your shield bashes?Please like my indie game company on Facebook! https://www.facebook.com/RatherFunGamesComment
-
Quality and weight affect damage dice?Please like my indie game company on Facebook! https://www.facebook.com/RatherFunGamesComment
-
Code:/* Bashing chance depends on melee skill, DEX, and a level bonus. */ int bash_chance = p->state.skills[SKILL_TO_HIT_MELEE] / 8 + adj_dex_th[p->state.stat_ind[STAT_DEX]] / 2;
Code:/* Calculate attack quality, a mix of momentum and accuracy. */ bash_quality = p->state.skills[SKILL_TO_HIT_MELEE] / 4 + p->wt / 8 + p->upkeep->total_weight / 80 + shield->weight / 2;
Comment
-
Hmm, what are all those weights? Does the (I had assumed completely trivial) weight of the character affect bash quality? Or encumbrance?Please like my indie game company on Facebook! https://www.facebook.com/RatherFunGamesComment
-
Comment
-
if there are no winners, what is the metric by which we determine a winner?
im going to have a go at this sometime this month, but not confident i will actually have time to complete a dive ^^Comment
-
Comment
-
What about max depth? Surely someone who made it to DL100 beat someone who didn't...?Please like my indie game company on Facebook! https://www.facebook.com/RatherFunGamesComment
Comment