ModernUO/Scripts/Mobiles/Animals/Mounts/ScaledSwampDragon.cs
eos ece7ad37ac - Corrected the Sanctuary dungeon region bounds in Trammel.
- Added the [Message command to send players a page reply style message.
- Added a more robust version of the [DesignInsert command, supporting the [Area modifier and conditionals, and only allowing insertion of Static items unless otherwise specified (using [DesignInsert true). Items can also be inserted into multiple house plots at the same time.
- Added the ObjectTypes check to the [Serial command implementor, fixing potential server crashes on invalid casts.
- Grammar fixes for page gump replies.
- Removed the runebook use delay for Core.SA.
- Ridgeback, SavageRidgeback and ScaledSwampDragon now override bonding requirements.
- Added a PlayerMobile type check to BaseVendor.OnDragDrop to prevent invalid casts.
- Players can now return filled bulk orders without having any points in the bulk order crafting skill.
- Added ArcaneFocus constructor overloads to make it addable in game.
2012-05-27 02:21:32 +00:00

78 lines
No EOL
1.8 KiB
C#

using System;
using Server.Mobiles;
namespace Server.Mobiles
{
[CorpseName( "a swamp dragon corpse" )]
public class ScaledSwampDragon : BaseMount
{
[Constructable]
public ScaledSwampDragon() : this( "a swamp dragon" )
{
}
[Constructable]
public ScaledSwampDragon( string name ) : base( name, 0x31F, 0x3EBE, AIType.AI_Melee, FightMode.Aggressor, 10, 1, 0.2, 0.4 )
{
SetStr( 201, 300 );
SetDex( 66, 85 );
SetInt( 61, 100 );
SetHits( 121, 180 );
SetDamage( 3, 4 );
SetDamageType( ResistanceType.Physical, 75 );
SetDamageType( ResistanceType.Poison, 25 );
SetResistance( ResistanceType.Physical, 35, 40 );
SetResistance( ResistanceType.Fire, 20, 30 );
SetResistance( ResistanceType.Cold, 20, 40 );
SetResistance( ResistanceType.Poison, 20, 30 );
SetResistance( ResistanceType.Energy, 30, 40 );
SetSkill( SkillName.Anatomy, 45.1, 55.0 );
SetSkill( SkillName.MagicResist, 45.1, 55.0 );
SetSkill( SkillName.Tactics, 45.1, 55.0 );
SetSkill( SkillName.Wrestling, 45.1, 55.0 );
Fame = 2000;
Karma = -2000;
Tamable = true;
ControlSlots = 1;
MinTameSkill = 93.9;
}
public override bool OverrideBondingReqs()
{
return true;
}
public override double GetControlChance( Mobile m, bool useBaseSkill )
{
return 1.0;
}
public override bool AutoDispel{ get{ return !Controlled; } }
public override FoodType FavoriteFood{ get{ return FoodType.Meat; } }
public ScaledSwampDragon( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}