#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
5df497787a
7510 changed files with 416048 additions and 0 deletions
42
Scripts/Items/Weapons/Axes/TwoHandedAxe.cs
Normal file
42
Scripts/Items/Weapons/Axes/TwoHandedAxe.cs
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
using System;
|
||||
using Server.Items;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0x1443, 0x1442 )]
|
||||
public class TwoHandedAxe : BaseAxe
|
||||
{
|
||||
public override int UOStrengthReq{ get{ return 35; } }
|
||||
public override int UOMinDamage{ get{ return 5; } }
|
||||
public override int UOMaxDamage{ get{ return 39; } }
|
||||
public override int UOSpeed{ get{ return 30; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 31; } }
|
||||
public override int InitMaxHits{ get{ return 90; } }
|
||||
|
||||
[Constructable]
|
||||
public TwoHandedAxe() : base( 0x1443 )
|
||||
{
|
||||
Weight = 8.0;
|
||||
}
|
||||
|
||||
public TwoHandedAxe( 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