#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
5df497787a
7510 changed files with 416048 additions and 0 deletions
43
Scripts/Items/Weapons/Staves/QuarterStaff.cs
Normal file
43
Scripts/Items/Weapons/Staves/QuarterStaff.cs
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
using System;
|
||||
using Server.Network;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0xE89, 0xE8a )]
|
||||
public class QuarterStaff : BaseStaff
|
||||
{
|
||||
public override int UOStrengthReq{ get{ return 30; } }
|
||||
public override int UOMinDamage{ get{ return 8; } }
|
||||
public override int UOMaxDamage{ get{ return 28; } }
|
||||
public override int UOSpeed{ get{ return 48; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 31; } }
|
||||
public override int InitMaxHits{ get{ return 60; } }
|
||||
|
||||
[Constructable]
|
||||
public QuarterStaff() : base( 0xE89 )
|
||||
{
|
||||
Weight = 4.0;
|
||||
Resource = CraftResource.Wooden;
|
||||
}
|
||||
|
||||
public QuarterStaff( 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue