#W# Initial Commit: Avatars Conquest

This commit is contained in:
WarrentyExpired 2026-07-04 10:35:30 -04:00
commit 5df497787a
7510 changed files with 416048 additions and 0 deletions

View file

@ -0,0 +1,60 @@
using System;
using System.Collections;
using Server.Items;
using Server.Targeting;
namespace Server.Mobiles
{
[CorpseName( "a gargoyle corpse" )]
public class GargoyleStone : BaseCreature
{
[Constructable]
public GargoyleStone() : base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
{
Name = NameList.RandomName( "gargoyle" );
HiddenTitle = "the gargoyle";
Body = 309;
BaseSoundID = 0x174;
SetStr( 369, 413 );
SetDex( 114, 143 );
SetInt( 122, 158 );
SetHits( 222, 248 );
SetDamage( 17, 26 );
SetSkill( SkillName.MagicResist, 105.1, 120.0 );
SetSkill( SkillName.Tactics, 100.1, 120.0 );
SetSkill( SkillName.HandToHand, 80.1, 120.0 );
Fame = 7000;
Karma = -7000;
VirtualArmor = 60;
}
public override void GenerateLoot()
{
AddLoot( LootPack.Rich, 2 );
AddLoot( LootPack.Gems, 3 );
AddLoot( LootPack.MedPotions );
}
public GargoyleStone( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 );
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}