using System; using System.IO; using System.Reflection; using Server; using Server.Items; namespace Server { public class Loot { #region List definitions #region Mondain's Legacy private static Type[] m_MLWeaponTypes = new Type[] { typeof( AssassinSpike ), typeof( DiamondMace ), typeof( ElvenMachete ), typeof( ElvenSpellblade ), typeof( Leafblade ), typeof( OrnateAxe ), typeof( RadiantScimitar ), typeof( RuneBlade ), typeof( WarCleaver ), typeof( WildStaff ) }; public static Type[] MLWeaponTypes{ get{ return m_MLWeaponTypes; } } private static Type[] m_MLRangedWeaponTypes = new Type[] { typeof( ElvenCompositeLongbow ), typeof( MagicalShortbow ) }; public static Type[] MLRangedWeaponTypes{ get{ return m_MLRangedWeaponTypes; } } private static Type[] m_MLArmorTypes = new Type[] { typeof( Circlet ), typeof( GemmedCirclet ), typeof( LeafTonlet ), typeof( RavenHelm ), typeof( RoyalCirclet ), typeof( VultureHelm ), typeof( WingedHelm ), typeof( LeafArms ), typeof( LeafChest ), typeof( LeafGloves ), typeof( LeafGorget ), typeof( LeafLegs ), typeof( WoodlandArms ), typeof( WoodlandChest ), typeof( WoodlandGloves ), typeof( WoodlandGorget ), typeof( WoodlandLegs ), typeof( HideChest ), typeof( HideGloves ), typeof( HideGorget ), typeof( HidePants ), typeof( HidePauldrons ) }; public static Type[] MLArmorTypes{ get{ return m_MLArmorTypes; } } private static Type[] m_MLClothingTypes = new Type[] { typeof( MaleElvenRobe ), typeof( FemaleElvenRobe ), typeof( ElvenPants ), typeof( ElvenShirt ), typeof( ElvenDarkShirt ), typeof( ElvenBoots ), typeof( VultureHelm ), typeof( WoodlandBelt ) }; public static Type[] MLClothingTypes{ get{ return m_MLClothingTypes; } } #endregion private static Type[] m_SEWeaponTypes = new Type[] { typeof( Bokuto ), typeof( Daisho ), typeof( Kama ), typeof( Lajatang ), typeof( NoDachi ), typeof( Nunchaku ), typeof( Sai ), typeof( Tekagi ), typeof( Tessen ), typeof( Tetsubo ), typeof( Wakizashi ) }; public static Type[] SEWeaponTypes{ get{ return m_SEWeaponTypes; } } private static Type[] m_AosWeaponTypes = new Type[] { typeof( Scythe ), typeof( BoneHarvester ), typeof( Scepter ), typeof( BladedStaff ), typeof( Pike ), typeof( DoubleBladedStaff ), typeof( Lance ), typeof( CrescentBlade ) }; public static Type[] AosWeaponTypes{ get{ return m_AosWeaponTypes; } } private static Type[] m_WeaponTypes = new Type[] { typeof( Axe ), typeof( BattleAxe ), typeof( DoubleAxe ), typeof( ExecutionersAxe ), typeof( Hatchet ), typeof( LargeBattleAxe ), typeof( TwoHandedAxe ), typeof( WarAxe ), typeof( Club ), typeof( Mace ), typeof( Maul ), typeof( WarHammer ), typeof( WarMace ), typeof( Bardiche ), typeof( Halberd ), typeof( Spear ), typeof( ShortSpear ), typeof( Pitchfork ), typeof( WarFork ), typeof( BlackStaff ), typeof( GnarledStaff ), typeof( QuarterStaff ), typeof( Broadsword ), typeof( Cutlass ), typeof( Katana ), typeof( Kryss ), typeof( Longsword ), typeof( Scimitar ), typeof( VikingSword ), typeof( Pickaxe ), typeof( HammerPick ), typeof( ButcherKnife ), typeof( Cleaver ), typeof( Dagger ), typeof( SkinningKnife ), typeof( ShepherdsCrook ) }; public static Type[] WeaponTypes{ get{ return m_WeaponTypes; } } private static Type[] m_SERangedWeaponTypes = new Type[] { typeof( Yumi ) }; public static Type[] SERangedWeaponTypes{ get{ return m_SERangedWeaponTypes; } } private static Type[] m_AosRangedWeaponTypes = new Type[] { typeof( CompositeBow ), typeof( RepeatingCrossbow ) }; public static Type[] AosRangedWeaponTypes{ get{ return m_AosRangedWeaponTypes; } } private static Type[] m_RangedWeaponTypes = new Type[] { typeof( Bow ), typeof( Crossbow ), typeof( HeavyCrossbow ) }; public static Type[] RangedWeaponTypes{ get{ return m_RangedWeaponTypes; } } private static Type[] m_SEArmorTypes = new Type[] { typeof( ChainHatsuburi ), typeof( LeatherDo ), typeof( LeatherHaidate ), typeof( LeatherHiroSode ), typeof( LeatherJingasa ), typeof( LeatherMempo ), typeof( LeatherNinjaHood ), typeof( LeatherNinjaJacket ), typeof( LeatherNinjaMitts ), typeof( LeatherNinjaPants ), typeof( LeatherSuneate ), typeof( DecorativePlateKabuto ), typeof( HeavyPlateJingasa ), typeof( LightPlateJingasa ), typeof( PlateBattleKabuto ), typeof( PlateDo ), typeof( PlateHaidate ), typeof( PlateHatsuburi ), typeof( PlateHiroSode ), typeof( PlateMempo ), typeof( PlateSuneate ), typeof( SmallPlateJingasa ), typeof( StandardPlateKabuto ), typeof( StuddedDo ), typeof( StuddedHaidate ), typeof( StuddedHiroSode ), typeof( StuddedMempo ), typeof( StuddedSuneate ) }; public static Type[] SEArmorTypes{ get{ return m_SEArmorTypes; } } private static Type[] m_ArmorTypes = new Type[] { typeof( BoneArms ), typeof( BoneChest ), typeof( BoneGloves ), typeof( BoneLegs ), typeof( BoneHelm ), typeof( ChainChest ), typeof( ChainLegs ), typeof( ChainCoif ), typeof( Bascinet ), typeof( CloseHelm ), typeof( Helmet ), typeof( NorseHelm ), typeof( OrcHelm ), typeof( FemaleLeatherChest ), typeof( LeatherArms ), typeof( LeatherBustierArms ), typeof( LeatherChest ), typeof( LeatherGloves ), typeof( LeatherGorget ), typeof( LeatherLegs ), typeof( LeatherShorts ), typeof( LeatherSkirt ), typeof( LeatherCap ), typeof( FemalePlateChest ), typeof( PlateArms ), typeof( PlateChest ), typeof( PlateGloves ), typeof( PlateGorget ), typeof( PlateHelm ), typeof( PlateLegs ), typeof( RingmailArms ), typeof( RingmailChest ), typeof( RingmailGloves ), typeof( RingmailLegs ), typeof( FemaleStuddedChest ), typeof( StuddedArms ), typeof( StuddedBustierArms ), typeof( StuddedChest ), typeof( StuddedGloves ), typeof( StuddedGorget ), typeof( StuddedLegs ) }; public static Type[] ArmorTypes{ get{ return m_ArmorTypes; } } private static Type[] m_AosShieldTypes = new Type[] { typeof( ChaosShield ), typeof( OrderShield ) }; public static Type[] AosShieldTypes{ get{ return m_AosShieldTypes; } } private static Type[] m_ShieldTypes = new Type[] { typeof( BronzeShield ), typeof( Buckler ), typeof( HeaterShield ), typeof( MetalShield ), typeof( MetalKiteShield ), typeof( WoodenKiteShield ), typeof( WoodenShield ) }; public static Type[] ShieldTypes{ get{ return m_ShieldTypes; } } private static Type[] m_GemTypes = new Type[] { typeof( Amber ), typeof( Amethyst ), typeof( Citrine ), typeof( Diamond ), typeof( Emerald ), typeof( Ruby ), typeof( Sapphire ), typeof( StarSapphire ), typeof( Tourmaline ) }; public static Type[] GemTypes{ get{ return m_GemTypes; } } private static Type[] m_JewelryTypes = new Type[] { typeof( GoldRing ), typeof( GoldBracelet ), typeof( SilverRing ), typeof( SilverBracelet ) }; public static Type[] JewelryTypes{ get{ return m_JewelryTypes; } } private static Type[] m_RegTypes = new Type[] { typeof( BlackPearl ), typeof( Bloodmoss ), typeof( Garlic ), typeof( Ginseng ), typeof( MandrakeRoot ), typeof( Nightshade ), typeof( SulfurousAsh ), typeof( SpidersSilk ) }; public static Type[] RegTypes{ get{ return m_RegTypes; } } private static Type[] m_NecroRegTypes = new Type[] { typeof( BatWing ), typeof( GraveDust ), typeof( DaemonBlood ), typeof( NoxCrystal ), typeof( PigIron ) }; public static Type[] NecroRegTypes{ get{ return m_NecroRegTypes; } } private static Type[] m_PotionTypes = new Type[] { typeof( AgilityPotion ), typeof( StrengthPotion ), typeof( RefreshPotion ), typeof( LesserCurePotion ), typeof( LesserHealPotion ), typeof( LesserPoisonPotion ) }; public static Type[] PotionTypes{ get{ return m_PotionTypes; } } private static Type[] m_SEInstrumentTypes = new Type[] { typeof( BambooFlute ) }; public static Type[] SEInstrumentTypes{ get{ return m_SEInstrumentTypes; } } private static Type[] m_InstrumentTypes = new Type[] { typeof( Drums ), typeof( Harp ), typeof( LapHarp ), typeof( Lute ), typeof( Tambourine ), typeof( TambourineTassel ) }; public static Type[] InstrumentTypes{ get{ return m_InstrumentTypes; } } private static Type[] m_StatueTypes = new Type[] { typeof( StatueSouth ), typeof( StatueSouth2 ), typeof( StatueNorth ), typeof( StatueWest ), typeof( StatueEast ), typeof( StatueEast2 ), typeof( StatueSouthEast ), typeof( BustSouth ), typeof( BustEast ) }; public static Type[] StatueTypes{ get{ return m_StatueTypes; } } private static Type[] m_RegularScrollTypes = new Type[] { typeof( ReactiveArmorScroll ), typeof( ClumsyScroll ), typeof( CreateFoodScroll ), typeof( FeeblemindScroll ), typeof( HealScroll ), typeof( MagicArrowScroll ), typeof( NightSightScroll ), typeof( WeakenScroll ), typeof( AgilityScroll ), typeof( CunningScroll ), typeof( CureScroll ), typeof( HarmScroll ), typeof( MagicTrapScroll ), typeof( MagicUnTrapScroll ), typeof( ProtectionScroll ), typeof( StrengthScroll ), typeof( BlessScroll ), typeof( FireballScroll ), typeof( MagicLockScroll ), typeof( PoisonScroll ), typeof( TelekinisisScroll ), typeof( TeleportScroll ), typeof( UnlockScroll ), typeof( WallOfStoneScroll ), typeof( ArchCureScroll ), typeof( ArchProtectionScroll ), typeof( CurseScroll ), typeof( FireFieldScroll ), typeof( GreaterHealScroll ), typeof( LightningScroll ), typeof( ManaDrainScroll ), typeof( RecallScroll ), typeof( BladeSpiritsScroll ), typeof( DispelFieldScroll ), typeof( IncognitoScroll ), typeof( MagicReflectScroll ), typeof( MindBlastScroll ), typeof( ParalyzeScroll ), typeof( PoisonFieldScroll ), typeof( SummonCreatureScroll ), typeof( DispelScroll ), typeof( EnergyBoltScroll ), typeof( ExplosionScroll ), typeof( InvisibilityScroll ), typeof( MarkScroll ), typeof( MassCurseScroll ), typeof( ParalyzeFieldScroll ), typeof( RevealScroll ), typeof( ChainLightningScroll ), typeof( EnergyFieldScroll ), typeof( FlamestrikeScroll ), typeof( GateTravelScroll ), typeof( ManaVampireScroll ), typeof( MassDispelScroll ), typeof( MeteorSwarmScroll ), typeof( PolymorphScroll ), typeof( EarthquakeScroll ), typeof( EnergyVortexScroll ), typeof( ResurrectionScroll ), typeof( SummonAirElementalScroll ), typeof( SummonDaemonScroll ), typeof( SummonEarthElementalScroll ), typeof( SummonFireElementalScroll ), typeof( SummonWaterElementalScroll ) }; private static Type[] m_NecromancyScrollTypes = new Type[] { typeof( AnimateDeadScroll ), typeof( BloodOathScroll ), typeof( CorpseSkinScroll ), typeof( CurseWeaponScroll ), typeof( EvilOmenScroll ), typeof( HorrificBeastScroll ), typeof( LichFormScroll ), typeof( MindRotScroll ), typeof( PainSpikeScroll ), typeof( PoisonStrikeScroll ), typeof( StrangleScroll ), typeof( SummonFamiliarScroll ), typeof( VampiricEmbraceScroll ), typeof( VengefulSpiritScroll ), typeof( WitherScroll ), typeof( WraithFormScroll ) }; private static Type[] m_SENecromancyScrollTypes = new Type[] { typeof( AnimateDeadScroll ), typeof( BloodOathScroll ), typeof( CorpseSkinScroll ), typeof( CurseWeaponScroll ), typeof( EvilOmenScroll ), typeof( HorrificBeastScroll ), typeof( LichFormScroll ), typeof( MindRotScroll ), typeof( PainSpikeScroll ), typeof( PoisonStrikeScroll ), typeof( StrangleScroll ), typeof( SummonFamiliarScroll ), typeof( VampiricEmbraceScroll ), typeof( VengefulSpiritScroll ), typeof( WitherScroll ), typeof( WraithFormScroll ), typeof( ExorcismScroll ) }; private static Type[] m_PaladinScrollTypes = new Type[0]; #region Mondain's Legacy private static Type[] m_ArcanistScrollTypes = new Type[] { typeof( ArcaneCircleScroll ), typeof( GiftOfRenewalScroll ), typeof( ImmolatingWeaponScroll ), typeof( AttuneWeaponScroll ), typeof( ThunderstormScroll ), typeof( NatureFuryScroll ), /*typeof( SummonFeyScroll ), typeof( SummonFiendScroll ),*/ typeof( ReaperFormScroll ), typeof( WildfireScroll ), typeof( EssenceOfWindScroll ), typeof( DryadAllureScroll ), typeof( EtherealVoyageScroll ), typeof( WordOfDeathScroll ), typeof( GiftOfLifeScroll ), typeof( ArcaneEmpowermentScroll ) }; #endregion public static Type[] RegularScrollTypes{ get{ return m_RegularScrollTypes; } } public static Type[] NecromancyScrollTypes{ get{ return m_NecromancyScrollTypes; } } public static Type[] SENecromancyScrollTypes{ get{ return m_SENecromancyScrollTypes; } } public static Type[] PaladinScrollTypes{ get{ return m_PaladinScrollTypes; } } #region Mondain's Legacy public static Type[] ArcanistScrollTypes{ get{ return m_ArcanistScrollTypes; } } #endregion private static Type[] m_GrimmochJournalTypes = new Type[] { typeof( GrimmochJournal1 ), typeof( GrimmochJournal2 ), typeof( GrimmochJournal3 ), typeof( GrimmochJournal6 ), typeof( GrimmochJournal7 ), typeof( GrimmochJournal11 ), typeof( GrimmochJournal14 ), typeof( GrimmochJournal17 ), typeof( GrimmochJournal23 ) }; public static Type[] GrimmochJournalTypes{ get{ return m_GrimmochJournalTypes; } } private static Type[] m_LysanderNotebookTypes = new Type[] { typeof( LysanderNotebook1 ), typeof( LysanderNotebook2 ), typeof( LysanderNotebook3 ), typeof( LysanderNotebook7 ), typeof( LysanderNotebook8 ), typeof( LysanderNotebook11 ) }; public static Type[] LysanderNotebookTypes{ get{ return m_LysanderNotebookTypes; } } private static Type[] m_TavarasJournalTypes = new Type[] { typeof( TavarasJournal1 ), typeof( TavarasJournal2 ), typeof( TavarasJournal3 ), typeof( TavarasJournal6 ), typeof( TavarasJournal7 ), typeof( TavarasJournal8 ), typeof( TavarasJournal9 ), typeof( TavarasJournal11 ), typeof( TavarasJournal14 ), typeof( TavarasJournal16 ), typeof( TavarasJournal16b ), typeof( TavarasJournal17 ), typeof( TavarasJournal19 ) }; public static Type[] TavarasJournalTypes{ get{ return m_TavarasJournalTypes; } } private static Type[] m_NewWandTypes = new Type[] { typeof( FireballWand ), typeof( LightningWand ), typeof( MagicArrowWand ), typeof( GreaterHealWand ), typeof( HarmWand ), typeof( HealWand ) }; public static Type[] NewWandTypes{ get{ return m_NewWandTypes; } } private static Type[] m_WandTypes = new Type[] { typeof( ClumsyWand ), typeof( FeebleWand ), typeof( ManaDrainWand ), typeof( WeaknessWand ) }; public static Type[] WandTypes{ get{ return m_WandTypes; } } private static Type[] m_OldWandTypes = new Type[] { typeof( IDWand ) }; public static Type[] OldWandTypes{ get{ return m_OldWandTypes; } } private static Type[] m_SEClothingTypes = new Type[] { typeof( ClothNinjaJacket ), typeof( FemaleKimono ), typeof( Hakama ), typeof( HakamaShita ), typeof( JinBaori ), typeof( Kamishimo ), typeof( MaleKimono ), typeof( NinjaTabi ), typeof( Obi ), typeof( SamuraiTabi ), typeof( TattsukeHakama ), typeof( Waraji ) }; public static Type[] SEClothingTypes{ get{ return m_SEClothingTypes; } } private static Type[] m_AosClothingTypes = new Type[] { typeof( FurSarong ), typeof( FurCape ), typeof( FlowerGarland ), typeof( GildedDress ), typeof( FurBoots ), typeof( FormalShirt ), }; public static Type[] AosClothingTypes{ get{ return m_AosClothingTypes; } } private static Type[] m_ClothingTypes = new Type[] { typeof( Cloak ), typeof( Bonnet ), typeof( Cap ), typeof( FeatheredHat ), typeof( FloppyHat ), typeof( JesterHat ), typeof( Surcoat ), typeof( SkullCap ), typeof( StrawHat ), typeof( TallStrawHat ), typeof( TricorneHat ), typeof( WideBrimHat ), typeof( WizardsHat ), typeof( BodySash ), typeof( Doublet ), typeof( Boots ), typeof( FullApron ), typeof( JesterSuit ), typeof( Sandals ), typeof( Tunic ), typeof( Shoes ), typeof( Shirt ), typeof( Kilt ), typeof( Skirt ), typeof( FancyShirt ), typeof( FancyDress ), typeof( ThighBoots ), typeof( LongPants ), typeof( PlainDress ), typeof( Robe ), typeof( ShortPants ), typeof( HalfApron ) }; public static Type[] ClothingTypes{ get{ return m_ClothingTypes; } } private static Type[] m_SEHatTypes = new Type[] { typeof( ClothNinjaHood ), typeof( Kasa ) }; public static Type[] SEHatTypes{ get{ return m_SEHatTypes; } } private static Type[] m_AosHatTypes = new Type[] { typeof( FlowerGarland ), typeof( BearMask ), typeof( DeerMask ) //Are Bear& Deer mask inside the Pre-AoS loottables too? }; public static Type[] AosHatTypes{ get{ return m_AosHatTypes; } } private static Type[] m_HatTypes = new Type[] { typeof( SkullCap ), typeof( Bandana ), typeof( FloppyHat ), typeof( Cap ), typeof( WideBrimHat ), typeof( StrawHat ), typeof( TallStrawHat ), typeof( WizardsHat ), typeof( Bonnet ), typeof( FeatheredHat ), typeof( TricorneHat ), typeof( JesterHat ) }; public static Type[] HatTypes{ get{ return m_HatTypes; } } private static Type[] m_LibraryBookTypes = new Type[] { typeof( GrammarOfOrcish ), typeof( CallToAnarchy ), typeof( ArmsAndWeaponsPrimer ), typeof( SongOfSamlethe ), typeof( TaleOfThreeTribes ), typeof( GuideToGuilds ), typeof( BirdsOfBritannia ), typeof( BritannianFlora ), typeof( ChildrenTalesVol2 ), typeof( TalesOfVesperVol1 ), typeof( DeceitDungeonOfHorror ), typeof( DimensionalTravel ), typeof( EthicalHedonism ), typeof( MyStory ), typeof( DiversityOfOurLand ), typeof( QuestOfVirtues ), typeof( RegardingLlamas ), typeof( TalkingToWisps ), typeof( TamingDragons ), typeof( BoldStranger ), typeof( BurningOfTrinsic ), typeof( TheFight ), typeof( LifeOfATravellingMinstrel ), typeof( MajorTradeAssociation ), typeof( RankingsOfTrades ), typeof( WildGirlOfTheForest ), typeof( TreatiseOnAlchemy ), typeof( VirtueBook ) }; public static Type[] LibraryBookTypes{ get{ return m_LibraryBookTypes; } } #endregion #region Accessors public static BaseWand RandomWand() { if ( Core.ML ) return Construct( m_NewWandTypes ) as BaseWand; else if ( Core.AOS ) return Construct( m_WandTypes, m_NewWandTypes ) as BaseWand; else return Construct( m_OldWandTypes, m_WandTypes, m_NewWandTypes ) as BaseWand; } public static BaseClothing RandomClothing() { return RandomClothing( false, false ); } public static BaseClothing RandomClothing( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLClothingTypes, m_AosClothingTypes, m_ClothingTypes ) as BaseClothing; #endregion if ( Core.SE && inTokuno ) return Construct( m_SEClothingTypes, m_AosClothingTypes, m_ClothingTypes ) as BaseClothing; if ( Core.AOS ) return Construct( m_AosClothingTypes, m_ClothingTypes ) as BaseClothing; return Construct( m_ClothingTypes ) as BaseClothing; } public static BaseWeapon RandomRangedWeapon() { return RandomRangedWeapon( false, false ); } public static BaseWeapon RandomRangedWeapon( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLRangedWeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes ) as BaseWeapon; #endregion if ( Core.SE && inTokuno ) return Construct( m_SERangedWeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes ) as BaseWeapon; if ( Core.AOS ) return Construct( m_AosRangedWeaponTypes, m_RangedWeaponTypes ) as BaseWeapon; return Construct( m_RangedWeaponTypes ) as BaseWeapon; } public static BaseWeapon RandomWeapon() { return RandomWeapon( false, false ); } public static BaseWeapon RandomWeapon( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLWeaponTypes, m_AosWeaponTypes, m_WeaponTypes ) as BaseWeapon; #endregion if ( Core.SE && inTokuno ) return Construct( m_SEWeaponTypes, m_AosWeaponTypes, m_WeaponTypes ) as BaseWeapon; if ( Core.AOS ) return Construct( m_AosWeaponTypes, m_WeaponTypes ) as BaseWeapon; return Construct( m_WeaponTypes ) as BaseWeapon; } public static Item RandomWeaponOrJewelry() { return RandomWeaponOrJewelry( false, false ); } public static Item RandomWeaponOrJewelry( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLWeaponTypes, m_AosWeaponTypes, m_WeaponTypes, m_JewelryTypes ); #endregion if ( Core.SE && inTokuno ) return Construct( m_SEWeaponTypes, m_AosWeaponTypes, m_WeaponTypes, m_JewelryTypes ); if ( Core.AOS ) return Construct( m_AosWeaponTypes, m_WeaponTypes, m_JewelryTypes ); return Construct( m_WeaponTypes, m_JewelryTypes ); } public static BaseJewel RandomJewelry() { return Construct( m_JewelryTypes ) as BaseJewel; } public static BaseArmor RandomArmor() { return RandomArmor( false, false ); } public static BaseArmor RandomArmor( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLArmorTypes, m_ArmorTypes ) as BaseArmor; #endregion if ( Core.SE && inTokuno ) return Construct( m_SEArmorTypes, m_ArmorTypes ) as BaseArmor; return Construct( m_ArmorTypes ) as BaseArmor; } public static BaseHat RandomHat() { return RandomHat( false ); } public static BaseHat RandomHat( bool inTokuno ) { if ( Core.SE && inTokuno ) return Construct( m_SEHatTypes, m_AosHatTypes, m_HatTypes ) as BaseHat; if ( Core.AOS ) return Construct( m_AosHatTypes, m_HatTypes ) as BaseHat; return Construct( m_HatTypes ) as BaseHat; } public static Item RandomArmorOrHat() { return RandomArmorOrHat( false, false ); } public static Item RandomArmorOrHat( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLArmorTypes, m_ArmorTypes, m_AosHatTypes, m_HatTypes ); #endregion if ( Core.SE && inTokuno ) return Construct( m_SEArmorTypes, m_ArmorTypes, m_SEHatTypes, m_AosHatTypes, m_HatTypes ); if ( Core.AOS ) return Construct( m_ArmorTypes, m_AosHatTypes, m_HatTypes ); return Construct( m_ArmorTypes, m_HatTypes ); } public static BaseShield RandomShield() { if ( Core.AOS ) return Construct( m_AosShieldTypes, m_ShieldTypes ) as BaseShield; return Construct( m_ShieldTypes ) as BaseShield; } public static BaseArmor RandomArmorOrShield() { return RandomArmorOrShield( false, false ); } public static BaseArmor RandomArmorOrShield( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLArmorTypes, m_ArmorTypes, m_AosShieldTypes, m_ShieldTypes ) as BaseArmor; #endregion if ( Core.SE && inTokuno ) return Construct( m_SEArmorTypes, m_ArmorTypes, m_AosShieldTypes, m_ShieldTypes ) as BaseArmor; if ( Core.AOS ) return Construct( m_ArmorTypes, m_AosShieldTypes, m_ShieldTypes ) as BaseArmor; return Construct( m_ArmorTypes, m_ShieldTypes ) as BaseArmor; } public static Item RandomArmorOrShieldOrJewelry() { return RandomArmorOrShieldOrJewelry( false, false ); } public static Item RandomArmorOrShieldOrJewelry( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLArmorTypes, m_ArmorTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes, m_JewelryTypes ); #endregion if ( Core.SE && inTokuno ) return Construct( m_SEArmorTypes, m_ArmorTypes, m_SEHatTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes, m_JewelryTypes ); if ( Core.AOS ) return Construct( m_ArmorTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes, m_JewelryTypes ); return Construct( m_ArmorTypes, m_HatTypes, m_ShieldTypes, m_JewelryTypes ); } public static Item RandomArmorOrShieldOrWeapon() { return RandomArmorOrShieldOrWeapon( false, false ); } public static Item RandomArmorOrShieldOrWeapon( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLWeaponTypes, m_AosWeaponTypes, m_WeaponTypes, m_MLRangedWeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes, m_MLArmorTypes, m_ArmorTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes ); #endregion if ( Core.SE && inTokuno ) return Construct( m_SEWeaponTypes, m_AosWeaponTypes, m_WeaponTypes, m_SERangedWeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes, m_SEArmorTypes, m_ArmorTypes, m_SEHatTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes ); if ( Core.AOS ) return Construct( m_AosWeaponTypes, m_WeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes, m_ArmorTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes ); return Construct( m_WeaponTypes, m_RangedWeaponTypes, m_ArmorTypes, m_HatTypes, m_ShieldTypes ); } public static Item RandomArmorOrShieldOrWeaponOrJewelry() { return RandomArmorOrShieldOrWeaponOrJewelry( false, false ); } public static Item RandomArmorOrShieldOrWeaponOrJewelry( bool inTokuno, bool isMondain ) { #region Mondain's Legacy if ( Core.ML && isMondain ) return Construct( m_MLWeaponTypes, m_AosWeaponTypes, m_WeaponTypes, m_MLRangedWeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes, m_MLArmorTypes, m_ArmorTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes, m_JewelryTypes ); #endregion if ( Core.SE && inTokuno ) return Construct( m_SEWeaponTypes, m_AosWeaponTypes, m_WeaponTypes, m_SERangedWeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes, m_SEArmorTypes, m_ArmorTypes, m_SEHatTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes, m_JewelryTypes ); if ( Core.AOS ) return Construct( m_AosWeaponTypes, m_WeaponTypes, m_AosRangedWeaponTypes, m_RangedWeaponTypes, m_ArmorTypes, m_AosHatTypes, m_HatTypes, m_AosShieldTypes, m_ShieldTypes, m_JewelryTypes ); return Construct( m_WeaponTypes, m_RangedWeaponTypes, m_ArmorTypes, m_HatTypes, m_ShieldTypes, m_JewelryTypes ); } #region Chest of Heirlooms public static Item ChestOfHeirloomsContains() { return Construct( m_SEArmorTypes, m_SEHatTypes, m_SEWeaponTypes, m_SERangedWeaponTypes, m_JewelryTypes ); } #endregion public static Item RandomGem() { return Construct( m_GemTypes ); } public static Item RandomReagent() { return Construct( m_RegTypes ); } public static Item RandomNecromancyReagent() { return Construct( m_NecroRegTypes ); } public static Item RandomPossibleReagent() { if ( Core.AOS ) return Construct( m_RegTypes, m_NecroRegTypes ); return Construct( m_RegTypes ); } public static Item RandomPotion() { return Construct( m_PotionTypes ); } public static BaseInstrument RandomInstrument() { if ( Core.SE ) return Construct( m_InstrumentTypes, m_SEInstrumentTypes ) as BaseInstrument; return Construct( m_InstrumentTypes ) as BaseInstrument; } public static Item RandomStatue() { return Construct( m_StatueTypes ); } public static SpellScroll RandomScroll( int minIndex, int maxIndex, SpellbookType type ) { Type[] types; switch ( type ) { default: case SpellbookType.Regular: types = m_RegularScrollTypes; break; case SpellbookType.Necromancer: types = (Core.SE ? m_SENecromancyScrollTypes : m_NecromancyScrollTypes ); break; case SpellbookType.Paladin: types = m_PaladinScrollTypes; break; case SpellbookType.Arcanist: types = m_ArcanistScrollTypes; break; } return Construct( types, Utility.RandomMinMax( minIndex, maxIndex ) ) as SpellScroll; } public static BaseBook RandomGrimmochJournal() { return Construct( m_GrimmochJournalTypes ) as BaseBook; } public static BaseBook RandomLysanderNotebook() { return Construct( m_LysanderNotebookTypes ) as BaseBook; } public static BaseBook RandomTavarasJournal() { return Construct( m_TavarasJournalTypes ) as BaseBook; } public static BaseBook RandomLibraryBook() { return Construct( m_LibraryBookTypes ) as BaseBook; } public static BaseTalisman RandomTalisman() { BaseTalisman talisman = new BaseTalisman( BaseTalisman.GetRandomItemID() ); talisman.Summoner = BaseTalisman.GetRandomSummoner(); if ( talisman.Summoner.IsEmpty ) { talisman.Removal = BaseTalisman.GetRandomRemoval(); if ( talisman.Removal != TalismanRemoval.None ) { talisman.MaxCharges = BaseTalisman.GetRandomCharges(); talisman.MaxChargeTime = 1200; } } else { talisman.MaxCharges = Utility.RandomMinMax( 10, 50 ); if ( talisman.Summoner.IsItem ) talisman.MaxChargeTime = 60; else talisman.MaxChargeTime = 1800; } talisman.Blessed = BaseTalisman.GetRandomBlessed(); talisman.Slayer = BaseTalisman.GetRandomSlayer(); talisman.Protection = BaseTalisman.GetRandomProtection(); talisman.Killer = BaseTalisman.GetRandomKiller(); talisman.Skill = BaseTalisman.GetRandomSkill(); talisman.ExceptionalBonus = BaseTalisman.GetRandomExceptional(); talisman.SuccessBonus = BaseTalisman.GetRandomSuccessful(); talisman.Charges = talisman.MaxCharges; return talisman; } #endregion #region Construction methods public static Item Construct( Type type ) { try { return Activator.CreateInstance( type ) as Item; } catch { return null; } } public static Item Construct( Type[] types ) { if ( types.Length > 0 ) return Construct( types, Utility.Random( types.Length ) ); return null; } public static Item Construct( Type[] types, int index ) { if ( index >= 0 && index < types.Length ) return Construct( types[index] ); return null; } public static Item Construct( params Type[][] types ) { int totalLength = 0; for ( int i = 0; i < types.Length; ++i ) totalLength += types[i].Length; if ( totalLength > 0 ) { int index = Utility.Random( totalLength ); for ( int i = 0; i < types.Length; ++i ) { if ( index >= 0 && index < types[i].Length ) return Construct( types[i][index] ); index -= types[i].Length; } } return null; } #endregion } }