Removes implicit types

This commit is contained in:
Kamron Batman 2018-09-14 08:48:39 -07:00
parent 33f5e77a24
commit 04b4cfe75b
261 changed files with 1329 additions and 1329 deletions

View file

@ -145,8 +145,8 @@ namespace Server.Engines.MLQuests.Definitions
InProgressMessage = 1072779; // Every moment you procrastinate, these unnatural creatures damage Sosaria.
CompletionMessage = 1074167; // Well done! Well done, indeed. You are worthy to become an arcanist!
Objectives.Add( new KillObjective( 5, new Type[] { typeof( ExodusOverseer ) }, "Exodus Overseers" ) );
Objectives.Add( new KillObjective( 2, new Type[] { typeof( ExodusMinion ) }, "Exodus Minions" ) );
Objectives.Add( new KillObjective( 5, new[] { typeof( ExodusOverseer ) }, "Exodus Overseers" ) );
Objectives.Add( new KillObjective( 2, new[] { typeof( ExodusMinion ) }, "Exodus Minions" ) );
Rewards.Add( new ItemReward( 1031601, typeof( ArcaneCircleScroll ) ) ); // Arcane Circle
Rewards.Add( new ItemReward( 1031600, typeof( SpellweavingBook ) ) ); // Spellweaving Spellbook
@ -177,7 +177,7 @@ namespace Server.Engines.MLQuests.Definitions
InProgressMessage = 1072773; // You waste my time. The task is simple. Kill 50 rats in an hour.
// No completion message
Objectives.Add( new TimedKillObjective( TimeSpan.FromHours( 1 ), 50, new Type[] { typeof( Rat ) }, "rats", new QuestArea( 1074807, "Sanctuary" ) ) ); // Sanctuary
Objectives.Add( new TimedKillObjective( TimeSpan.FromHours( 1 ), 50, new[] { typeof( Rat ) }, "rats", new QuestArea( 1074807, "Sanctuary" ) ) ); // Sanctuary
Rewards.Add( new DummyReward( 1074872 ) ); // The opportunity to learn the ways of the Arcanist.
}
@ -345,7 +345,7 @@ namespace Server.Engines.MLQuests.Definitions
InProgressMessage = 1074316; // Mean reapers are all around trees! *giggle* You fix them up, please.
CompletionNotice = CompletionNoticeShortReturn;
Objectives.Add( new KillObjective( 20, new Type[] { typeof( Reaper ) }, "reapers" ) );
Objectives.Add( new KillObjective( 20, new[] { typeof( Reaper ) }, "reapers" ) );
Rewards.Add( new ItemReward( 1031607, typeof( SummonFeyScroll ) ) ); // Summon Fey
}
@ -377,7 +377,7 @@ namespace Server.Engines.MLQuests.Definitions
// TODO: Verify
CompletionMessage = 1074291; // Hah! You showed them!
Objectives.Add( new KillObjective( 50, new Type[] { typeof( Imp ) }, "imps" ) );
Objectives.Add( new KillObjective( 50, new[] { typeof( Imp ) }, "imps" ) );
Rewards.Add( new DummyReward( 1074873 ) ); // The opportunity to prove yourself worthy of learning to Summon Fiends. (Sufficient spellweaving skill is required to cast the spell)
}
@ -425,7 +425,7 @@ namespace Server.Engines.MLQuests.Definitions
RefusalMessage = 1074314; // If you're not up for it, so be it.
InProgressMessage = 1074318; // You need to vanquish an arcane daemon before the imps will fear you properly.
Objectives.Add( new KillObjective( 1, new Type[] { typeof( ArcaneDaemon ) }, 1029733 ) ); // arcane demon
Objectives.Add( new KillObjective( 1, new[] { typeof( ArcaneDaemon ) }, 1029733 ) ); // arcane demon
Rewards.Add( new ItemReward( 1031608, typeof( SummonFiendScroll ) ) ); // Summon Fiend
}