61 lines
No EOL
1.5 KiB
C#
61 lines
No EOL
1.5 KiB
C#
using Server.Gumps;
|
|
using Server.Multis;
|
|
using Server.Factions;
|
|
|
|
namespace Server {
|
|
public sealed class UrnOfAscension : PowerFactionItem {
|
|
public override string DefaultName => "urn of ascension";
|
|
|
|
public UrnOfAscension()
|
|
: base( 9246 ) {
|
|
}
|
|
|
|
public UrnOfAscension( Serial serial )
|
|
: base( serial ) {
|
|
}
|
|
|
|
public override bool Use( Mobile from ) {
|
|
Faction ourFaction = Faction.Find( from );
|
|
|
|
bool used = false;
|
|
|
|
foreach ( Mobile mob in from.GetMobilesInRange( 8 ) ) {
|
|
if ( mob.Player && !mob.Alive && from.InLOS( mob ) ) {
|
|
if ( Faction.Find( mob ) != ourFaction ) {
|
|
continue;
|
|
}
|
|
|
|
BaseHouse house = BaseHouse.FindHouseAt( mob );
|
|
|
|
if ( house == null || ( house.IsFriend( from ) || house.IsFriend( mob ) ) ) {
|
|
Faction.ClearSkillLoss( mob );
|
|
|
|
mob.SendGump( new ResurrectGump( mob, from, ResurrectMessage.Generic ) );
|
|
used = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( used ) {
|
|
from.LocalOverheadMessage( Network.MessageType.Regular, 2219, false, "The urn shatters as you invoke its power." );
|
|
from.PlaySound( 64 );
|
|
|
|
Effects.PlaySound( from.Location, from.Map, 1481 );
|
|
}
|
|
|
|
return used;
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer ) {
|
|
base.Serialize( writer );
|
|
|
|
writer.WriteEncodedInt( ( int ) 0 ); // version
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader ) {
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadEncodedInt();
|
|
}
|
|
}
|
|
} |