Files
abysmal-isle/Scripts/Scripts-master/Quests/BeginnerGargoyleEquip/RewardItems/ApprenticeGargoyleSword.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

54 lines
1.1 KiB
C#

using Server;
using System;
using Server.Items;
namespace Server.Items
{
public class ApprenticeGargoyleSword : Katana
{
public override int InitMinHits{ get{ return 150; } }
public override int InitMaxHits{ get{ return 150; } }
public override Race RequiredRace{ get { return Race.Gargoyle; } }
public override bool CanBeWornByGargoyles{ get{ return true; } }
[Constructable]
public ApprenticeGargoyleSword()
{
Name = "Hero Apprentice Gargoyle Sword";
ItemID =2312;
Layer = Layer.OneHanded;
Weight = 10;
WeaponAttributes.UseBestSkill = 1;
Attributes.SpellChanneling = 1;
Attributes.WeaponDamage = 35;
Attributes.WeaponSpeed = 15;
Attributes.Luck = 25;
LootType = LootType.Blessed;
}
public ApprenticeGargoyleSword( 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();
}
}
}