- Added Necromancy potions, in normal and greater versions: Conflagration, Confusion Blast. (Era: SE+)

(http://www.uodemise.com/forum/showthread.php?p=741663)

- Arcane Circle spell now checks spellweavers are Playermobiles
(http://www.uodemise.com/forum/showthread.php?t=142096)

- Casting from necromancy scrolls will never result in a fail, if the caster has the minimum skill required. Otherwise it always result in a fail.
(http://www.uodemise.com/forum/showthread.php?t=140663)

- Creatures in Fan Dancers Dojo and Yomotsu Mines now are taken in consideration for ToT points
(http://www.uodemise.com/forum/showthread.php?t=141670)
This commit is contained in:
daedalus 2010-05-22 13:23:23 +00:00
parent dad691c966
commit 8af17e640b
14 changed files with 992 additions and 22 deletions

View file

@ -159,6 +159,21 @@ namespace Server.Engines.Craft
index = AddCraft( typeof( SmokeBomb ), 1044537, 1030248, 90.0, 120.0, typeof( Eggs ), 1044477, 1, 1044253 );
AddRes( index, typeof ( Ginseng ), 1044356, 3, 1044364 );
SetNeededExpansion( index, Expansion.SE );
// Conflagration Potions
index = AddCraft( typeof(ConflagrationPotion), 1044109, 1072096, 55.0, 105.0, typeof(GraveDust), 1023983, 5, 1044253 );
AddRes( index, typeof(Bottle), 1044529, 1, 500315 );
SetNeededExpansion(index, Expansion.SE);
index = AddCraft( typeof(GreaterConflagrationPotion), 1044109, 1072099, 65.0, 115.0, typeof(GraveDust), 1023983, 10, 1044253 );
AddRes( index, typeof(Bottle), 1044529, 1, 500315 );
SetNeededExpansion(index, Expansion.SE);
// Confusion Blast Potions
index = AddCraft( typeof(ConfusionBlastPotion), 1044109, 1072106, 55.0, 105.0, typeof(PigIron), 1023978, 5, 1044253 );
AddRes( index, typeof(Bottle), 1044529, 1, 500315 );
SetNeededExpansion(index, Expansion.SE);
index = AddCraft( typeof(GreaterConfusionBlastPotion), 1044109, 1072109, 65.0, 115.0, typeof(PigIron), 1023978, 10, 1044253 );
AddRes( index, typeof(Bottle), 1044529, 1, 500315 );
SetNeededExpansion(index, Expansion.SE);
}
}
}