Anasayfa
UO Sunucular
Forumlar
Profilim
UO-Developer.COM
using System;
using Server.Mobiles;

namespace Server.Mobiles
{
[CorpseName( "a Newbie llama corpse" )]
public class NewbieLama : BaseMount
{
[Constructable]
public NewbieLama() : this( "a Newbie llama" )
{
Hue = 1222;
}

[Constructable]
public NewbieLama( string name ) : base( name, 0xDC, 0x3EA6, AIType.AI_Animal, FightMode.Agressor, 10, 1, 0.2, 0.4 )
{
BaseSoundID = 0x3F3;

SetStr( 50, 70 );
SetDex( 40, 50 );
SetInt( 30, 40 );

SetHits( 25, 50 );
SetMana( 0 );

SetDamage( 1, 5 );

SetDamageType( ResistanceType.Physical, 70 );

SetResistance( ResistanceType.Physical, 10, 15 );
SetResistance( ResistanceType.Fire, 5, 10 );
SetResistance( ResistanceType.Cold, 5, 10 );
SetResistance( ResistanceType.Poison, 5, 10 );
SetResistance( ResistanceType.Energy, 5, 10 );

SetSkill( SkillName.MagicResist, 15.1, 20.0 );
SetSkill( SkillName.Tactics, 29.2, 49.0 );
SetSkill( SkillName.Wrestling, 39.2, 49.0 );

Fame = 300;
Karma = 0;

Tamable = true;
ControlSlots = 1;
MinTameSkill = 29.9;
}

public override int Meat{ get{ return 1; } }
public override int Hides{ get{ return 12; } }
public override FoodType FavoriteFood{ get{ return FoodType.FruitsAndVegies | FoodType.GrainsAndHay; } }

public NewbieLama( 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();
}
}
}

UO-Dev SPONSOR

Paylaş

XFacebook

Faydalı mı?

Bu içerik size yardımcı oldu mu?

UO-Dev SPONSOR

JavaSprinter 13-01-2011 22:32
ellerine sağlık kardeşim

Üyelerin oylama ortalaması (10 dışında) :

Henüz Oylanmamış

Oylar: 0

Paylaş

XFacebook

Faydalı mı?

Bu içerik size yardımcı oldu mu?