using System;
using Server.Mobiles;
namespace Server.Mobiles
{
[CorpseName( "a Lesser Hiryu corpse" )]
public class LesserHiryu : BaseMount
{
[Constructable]
public LesserHiryu() : this( "a Lesser Hiryu" )
{
}
public override bool SubdueBeforeTame{ get{ return true; } } // Must be beaten into submission
[Constructable]
public LesserHiryu( string name ) : base( name, 243, 0x3E94, AIType.AI_Animal, FightMode.Agressor, 10, 1, 0.2, 0.4 )
{
Hue = Utility.RandomBirdHue() | 0x8000;
BaseSoundID = 0x3F3;
SetStr( 300, 400 );
SetDex( 170, 270 );
SetInt( 300, 325 );
SetHits( 300, 400 );
SetMana( 60, 65 );
SetStam( 170, 270 );
SetDamage( 10, 16 );
SetDamageType( ResistanceType.Physical, 100 );
SetResistance( ResistanceType.Physical, 45, 70 );
SetResistance( ResistanceType.Fire, 60, 80 );
SetResistance( ResistanceType.Cold, 5, 15 );
SetResistance( ResistanceType.Poison, 30, 40 );
SetResistance( ResistanceType.Energy, 30, 40 );
SetSkill( SkillName.MagicResist, 85.0, 100.0 );
SetSkill( SkillName.Tactics, 100.0, 120.0 );
SetSkill( SkillName.Wrestling, 100.0, 120.0 );
SetSkill( SkillName.Anatomy, 75.0, 80.0 );
Fame = 300;
Karma = 0;
Tamable = true;
ControlSlots = 3;
MinTameSkill = 98.7;
}
public override double GetControlChance( Mobile m )
{
return 1.0;
}
public override int Meat{ get{ return 16; } }
public override int Hides{ get{ return 60; } }
public override HideType HideType{ get{ return HideType.Spined; } }
public override FoodType FavoriteFood{ get{ return FoodType.FruitsAndVegies | FoodType.GrainsAndHay; } }
public LesserHiryu( Serial serial ) : base( serial )
{
}
public override void GenerateLoot()
{
AddLoot( LootPack.Average );
AddLoot( LootPack.MedScrolls, 2 );
AddLoot( LootPack.Potions );
}
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();
}
}
}
Total votes: 0
Ultima Online 13 saat önce
Ultima Online 6 gün önce
Counter-Strike 1 hafta önce
RunUo Scripting 2 hafta önce
Sunucular 3 hafta önce
Sunucular 3 hafta önce
Ultima Online 1 ay önce
Sunucular 1 ay önce
Sunucular 1 ay önce
Ultima Online 1 ay önce
Sunucular 2 ay önce
Ultima Online 2 ay önce
2024-10-31 22:47
2024-10-14 17:45
2024-09-26 14:21
2024-07-08 22:50
2024-07-08 22:34
2024-06-19 22:05
2024-06-01 02:19
2024-05-31 21:17
Yorumlar (0)