00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 | //============================================================================= // Spatial Fear // Class: SFBabyMit2 // Description: The baby version of the SFMite. Fears it's creator // // Created by: Markus Nuebel //============================================================================= class SFBabyMite2 expands SFBabyMite; // Behaviour towards other creates. Modified for the mites purposes function eAttitude AttitudeToCreature(Pawn Other) { if(Other == Owner) return ATTITUDE_FEAR; else Super.AttitudeToCreature(Other); } defaultproperties { fMeleeDamage=5.000000 bFightOtherCreatures=False TimeBetweenAttacks=0.600000 AirSpeed=320.000000 AccelRate=200.000000 } |