(http://www.uodemise.com/discussion/showthread.php?t=121298) - Summoned Daemon now has the proper bodyvalue (AoS+) and effect (http://www.uodemise.com/discussion/showthread.php?t=127404) - Two new house signs are added (http://www.uodemise.com/discussion/showthread.php?t=125409) - Changes to Satyrs and Dryads: --> Dryads: ----> they do area peace ----> can partially undress males ----> have chance to drop peculiar or fragrant (not yet implemented) seeds --> Satyrs: ----> their karma is neutral ----> can peace combatants ----> can provoke nearby creatures to the combatant ----> can undress females ----> can discord combatants --> Both: can drop spellweaving scrolls (http://www.uodemise.com/discussion/showthread.php?t=125444) - Added Auto Arrow Recovery feature (SE+) (http://www.uodemise.com/discussion/showthread.php?t=114807)
63 lines
No EOL
1.5 KiB
C#
63 lines
No EOL
1.5 KiB
C#
using System;
|
|
using Server.Misc;
|
|
using Server.Items;
|
|
using Server.Mobiles;
|
|
using Server.Network;
|
|
using Server.Targeting;
|
|
|
|
namespace Server.Spells.Eighth
|
|
{
|
|
public class SummonDaemonSpell : MagerySpell
|
|
{
|
|
private BaseCreature m_Daemon = new SummonedDaemon();
|
|
|
|
private static SpellInfo m_Info = new SpellInfo(
|
|
"Summon Daemon", "Kal Vas Xen Corp",
|
|
269,
|
|
9050,
|
|
false,
|
|
Reagent.Bloodmoss,
|
|
Reagent.MandrakeRoot,
|
|
Reagent.SpidersSilk,
|
|
Reagent.SulfurousAsh
|
|
);
|
|
|
|
public override SpellCircle Circle { get { return SpellCircle.Eighth; } }
|
|
|
|
public SummonDaemonSpell( Mobile caster, Item scroll ) : base( caster, scroll, m_Info )
|
|
{
|
|
}
|
|
|
|
public override bool CheckCast()
|
|
{
|
|
if ( !base.CheckCast() )
|
|
return false;
|
|
|
|
if ( (Caster.Followers + (Core.SE ? 4 : 5)) > Caster.FollowersMax )
|
|
{
|
|
Caster.SendLocalizedMessage( 1049645 ); // You have too many followers to summon that creature.
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public override void OnCast()
|
|
{
|
|
if ( CheckSequence() )
|
|
{
|
|
TimeSpan duration = TimeSpan.FromSeconds( (2 * Caster.Skills.Magery.Fixed) / 5 );
|
|
|
|
if ( Core.AOS )
|
|
{
|
|
SpellHelper.Summon( m_Daemon, Caster, 0x216, duration, false, false );
|
|
m_Daemon.FixedParticles(0x3728, 8, 20, 5042, EffectLayer.Head );
|
|
}
|
|
else
|
|
SpellHelper.Summon( new Daemon(), Caster, 0x216, duration, false, false );
|
|
}
|
|
|
|
FinishSequence();
|
|
}
|
|
}
|
|
} |