ML quest system; first SVN release.
Secondary changes: - Region fixes, mainly for New Haven. - Recipe system changes. - Enabled ML craftables. - Dyeing/cutting restrictions for quest items. - Moved IsInvulnerable from BaseVendor to BaseCreature. - Moved RandomBrightHue to Utility. - Items no longer decay when attached to a spawner. - Quest item hue is now faked through packets, instead of overriding Hue. - Re-enabled item drag effects for SA clients. - Fixed AssignRandomFacialHair bug in Utility. - Added random hue comments to Utility.
This commit is contained in:
parent
5c7af18dfb
commit
35fbffdb51
167 changed files with 23218 additions and 234 deletions
|
|
@ -295,8 +295,7 @@ namespace Server.Engines.Craft
|
|||
AddRes( index, typeof( Bottle ), 1044250, 10, 1044253 );
|
||||
AddRes( index, typeof( BarrelLid ), 1044251, 1, 1044253 );
|
||||
AddRes( index, typeof( BarrelTap ), 1044252, 1, 1044253 );
|
||||
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region Traps
|
||||
|
|
@ -337,6 +336,34 @@ namespace Server.Engines.Craft
|
|||
AddRes( index, typeof( IronIngot ), 1044036, 10, 1044037 );
|
||||
#endregion
|
||||
|
||||
// Magic Jewelry
|
||||
if ( Core.ML )
|
||||
{
|
||||
index = AddCraft( typeof( ResilientBracer ), 1073107, 1072933, 100.0, 125.0, typeof( IronIngot ), 1044036, 2, 1044037 );
|
||||
AddRes( index, typeof( CapturedEssence ), 1032686, 1, 1044253 );
|
||||
AddRes( index, typeof( BlueDiamond ), 1032696, 10, 1044253 );
|
||||
AddRes( index, typeof( Diamond ), 1062608, 50, 1044253 );
|
||||
AddRareRecipe( index, 600 );
|
||||
ForceNonExceptional( index );
|
||||
SetNeededExpansion( index, Expansion.ML );
|
||||
|
||||
index = AddCraft( typeof( EssenceOfBattle ), 1073107, 1072935, 100.0, 125.0, typeof( IronIngot ), 1044036, 2, 1044037 );
|
||||
AddRes( index, typeof( CapturedEssence ), 1032686, 1, 1044253 );
|
||||
AddRes( index, typeof( FireRuby ), 1032695, 10, 1044253 );
|
||||
AddRes( index, typeof( Ruby ), 1062603, 50, 1044253 );
|
||||
AddRareRecipe( index, 601 );
|
||||
ForceNonExceptional( index );
|
||||
SetNeededExpansion( index, Expansion.ML );
|
||||
|
||||
index = AddCraft( typeof( PendantOfTheMagi ), 1073107, 1072937, 100.0, 125.0, typeof( IronIngot ), 1044036, 2, 1044037 );
|
||||
AddRes( index, typeof( EyeOfTheTravesty ), 1032685, 1, 1044253 );
|
||||
AddRes( index, typeof( WhitePearl ), 1032694, 10, 1044253 );
|
||||
AddRes( index, typeof( StarSapphire ), 1062600, 50, 1044253 );
|
||||
AddRareRecipe( index, 602 );
|
||||
ForceNonExceptional( index );
|
||||
SetNeededExpansion( index, Expansion.ML );
|
||||
}
|
||||
|
||||
// Set the overridable material
|
||||
SetSubRes( typeof( IronIngot ), 1044022 );
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue