I've been thinking about revising some of the old town uniques in Frog, the references to turn-of-the-millennium Japanese politics are getting a bit dated. Nick the Butcher would fit in well, I think. You could supply your own lines and description
name:Dark elves room:1 alloc:1:30 obj-rarity:0 mon-base:humanoid flags-req:HURT_LIGHT
/* One in __ chance of missing turn if stunned, always miss if held
* or commanded */
if (mon->m_timed[MON_TMD_STUN]) {
return randint0(STUN_MISS_CHANCE) == 1;
} else if (mon->m_timed[MON_TMD_HOLD] || mon->m_timed[MON_TMD_COMMAND]) {
return true;
} else {
return false;
}
/* One in __ chance of missing turn if stunned, always miss if held
* or commanded */
if (mon->m_timed[MON_TMD_STUN]) {
return randint0(STUN_MISS_CHANCE) == 1;
} else if (mon->m_timed[MON_TMD_HOLD] || mon->m_timed[MON_TMD_COMMAND]) {
return true;
} else {
return false;
}
Comment