KF2-CustomZeds/CustomZeds/Classes/WMPawn_ZedMatriarch.uc
2022-05-16 16:35:37 +03:00

47 lines
824 B
Ucode

class WMPawn_ZedMatriarch extends KFPawn_ZedMatriarch;
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_Matriarch.Play_Matriarch_Jump_Land_01'
MinSpawnSquadSizeType=EST_Large
bLargeZed=True
DoshValue=500
XPValues(0)=250
XPValues(1)=250
XPValues(2)=250
XPValues(3)=250
Name="Default__WMPawn_ZedMatriarch"
}