Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,97 @@
using System;
using Server.Mobiles;
using Server.Items;
namespace Server.Mobiles
{
[CorpseName( "a baby turkey corpse" )]
public class BabyTurkeyDragon : BaseCreature
{
[Constructable]
public BabyTurkeyDragon() : base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
{
Name = "a baby turkey dragon";
Body = 52;
Hue = 442;
BaseSoundID = 0xDB;
TurkeyDragonDropPack();
SetStr( 22, 34 );
SetDex( 16, 25 );
SetInt( 6, 10 );
SetHits( 30, 38 );
SetMana( 0 );
SetDamage( 3, 6 );
SetDamageType( ResistanceType.Physical, 100 );
SetResistance( ResistanceType.Physical, 15, 20 );
SetResistance( ResistanceType.Poison, 20, 30 );
SetSkill( SkillName.Poisoning, 50.1, 70.0 );
SetSkill( SkillName.MagicResist, 15.1, 20.0 );
SetSkill( SkillName.Tactics, 19.3, 34.0 );
SetSkill( SkillName.Wrestling, 19.3, 34.0 );
Fame = 300;
Karma = -300;
VirtualArmor = 16;
Tamable = false;
ControlSlots = 1;
MinTameSkill = 59.1;
}
public override Poison PoisonImmune{ get{ return Poison.Lesser; } }
public override Poison HitPoison{ get{ return Poison.Lesser; } }
public override bool DeathAdderCharmable{ get{ return true; } }
public override int Meat{ get{ return 1; } }
public override FoodType FavoriteFood{ get{ return FoodType.Eggs; } }
public virtual void TurkeyDragonDropPack()
{
PackItem( new BreadLoaf(2) );
PackItem( new CheeseWheel(1) );
PackItem( new FrenchBread(2) );
PackItem( new CookedBird(14) );
PackItem( new Cookies(6) );
PackItem( new Muffins(2) );
PackItem( new PumpkinPie() );
PackItem( new PeachCobbler() );
PackItem( new YellowGourd(1) );
PackItem( new GreenGourd(2) );
PackItem( new EarOfCorn(10) );
PackItem( new Turnip(2) );
PackItem( new FruitBasket() );
PackItem( new Dates(6) );
PackItem( new Grapes(2) );
PackItem( new Peach(3) );
PackItem( new Pear(2) );
PackItem( new Apple(4) );
PackItem( new Carrot(3) );
PackItem( new Cabbage(2) );
PackItem( new Onion(1) );
PackItem( new Lettuce(2) );
}
public BabyTurkeyDragon(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();
}
}
}