Housing: Stairs should be sectionable http://www.uodemise.com/forum/showthread.php?t=120218 Mobiles: Dull Copper Elementals should drop chests http://www.uodemise.com/forum/showthread.php?t=145394 Misc: Snowpiles should not be usable when mounted http://www.uodemise.com/forum/showthread.php?t=145522 Explosion potion timer should not be stopped by picking them up/scavenging http://www.uodemise.com/forum/showthread.php?t=143523 1 day cool-down timer on soulstones is removed http://www.uodemise.com/forum/showthread.php?t=138760
76 lines
No EOL
1.8 KiB
C#
76 lines
No EOL
1.8 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName( "an ore elemental corpse" )]
|
|
public class DullCopperElemental : BaseCreature
|
|
{
|
|
[Constructable]
|
|
public DullCopperElemental() : this( 2 )
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public DullCopperElemental( int oreAmount ) : base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
|
|
{
|
|
Name = "a dull copper elemental";
|
|
Body = 110;
|
|
BaseSoundID = 268;
|
|
|
|
SetStr( 226, 255 );
|
|
SetDex( 126, 145 );
|
|
SetInt( 71, 92 );
|
|
|
|
SetHits( 136, 153 );
|
|
|
|
SetDamage( 9, 16 );
|
|
|
|
SetDamageType( ResistanceType.Physical, 100 );
|
|
|
|
SetResistance( ResistanceType.Physical, 30, 40 );
|
|
SetResistance( ResistanceType.Fire, 30, 40 );
|
|
SetResistance( ResistanceType.Cold, 10, 20 );
|
|
SetResistance( ResistanceType.Poison, 20, 30 );
|
|
SetResistance( ResistanceType.Energy, 20, 30 );
|
|
|
|
SetSkill( SkillName.MagicResist, 50.1, 95.0 );
|
|
SetSkill( SkillName.Tactics, 60.1, 100.0 );
|
|
SetSkill( SkillName.Wrestling, 60.1, 100.0 );
|
|
|
|
Fame = 3500;
|
|
Karma = -3500;
|
|
|
|
VirtualArmor = 20;
|
|
|
|
PackItem( new DullCopperOre( oreAmount ) );
|
|
}
|
|
|
|
public override void GenerateLoot()
|
|
{
|
|
AddLoot( LootPack.Average );
|
|
AddLoot( LootPack.Gems, 2 );
|
|
}
|
|
|
|
public override bool AutoDispel{ get{ return true; } }
|
|
public override bool BleedImmune{ get{ return true; } }
|
|
public override int TreasureMapLevel{ get{ return 1; } }
|
|
|
|
public DullCopperElemental( 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();
|
|
}
|
|
}
|
|
} |