KF2-CustomZeds/CustomZeds/Classes/WMPawn_ZedPatriarch.uc

47 lines
816 B
Ucode
Raw Normal View History

2022-05-16 13:35:37 +00:00
class WMPawn_ZedPatriarch extends KFPawn_ZedPatriarch;
var AkEvent EntranceSound;
simulated event PostBeginPlay()
{
// add entrance sound
SoundGroupArch.EntranceSound = default.EntranceSound;
Super.PostBeginPlay();
}
/** Summon some children */
function SummonChildren()
{
}
/** Play music for this boss (overridden for each boss) */
function PlayBossMusic()
{
}
static simulated event bool IsABoss()
{
return False;
}
function bool CanBeGrabbed(KFPawn GrabbingPawn, optional bool bIgnoreFalling, optional bool bAllowSameTeamGrab)
{
return False;
}
defaultproperties
{
EntranceSound=AkEvent'WW_ZED_Patriarch.Play_Pat_Intro_Roar'
MinSpawnSquadSizeType=EST_Large
bLargeZed=True
DoshValue=500
XPValues(0)=250
XPValues(1)=250
XPValues(2)=250
XPValues(3)=250
Name="Default__WMPawn_ZedPatriarch"
}