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,154 @@
using System;
using System.Collections;
using Server.Items;
namespace Server.Mobiles
{
[CorpseName("a kappa corpse")]
public class Kappa : BaseCreature
{
[Constructable]
public Kappa()
: base(AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4)
{
Name = "a kappa";
Body = 240;
SetStr(186, 230);
SetDex(51, 75);
SetInt(41, 55);
SetMana(30);
SetHits(151, 180);
SetDamage(6, 12);
SetDamageType(ResistanceType.Physical, 100);
SetResistance(ResistanceType.Physical, 35, 50);
SetResistance(ResistanceType.Fire, 35, 50);
SetResistance(ResistanceType.Cold, 25, 50);
SetResistance(ResistanceType.Poison, 35, 50);
SetResistance(ResistanceType.Energy, 20, 30);
SetSkill(SkillName.MagicResist, 60.1, 70.0);
SetSkill(SkillName.Tactics, 79.1, 89.0);
SetSkill(SkillName.Wrestling, 60.1, 70.0);
Fame = 1700;
Karma = -1700;
PackItem(new RawFishSteak(3));
for (int i = 0; i < 2; i++)
{
switch ( Utility.Random(6) )
{
case 0:
PackItem(new Gears());
break;
case 1:
PackItem(new Hinge());
break;
case 2:
PackItem(new Axle());
break;
}
}
if (Core.ML && Utility.RandomDouble() < .33)
PackItem(Engines.Plants.Seed.RandomPeculiarSeed(2));
SetSpecialAbility(SpecialAbility.LifeLeech);
}
public Kappa(Serial serial)
: base(serial)
{
}
public override int TreasureMapLevel
{
get
{
return 2;
}
}
public override void GenerateLoot()
{
AddLoot(LootPack.Meager);
AddLoot(LootPack.Average);
}
public override int GetAngerSound()
{
return 0x50B;
}
public override int GetIdleSound()
{
return 0x50A;
}
public override int GetAttackSound()
{
return 0x509;
}
public override int GetHurtSound()
{
return 0x50C;
}
public override int GetDeathSound()
{
return 0x508;
}
public override void OnDamage(int amount, Mobile from, bool willKill)
{
if (from != null && from.Map != null)
{
int amt = 0;
Mobile target = this;
int rand = Utility.Random(1, 100);
if (willKill)
{
amt = (((rand % 5) >> 2) + 3);
}
if ((Hits < 100) && (rand < 21))
{
target = (rand % 2) < 1 ? this : from;
amt++;
}
if (amt > 0)
{
SpillAcid(target, amt);
from.SendLocalizedMessage(1070820);
if (Mana > 14)
Mana -= 15;
amt ^= amt;
}
}
base.OnDamage(amount, from, willKill);
}
public override Item NewHarmfulItem()
{
return new AcidSlime(TimeSpan.FromSeconds(10), 5, 10);
}
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();
}
}
}