vampires now shapeshift [trunk only]
- can shift into fog clouds, vampire bats, and vampire lords into wolves - after being "killed" in shifted form, they transform back rather than get destroyed, and you must take them on in vampire form to defeat them - can deliberately shift into fog clouds to pass under closed doors
This commit is contained in:
@@ -890,7 +890,7 @@ hitmu(mtmp, mattk)
|
||||
|
||||
/* First determine the base damage done */
|
||||
dmg = d((int)mattk->damn, (int)mattk->damd);
|
||||
if(is_undead(mdat) && midnight())
|
||||
if((is_undead(mdat) || is_vampshifter(mtmp)) && midnight())
|
||||
dmg += d((int)mattk->damn, (int)mattk->damd); /* extra damage */
|
||||
|
||||
/* Next a cancellation factor */
|
||||
@@ -1550,7 +1550,8 @@ dopois:
|
||||
if (Half_physical_damage
|
||||
/* Mitre of Holiness */
|
||||
|| (Role_if(PM_PRIEST) && uarmh && is_quest_artifact(uarmh) &&
|
||||
(is_undead(mtmp->data) || is_demon(mtmp->data))))
|
||||
(is_undead(mtmp->data) ||
|
||||
is_demon(mtmp->data) || is_vampshifter(mtmp))))
|
||||
dmg = (dmg+1) / 2;
|
||||
|
||||
if (permdmg) { /* Death's life force drain */
|
||||
|
||||
Reference in New Issue
Block a user