From c1a0fa6dcb9cf8627998cd654973a29cdddfa8bb Mon Sep 17 00:00:00 2001 From: xavier Date: Mon, 18 Jul 2011 20:55:57 +0000 Subject: [PATCH] minor (.25s) correction to wither cast delay. decreased skill req for exc spellbooks. Not perfect but better. --- Scripts/Engines/Craft/DefInscription.cs | 4 ++-- Scripts/Spells/Necromancy/Wither.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/Engines/Craft/DefInscription.cs b/Scripts/Engines/Craft/DefInscription.cs index e5314c95c..fe9f383ed 100644 --- a/Scripts/Engines/Craft/DefInscription.cs +++ b/Scripts/Engines/Craft/DefInscription.cs @@ -298,13 +298,13 @@ namespace Server.Engines.Craft AddRes( index, typeof( GateTravelScroll ), 1044446, 1, 1044253 ); if ( Core.AOS ) - { + { AddCraft( typeof( Spellbook ), 1044294, 1023834, 50.0, 126, typeof( BlankScroll ), 1044377, 10, 1044378 ); + // Bulk order book AddCraft( typeof( Engines.BulkOrders.BulkOrderBook ), 1044294, 1028793, 65.0, 115.0, typeof( BlankScroll ), 1044377, 10, 1044378 ); } if ( Core.SE ) - AddCraft( typeof( Spellbook ), 1044294, 1023834, 50.0, 140, typeof( BlankScroll ), 1044377, 10, 1044378 ); MarkOption = true; } diff --git a/Scripts/Spells/Necromancy/Wither.cs b/Scripts/Spells/Necromancy/Wither.cs index 97c6381fa..bc2062228 100644 --- a/Scripts/Spells/Necromancy/Wither.cs +++ b/Scripts/Spells/Necromancy/Wither.cs @@ -17,7 +17,7 @@ namespace Server.Spells.Necromancy Reagent.PigIron ); - public override TimeSpan CastDelayBase { get { return TimeSpan.FromSeconds( 1.25 ); } } + public override TimeSpan CastDelayBase { get { return TimeSpan.FromSeconds( 1.5 ); } } public override double RequiredSkill{ get{ return 60.0; } } public override int RequiredMana{ get{ return 23; } }