Files
abysmal-isle/Scripts/Scripts-master/Items/Armors/CuteFluffyBunnyShroud.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

55 lines
1.5 KiB
C#

using System;
using Server.Items;
namespace Server.Items
{
public class CuteFluffyBunnyShroud : BaseArmor
{
public override int PhysicalResistance{ get{ return 5; } }
public override int FireResistance{ get{ return 5; } }
public override int ColdResistance{ get{ return 5; } }
public override int PoisonResistance{ get{ return 5; } }
public override int EnergyResistance{ get{ return 5; } }
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Plate; } }
public override int ArtifactRarity{ get{ return 13; } }
[Constructable]
public CuteFluffyBunnyShroud() : base( 0x2684 )
{
Name = "Cute Fluffy Bunny Suit";
Hue = 2264;
Weight = 3.0;
Attributes.CastSpeed = 1;
Attributes.CastRecovery = 1;
Attributes.NightSight = 1;
Attributes.ReflectPhysical = 5;
Attributes.SpellDamage = 5;
Attributes.LowerManaCost = 5;
Attributes.LowerRegCost = 25;
Attributes.BonusStr = 5;
ArmorAttributes.MageArmor = 1;
}
public CuteFluffyBunnyShroud( 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();
}
}
}