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

19 lines
297 B
Ucode

class WMPawn_ZedCrawler_Medium extends WMPawn_ZedCrawler_NoElite;
static function string GetLocalizedName()
{
return "Medium Crawler";
}
simulated function PostBeginPlay()
{
IntendedBodyScale = 1.15f;
super.PostBeginPlay();
}
defaultproperties
{
Name="Default__WMPawn_ZedCrawler_Medium"
}