ModernUO/Scripts/Engines/MLQuests/Definitions/BlightedGrove.cs
eos 35fbffdb51 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.
2013-02-03 01:05:17 +00:00

273 lines
11 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
using Server.Mobiles;
using Server.Items;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class VilePoison : MLQuest
{
public override Type NextQuest { get { return typeof( ARockAndAHardPlace ); } }
public VilePoison()
{
Activated = true;
Title = 1074950; // Vile Poison
Description = 1074956; // Heya! I'm sure glad to see you. Listen I'm in a bit of a bind here. I'm supposed to be gathering poisoned water at the base of that corrupted tree there, but I can't get in under the roots to get a good sample. The branches and brush are so tainted that they can't be cut, burned or even magically passed. It's put my work at a real standstill. If you help me out, I'll help you get in there too. Whadda ya say?
RefusalMessage = 1074964; // Okay. If you change your mind, I'll probably still be stuck here trying to get in.
InProgressMessage = 1074968; // My friend, Iosep, is a weaponsmith in Jhelom. If anyone can help us, he can!
CompletionMessage = 1074991; // Greetings. What have you there? Ah, a sample from a poisonous tree, you say? My friend Jamal sent you? Well, let me see that then, and we'll get to work.
Objectives.Add( new DeliverObjective( typeof( TaintedTreeSample ), 1, "tainted tree sample", typeof( Iosep ), "Iosep (Jhelom)" ) );
Rewards.Add( new DummyReward( 1074962 ) ); // A step closer to entering Blighted Grove.
}
public override void Generate()
{
base.Generate();
PutSpawner( new Spawner( 1, 5, 10, 0, 5, "Jamal" ), new Point3D( 559, 1651, 0 ), Map.Felucca );
PutSpawner( new Spawner( 1, 5, 10, 0, 5, "Jamal" ), new Point3D( 559, 1651, 0 ), Map.Trammel );
PutSpawner( new Spawner( 1, 5, 10, 0, 2, "Iosep" ), new Point3D( 1354, 3754, 0 ), Map.Felucca );
PutSpawner( new Spawner( 1, 5, 10, 0, 2, "Iosep" ), new Point3D( 1354, 3754, 0 ), Map.Trammel );
}
}
public class ARockAndAHardPlace : MLQuest
{
public override Type NextQuest { get { return typeof( SympatheticMagic ); } }
public override bool IsChainTriggered { get { return true; } }
public ARockAndAHardPlace()
{
Activated = true;
Title = 1074951; // A Rock and a Hard Place
Description = 1074957; // This is some nasty stuff, that's for certain. I don't even want to think about what sort of blight caused this venomous reaction from that old tree. Let's get to work … we'll need to try something really hard but still workable as our base material. Nothing's harder than stone and diamond. Let's try them first.
RefusalMessage = 1074965; // Sure, no problem. I thought you were interested in figuring this out.
InProgressMessage = 1074969; // If you're a miner, you should have no trouble getting that stuff. If not, you can probably buy some samples from a miner?
CompletionMessage = 1074992; // Have you got the granite and diamonds? Great, let me see them and we'll see what effect this venom has upon them.
// Any type of granite works
Objectives.Add( new CollectObjective( 4, typeof( BaseGranite ), 1026009 ) ); // rock
Objectives.Add( new CollectObjective( 2, typeof( BlueDiamond ), 1032696 ) ); // Blue Diamond
Rewards.Add( new DummyReward( 1074962 ) ); // A step closer to entering Blighted Grove.
}
}
public class SympatheticMagic : MLQuest
{
public override Type NextQuest { get { return typeof( AlreadyDead ); } }
public override bool IsChainTriggered { get { return true; } }
public SympatheticMagic()
{
Activated = true;
Title = 1074952; // Sympathetic Magic
Description = 1074958; // Hmm, I've never even heard of something that can damage diamond like that. I guess we'll have to go with plan B. Let's try something similar. Sometimes there's a natural immunity to be found when you use a substance that's like the one you're trying to cut. A sort of "sympathetic" thing. Y'know?
RefusalMessage = 1074965; // Sure, no problem. I thought you were interested in figuring this out.
InProgressMessage = 1074970; // I think a lumberjack can help supply bark.
CompletionMessage = 1074993; // You're back with the bark already? Terrific! I bet this will do the trick.
Objectives.Add( new CollectObjective( 10, typeof( BarkFragment ), 1032687 ) ); // Bark Fragment
Rewards.Add( new DummyReward( 1074962 ) ); // A step closer to entering Blighted Grove.
}
}
public class AlreadyDead : MLQuest
{
public override Type NextQuest { get { return typeof( Eureka ); } }
public override bool IsChainTriggered { get { return true; } }
public AlreadyDead()
{
Activated = true;
Title = 1074953; // Already Dead
Description = 1074959; // Amazing! The bark was reduced to ash in seconds. Whatever this taint is, it plays havok with living things. And of course, it took the edge off both diamonds and granite even faster. What we need is something workable but dead; something that can hold an edge without melting. See what you can come up with, please.
RefusalMessage = 1074965; // Sure, no problem. I thought you were interested in figuring this out.
InProgressMessage = 1074971; // I'm thinking we need something fairly brittle or it won't hold an edge. And, it can't be alive, of course.
CompletionMessage = 1074994; // Great thought! Bone might just do the trick.
Objectives.Add( new InternalObjective() );
Rewards.Add( new DummyReward( 1074962 ) ); // A step closer to entering Blighted Grove.
}
private class InternalObjective : CollectObjective
{
public override bool ShowDetailed { get { return false; } }
public InternalObjective()
: base( 10, typeof( Bone ), 1074963 ) // (10) workable samples
{
}
}
}
public class Eureka : MLQuest
{
public override Type NextQuest { get { return typeof( SubContracting ); } }
public override bool IsChainTriggered { get { return true; } }
public Eureka()
{
Activated = true;
Title = 1074954; // Eureka!
Description = 1074960; // We're in business! I've put together the instructions for chopping sort of sword, in the style of one of those new-fangled elven machetes. Take those back to Jamal for me, if you would.
RefusalMessage = 1074966; // Well, okay. I guess I thought you'd want to see this through.
InProgressMessage = 1074972; // I'm sure Jamal is eager to get this information. He's probably still hanging around near that big old blighted tree.
CompletionMessage = 1074995; // Heya! You're back. Was Iosep able to help? Let me see what he's sent.
Objectives.Add( new DeliverObjective( typeof( SealedNotesForJamal ), 1, "sealed note for Jamal", typeof( Jamal ), "Jamal (near Blighted Grove)" ) );
Rewards.Add( new DummyReward( 1074962 ) ); // A step closer to entering Blighted Grove.
}
public override void GetRewards( MLQuestInstance instance )
{
PlayerMobile pm = instance.Player;
if ( !pm.HasRecipe( 32 ) )
{
// The ability is awarded regardless of blacksmithy skill
pm.AcquireRecipe( 32 );
if ( pm.Skills[SkillName.Blacksmith].Base < 45.0 ) // TODO: Verify threshold
pm.SendLocalizedMessage( 1075005 ); // You observe carefully but you can't grasp the complexities of smithing a bone handled machete.
else
pm.SendLocalizedMessage( 1075006 ); // You have learned how to smith a bone handled machete!
}
base.GetRewards( instance );
}
}
public class SubContracting : MLQuest
{
public override bool IsChainTriggered { get { return true; } }
public SubContracting()
{
Activated = true;
Title = 1074955; // Sub Contracting
Description = 1074961; // Wonderful! Now we can both get in there! Let me show you these instructions for making this machete. If you're not skilled in smithing, I'm not sure how much sense it will make though. Listen, if you're heading in there anyway … maybe you'd do me one more favor? I'm ah ... buried in work out here ... so if you'd go in and get me a few water samples, I'd be obliged.
RefusalMessage = 1074967; // Oh. Right, I guess you're really ... ah ... busy too.
InProgressMessage = 1074973; // Once you're inside, look for places where the water has twisted and warped the natural creatures.
CompletionMessage = 1074996; // I hear sloshing ... that must mean you've got my water samples. Whew, I'm so glad you braved the dangers in there ... I mean, I would have but I'm so busy out here. Here's your reward!
Objectives.Add( new CollectObjective( 3, typeof( SamplesOfCorruptedWater ), "samples of corrupted water" ) ); // On OSI the label is "#1074999"
// TODO: "Return to" should say "Jamal (near Blighted Grove)"
// Maybe every quest NPC has directions as a property?
Rewards.Add( ItemReward.LargeBagOfTreasure );
}
}
#endregion
#region Mobiles
public class Jamal : BaseCreature
{
public override bool IsInvulnerable { get { return true; } }
[Constructable]
public Jamal()
: base( AIType.AI_Vendor, FightMode.None, 2, 1, 0.2, 0.4 )
{
Name = "Jamal";
Title = "the Fisherman";
Body = 400;
Hue = Race.RandomSkinHue();
InitStats( 100, 100, 25 );
Utility.AssignRandomHair( this );
Utility.AssignRandomFacialHair( this, HairHue );
AddItem( new Shirt( 0x1BB ) );
AddItem( new ShortPants( Utility.RandomNeutralHue() ) );
AddItem( new ThighBoots( Utility.RandomAnimalHue() ) );
AddItem( new Backpack() );
}
public Jamal( Serial serial )
: base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int)0 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
reader.ReadInt();
}
}
public class Iosep : BaseCreature
{
// TODO: EmbracingHumanity
public override bool IsInvulnerable { get { return true; } }
public override bool CanShout { get { return true; } }
public override void Shout( PlayerMobile pm )
{
MLQuestSystem.Tell( this, pm, Utility.RandomList(
1074209, // Hey, could you help me out with something?
1074215 // Dont test my patience you sniveling worm!
) );
}
[Constructable]
public Iosep()
: base( AIType.AI_Vendor, FightMode.None, 2, 1, 0.2, 0.4 )
{
Name = "Iosep";
Title = "the Exporter";
Body = 400;
Hue = Race.RandomSkinHue();
InitStats( 100, 100, 25 );
AddItem( new FancyShirt( Utility.RandomBlueHue() ) );
AddItem( new LongPants( 0x1BB ) );
AddItem( new Shoes( Utility.RandomNeutralHue() ) );
AddItem( new Backpack() );
}
public Iosep( Serial serial )
: base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int)0 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
reader.ReadInt();
}
}
#endregion
}