• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Making a Mummy Template (Spoilers for RotRL)

hangarflying

Active member
I'm in the process of putting RotRL's Black Monk into HL. It is a template that goes onto a human that has 11 levels of Monk. I need to find a way to make HL treat the class HD as racial HD so I can have it calculate the DCs correctly for mummy rot, it's breath weapon, etc.

Second, the template also allows the creature to cast spells as a spell-like ability as if it were a druid with the same character level. I see where I can add SLA spells, but I'm wondering if there is a way to have the spells display much like they do with other classes (mostly, I'd like the DC of the spell to be displayed like they do for spell casters).

Thanks!
 
I gather you are talking about the Dread Mummy template. I recently did this one for the community data set and I had to calculate the DC via. a script.

For example, for the ability Breath of Death, I set the Standard DC field to - None - and used the following script:

Code:
Final Phase/10000

field[abDC].value = 10 + round(.5 * hero.tagcount[Hero.HitDice], 0,-1) + hero.child[aCHA].field[aModBonus].value

For mummy rot, since I used the special that was already coded for the mummy. I used the following script in the main template:

Code:
Final Phase/10000

perform hero.child[raMumMummR].delete[StandardDC.?]

hero.child[raMumMummR].field[abDC].value = 10 + round(.5 * hero.tagcount[Hero.HitDice], 0,-1) + hero.child[aCHA].field[aModBonus].value
 
Back
Top