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

47 lines
1.7 KiB
Ucode
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class WMPawn_ZedFleshpoundKing extends KFPawn_ZedFleshpoundKing;
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_fleshpound_2.Play_FP_Charge'
MinSpawnSquadSizeType=EST_Large
bLargeZed=True
DoshValue=300
XPValues(0)=150
XPValues(1)=150
XPValues(2)=150
XPValues(3)=150
Name="Default__WMPawn_ZedFleshpoundKing"
}