KF2-CustomZeds/CustomZeds/Classes/WMPawn_ZedCrawler_Medium.uc

19 lines
355 B
Ucode
Raw Permalink Normal View History

2022-05-16 13:35:37 +00:00
class WMPawn_ZedCrawler_Medium extends WMPawn_ZedCrawler_NoElite;
static function string GetLocalizedName()
{
2024-03-08 14:06:36 +00:00
return class'WMPawn_ZedConstants'.default.MediumString @ super.GetLocalizedName();
2022-05-16 13:35:37 +00:00
}
simulated function PostBeginPlay()
{
IntendedBodyScale = 1.15f;
super.PostBeginPlay();
}
defaultproperties
{
Name="Default__WMPawn_ZedCrawler_Medium"
}