Implement SE lootpacks for SE enabled shards.
http://www.runuo.com/community/threads/scn-656-osi-loot.429885/ Range Corrections for NPC context menus. http://www.runuo.com/community/threads/svn-656-bulk-order-info-and-train-context-menu-range.451723/ Correction to ships' tillerman. Fixes dropping maps to tillerman, and a boat-break-in exploit. http://www.runuo.com/community/threads/svn-656-tillerman-doesnt-accept-map.447911/ Aesthetic corrections to GargoylesPickaxe. http://www.runuo.com/community/threads/svn-656-blacksmith-reward-gargoyle-pickaxes.436462/
This commit is contained in:
parent
030daa30da
commit
c81a87394d
6 changed files with 23 additions and 16 deletions
|
|
@ -16,24 +16,27 @@ namespace Server.Items
|
|||
public override int AosMinDamage{ get{ return 13; } }
|
||||
public override int AosMaxDamage{ get{ return 15; } }
|
||||
public override int AosSpeed{ get{ return 35; } }
|
||||
public override float MlSpeed{ get{ return 3.00f; } }
|
||||
|
||||
public override int OldStrengthReq{ get{ return 25; } }
|
||||
public override int OldMinDamage{ get{ return 1; } }
|
||||
public override int OldMaxDamage{ get{ return 15; } }
|
||||
public override int OldSpeed{ get{ return 35; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 31; } }
|
||||
public override int InitMaxHits{ get{ return 60; } }
|
||||
|
||||
public override WeaponAnimation DefAnimation{ get{ return WeaponAnimation.Slash1H; } }
|
||||
|
||||
[Constructable]
|
||||
public GargoylesPickaxe() : this( 100 )
|
||||
public GargoylesPickaxe() : this( Utility.RandomMinMax( 101, 125 ))
|
||||
{
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public GargoylesPickaxe( int uses ) : base( 0xE86 )
|
||||
public GargoylesPickaxe( int uses ) : base( 0xE85 + Utility.Random( 2 ))
|
||||
{
|
||||
Weight = 11.0;
|
||||
Hue = 0x973;
|
||||
UsesRemaining = uses;
|
||||
ShowUsesRemaining = true;
|
||||
}
|
||||
|
|
@ -54,6 +57,9 @@ namespace Server.Items
|
|||
base.Deserialize( reader );
|
||||
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if ( Hue == 0x973 )
|
||||
Hue = 0x0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -16,6 +16,7 @@ namespace Server.Items
|
|||
public override int AosMinDamage{ get{ return 13; } }
|
||||
public override int AosMaxDamage{ get{ return 15; } }
|
||||
public override int AosSpeed{ get{ return 35; } }
|
||||
public override float MlSpeed{ get{ return 3.00f; } }
|
||||
|
||||
public override int OldStrengthReq{ get{ return 25; } }
|
||||
public override int OldMinDamage{ get{ return 1; } }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue