public MotherGorilla() : base(AIType.AI_Melee, FightMode.Aggressor, 10, 1, 0.1, 0.3)
		{
			Name = "a silverback";
			Body = 0x1D;
			Hue = 1150;
			BaseSoundID = 0x9E;
			

			SetStr( 153, 195 );
			SetDex( 136, 155 );
			SetInt( 136, 160 );

			SetHits( 138, 151 );
			SetMana( 0 );

			SetDamage( 12, 20 );

			SetDamageType( ResistanceType.Physical, 100 );

			SetResistance( ResistanceType.Physical, 40, 45 );
			SetResistance( ResistanceType.Fire, 35, 45 );
			SetResistance( ResistanceType.Cold, 46, 56 );

			SetSkill( SkillName.MagicResist, 55.1, 70.0 );
			SetSkill( SkillName.Tactics, 58.3, 68.0 );
			SetSkill( SkillName.Wrestling, 68.3, 78.0 );

			Fame = 900;
			Karma = 0;

			VirtualArmor = 20;

			Tamable = false;

			m_pups = new ArrayList();
			Timer m_timer = new GorillaFamilyTimer( this );
			m_timer.Start();
		}
		public MotherGorilla(Serial serial) : base(serial)
		{
			m_pups = new ArrayList();
			Timer m_timer = new GorillaFamilyTimer( this );
			m_timer.Start();
		}