228 lines
No EOL
5.5 KiB
C#
228 lines
No EOL
5.5 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Server;
|
|
using Server.Misc;
|
|
using Server.Targeting;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class ArcaneGem : Item
|
|
{
|
|
public override string DefaultName
|
|
{
|
|
get { return "arcane gem"; }
|
|
}
|
|
|
|
[Constructable]
|
|
public ArcaneGem() : base( 0x1EA7 )
|
|
{
|
|
Stackable = false;
|
|
Weight = 1.0;
|
|
}
|
|
|
|
public ArcaneGem( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void OnDoubleClick( Mobile from )
|
|
{
|
|
if ( !IsChildOf( from.Backpack ) )
|
|
{
|
|
from.SendLocalizedMessage( 1042001 ); // That must be in your pack for you to use it.
|
|
}
|
|
else
|
|
{
|
|
from.BeginTarget( 2, false, TargetFlags.None, new TargetCallback( OnTarget ) );
|
|
from.SendMessage( "What do you wish to use the gem on?" );
|
|
}
|
|
}
|
|
|
|
public int GetChargesFor( Mobile m )
|
|
{
|
|
int v = (int)(Server.Misc.SkillCheck.TradeSkill( m, Trades.Tailoring, false ) / 5);
|
|
|
|
if ( v < 16 )
|
|
return 16;
|
|
else if ( v > 24 )
|
|
return 24;
|
|
|
|
return v;
|
|
}
|
|
|
|
public const int DefaultArcaneHue = 2117;
|
|
|
|
public void OnTarget( Mobile from, object obj )
|
|
{
|
|
if ( !IsChildOf( from.Backpack ) )
|
|
{
|
|
from.SendLocalizedMessage( 1042001 ); // That must be in your pack for you to use it.
|
|
return;
|
|
}
|
|
|
|
if ( obj is IArcaneEquip && obj is Item )
|
|
{
|
|
Item item = (Item)obj;
|
|
CraftResource resource = CraftResource.None;
|
|
|
|
if( item is BaseClothing )
|
|
resource = ((BaseClothing)item).Resource;
|
|
else if( item is BaseArmor )
|
|
resource = ((BaseArmor)item).Resource;
|
|
else if( item is BaseWeapon ) // Sanity, weapons cannot recieve gems...
|
|
resource = ((BaseWeapon)item).Resource;
|
|
|
|
IArcaneEquip eq = (IArcaneEquip)obj;
|
|
|
|
if ( !item.IsChildOf( from.Backpack ) )
|
|
{
|
|
from.SendLocalizedMessage( 1042001 ); // That must be in your pack for you to use it.
|
|
return;
|
|
}
|
|
else if ( resource != CraftResource.None && resource != CraftResource.Leathered )
|
|
{
|
|
from.SendLocalizedMessage( 1049690 ); // Arcane gems can not be used on that type of leather.
|
|
return;
|
|
}
|
|
|
|
int charges = GetChargesFor( from );
|
|
|
|
if ( eq.IsArcane )
|
|
{
|
|
if ( eq.CurArcaneCharges >= eq.MaxArcaneCharges )
|
|
{
|
|
from.SendMessage( "That item is already fully charged." );
|
|
}
|
|
else
|
|
{
|
|
if ( eq.CurArcaneCharges <= 0 )
|
|
item.Hue = DefaultArcaneHue;
|
|
|
|
if ( (eq.CurArcaneCharges + charges) > eq.MaxArcaneCharges )
|
|
eq.CurArcaneCharges = eq.MaxArcaneCharges;
|
|
else
|
|
eq.CurArcaneCharges += charges;
|
|
|
|
from.SendMessage( "You recharge the item." );
|
|
if ( Amount <= 1 )
|
|
Delete();
|
|
else Amount--;
|
|
}
|
|
}
|
|
else if ( Server.Misc.SkillCheck.TradeSkill( from, Trades.Tailoring, false ) >= 80.0 )
|
|
{
|
|
bool isExceptional = false;
|
|
|
|
if ( item is BaseClothing )
|
|
isExceptional = ( ((BaseClothing)item).Quality == ClothingQuality.Exceptional );
|
|
else if ( item is BaseArmor )
|
|
isExceptional = ( ((BaseArmor)item).Quality == ArmorQuality.Exceptional );
|
|
else if ( item is BaseWeapon )
|
|
isExceptional = ( ((BaseWeapon)item).Quality == WeaponQuality.Exceptional );
|
|
|
|
if ( isExceptional )
|
|
{
|
|
if ( item is BaseClothing )
|
|
{
|
|
((BaseClothing)item).Quality = ClothingQuality.Regular;
|
|
((BaseClothing)item).Crafter = from;
|
|
}
|
|
else if ( item is BaseArmor )
|
|
{
|
|
((BaseArmor)item).Quality = ArmorQuality.Regular;
|
|
((BaseArmor)item).Crafter = from;
|
|
}
|
|
else if ( item is BaseWeapon ) // Sanity, weapons cannot recieve gems...
|
|
{
|
|
((BaseWeapon)item).Quality = WeaponQuality.Regular;
|
|
((BaseWeapon)item).Crafter = from;
|
|
}
|
|
|
|
eq.CurArcaneCharges = eq.MaxArcaneCharges = charges;
|
|
|
|
item.Hue = DefaultArcaneHue;
|
|
|
|
from.SendMessage( "You enhance the item with your gem." );
|
|
if ( Amount <= 1 )
|
|
Delete();
|
|
else Amount--;
|
|
}
|
|
else
|
|
{
|
|
from.SendMessage( "Only exceptional items can be enhanced with the gem." );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
from.SendMessage( "You do not have enough skill in tailoring to enhance the item." );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
from.SendMessage( "You can only use this on exceptionally crafted robes, thigh boots, cloaks, or leather gloves." );
|
|
}
|
|
}
|
|
|
|
public static bool ConsumeCharges( Mobile from, int amount )
|
|
{
|
|
List<Item> items = from.Items;
|
|
int avail = 0;
|
|
|
|
for ( int i = 0; i < items.Count; ++i )
|
|
{
|
|
Item obj = items[i];
|
|
|
|
if ( obj is IArcaneEquip )
|
|
{
|
|
IArcaneEquip eq = (IArcaneEquip)obj;
|
|
|
|
if ( eq.IsArcane )
|
|
avail += eq.CurArcaneCharges;
|
|
}
|
|
}
|
|
|
|
if ( avail < amount )
|
|
return false;
|
|
|
|
for ( int i = 0; i < items.Count; ++i )
|
|
{
|
|
Item obj = items[i];
|
|
|
|
if ( obj is IArcaneEquip )
|
|
{
|
|
IArcaneEquip eq = (IArcaneEquip)obj;
|
|
|
|
if ( eq.IsArcane )
|
|
{
|
|
if ( eq.CurArcaneCharges > amount )
|
|
{
|
|
eq.CurArcaneCharges -= amount;
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
amount -= eq.CurArcaneCharges;
|
|
eq.CurArcaneCharges = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
} |