Eviternity 2 changed some monsters.
This commit is contained in:
parent
816d9b6b25
commit
d3ce281abb
10 changed files with 148 additions and 93 deletions
|
|
@ -135,11 +135,13 @@ extend Class SWWMHandler
|
|||
a.DamageMobj(e.Thing,e.Thing,a.Health,'EndMii',DMG_FORCED|DMG_THRUSTLESS);
|
||||
}
|
||||
}
|
||||
// Eviternatus instakill
|
||||
if ( ((e.Thing.GetClassName() == "EviternatusAnta") || (e.Thing.GetClassName() == "EviternatusBete")) && (e.Thing.DamageType == 'Ynykron') )
|
||||
// Origin instakill
|
||||
if ( ((e.Thing.GetClassName() == "The_Origin_Phase_1") || (e.Thing.GetClassName() == "The_Origin_Phase_2")
|
||||
|| (e.Thing.GetClassName() == "The_Absolute_Origin_Phase_1") || (e.Thing.GetClassName() == "The_Absolute_Origin_Phase_2"))
|
||||
&& (e.Thing.DamageType == 'Ynykron') )
|
||||
{
|
||||
// this will trigger special dialogue on the next phase
|
||||
eviternatus_zapped = true;
|
||||
origin_zapped = true;
|
||||
}
|
||||
if ( swwm_partytime )
|
||||
{
|
||||
|
|
@ -293,7 +295,7 @@ extend Class SWWMHandler
|
|||
e.Thing.SetTag("$FN_DUKE");
|
||||
else if ( e.Thing.GetClassName() == "AstralBabycaco" )
|
||||
e.Thing.SetTag("$FN_ASTRALBABY");
|
||||
else if ( e.Thing.GetClassName() == "NAC" )
|
||||
else if ( e.Thing.GetClassName() == "NightmareCacodemon" )
|
||||
e.Thing.SetTag("$FN_NAC");
|
||||
else if ( e.Thing.GetClassName() == "AstralMancubus" )
|
||||
e.Thing.SetTag("$FN_ASTRALFATSO");
|
||||
|
|
@ -302,10 +304,17 @@ extend Class SWWMHandler
|
|||
|| (e.Thing.GetClassName() == "NecromenaceC")
|
||||
|| (e.Thing.GetClassName() == "NecromenaceD") )
|
||||
e.Thing.SetTag("$FN_NECROMENACE");
|
||||
else if ( (e.Thing.GetClassName() == "EviternatusAnta")
|
||||
|| (e.Thing.GetClassName() == "EviternatusBete")
|
||||
|| (e.Thing.GetClassName() == "EviternatusCeph") )
|
||||
e.Thing.SetTag("$FN_EVITERNATUS");
|
||||
else if ( (e.Thing.GetClassName() == "The_Origin_Phase_1")
|
||||
|| (e.Thing.GetClassName() == "The_Origin_Phase_2")
|
||||
|| (e.Thing.GetClassName() == "The_Origin_Phase_3")
|
||||
|| (e.Thing.GetClassName() == "The_Absolute_Origin_Phase_1")
|
||||
|| (e.Thing.GetClassName() == "The_Absolute_Origin_Phase_2")
|
||||
|| (e.Thing.GetClassName() == "The_Absolute_Origin_Phase_3") )
|
||||
e.Thing.SetTag("$FN_ORIGIN");
|
||||
else if ( e.Thing.GetClassName() == "SpectralAstralCacodemon" )
|
||||
e.Thing.SetTag("$FN_SAC");
|
||||
else if ( e.Thing.GetClassName() == "GrandDukeofHell" )
|
||||
e.Thing.SetTag("$FN_GDUKE");
|
||||
// doom vacation stuff
|
||||
else if ( indoomvacation )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue