Secondary changes: - Region fixes, mainly for New Haven. - Recipe system changes. - Enabled ML craftables. - Dyeing/cutting restrictions for quest items. - Moved IsInvulnerable from BaseVendor to BaseCreature. - Moved RandomBrightHue to Utility. - Items no longer decay when attached to a spawner. - Quest item hue is now faked through packets, instead of overriding Hue. - Re-enabled item drag effects for SA clients. - Fixed AssignRandomFacialHair bug in Utility. - Added random hue comments to Utility.
63 lines
1.6 KiB
C#
63 lines
1.6 KiB
C#
using System;
|
|
using Server.Items;
|
|
using Server.Engines.MLQuests.Items;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class BoneMachete : ElvenMachete, ITicket
|
|
{
|
|
public override WeaponAbility PrimaryAbility { get { return null; } }
|
|
public override WeaponAbility SecondaryAbility { get { return null; } }
|
|
|
|
public override int PhysicalResistance { get { return 1; } }
|
|
public override int FireResistance { get { return 1; } }
|
|
public override int ColdResistance { get { return 1; } }
|
|
public override int PoisonResistance { get { return 1; } }
|
|
public override int EnergyResistance { get { return 1; } }
|
|
|
|
public override int InitMinHits { get { return 5; } }
|
|
public override int InitMaxHits { get { return 5; } }
|
|
|
|
[Constructable]
|
|
public BoneMachete()
|
|
{
|
|
ItemID = 0x20E;
|
|
}
|
|
|
|
public BoneMachete( Serial serial )
|
|
: base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
|
|
writer.WriteEncodedInt( 0 ); // version
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadEncodedInt();
|
|
}
|
|
|
|
#region ITicket Members
|
|
|
|
public void OnTicketUsed( Mobile from )
|
|
{
|
|
if ( Utility.RandomDouble() < 0.25 )
|
|
{
|
|
from.SendLocalizedMessage( 1075007 ); // Your bone handled machete snaps in half as you force your way through the poisonous undergrowth.
|
|
Delete();
|
|
}
|
|
else
|
|
{
|
|
from.SendLocalizedMessage( 1075008 ); // Your bone handled machete has grown dull but you still manage to force your way past the venomous branches.
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|