using System; using Server.Items; using Server.Misc; using Server.Spells; namespace Server.Engines.Craft { public class DefInscription : CraftSystem { public override Trades MainSkill { get { return Trades.Inscribe; } } public override int GumpTitleNumber { get { return 1044009; } //
INSCRIPTION MENU
} private static CraftSystem m_CraftSystem; public static CraftSystem CraftSystem { get { if (m_CraftSystem == null) m_CraftSystem = new DefInscription(); return m_CraftSystem; } } public override double GetChanceAtMin(CraftItem item) { return 0.0; // 0% } private DefInscription() : base(1, 1, 1.25)// base( 1, 1, 3.0 ) { } public override int CanCraft(Mobile from, BaseTool tool, Type typeItem) { if (tool == null || tool.Deleted || tool.UsesRemaining < 0) return 1044038; // You have worn out your tool! else if (!BaseTool.CheckAccessible(tool, from)) return 1044263; // The tool must be on your person to use. if (typeItem != null) { object o = Activator.CreateInstance(typeItem); if (o is SpellScroll) { SpellScroll scroll = (SpellScroll)o; Spellbook book = Spellbook.Find(from, scroll.SpellID); bool hasSpell = (book != null && book.HasSpell(scroll.SpellID)); scroll.Delete(); return (hasSpell ? 0 : 1042404); // null : You don't have that spell! } else if (o is Item) { ((Item)o).Delete(); } } return 0; } public override void PlayCraftEffect(Mobile from) { from.PlaySound(0x249); } private static Type typeofSpellScroll = typeof(SpellScroll); public override int PlayEndingEffect(Mobile from, bool failed, bool lostMaterial, bool toolBroken, int quality, bool makersMark, CraftItem item) { if (toolBroken) from.SendLocalizedMessage(1044038); // You have worn out your tool if (!typeofSpellScroll.IsAssignableFrom(item.ItemType)) // not a scroll { if (failed) { if (lostMaterial) return 1044043; // You failed to create the item, and some of your materials are lost. else return 1044157; // You failed to create the item, but no materials were lost. } else { if (quality == 0) return 502785; // You were barely able to make this item. It's quality is below average. else if (makersMark && quality == 2) return 1044156; // You create an exceptional quality item and affix your maker's mark. else if (quality == 2) return 1044155; // You create an exceptional quality item. else return 1044154; // You create the item. } } else { if (failed) return 501630; // You fail to inscribe the scroll, and the scroll is ruined. else return 501629; // You inscribe the spell and put the scroll in your backpack. } } private int m_Circle, m_Mana; private enum Reg { BlackPearl, Bloodmoss, Garlic, Ginseng, MandrakeRoot, Nightshade, SulfurousAsh, SpidersSilk } private Type[] m_RegTypes = new Type[] { typeof( BlackPearl ), typeof( Bloodmoss ), typeof( Garlic ), typeof( Ginseng ), typeof( MandrakeRoot ), typeof( Nightshade ), typeof( SulfurousAsh ), typeof( SpidersSilk ) }; private int m_Index; private void AddSpell(Type type, params Reg[] regs) { double minSkill, maxSkill; switch (m_Circle) { default: case 0: minSkill = -25.0; maxSkill = 25.0; break; case 1: minSkill = -10.8; maxSkill = 39.2; break; case 2: minSkill = 03.5; maxSkill = 53.5; break; case 3: minSkill = 17.8; maxSkill = 67.8; break; case 4: minSkill = 32.1; maxSkill = 82.1; break; case 5: minSkill = 46.4; maxSkill = 96.4; break; case 6: minSkill = 60.7; maxSkill = 110.7; break; case 7: minSkill = 75.0; maxSkill = 125.0; break; } int index = AddCraft(type, 1044369 + m_Circle, 1044381 + m_Index++, minSkill, maxSkill, m_RegTypes[(int)regs[0]], 1044353 + (int)regs[0], 1, 1044361 + (int)regs[0]); for (int i = 1; i < regs.Length; ++i) AddRes(index, m_RegTypes[(int)regs[i]], 1044353 + (int)regs[i], 1, 1044361 + (int)regs[i]); AddRes(index, typeof(BlankScroll), 1044377, 1, 1044378); SetManaReq(index, m_Mana); } public override void InitCraftList() { m_Circle = 0; m_Mana = 4; AddSpell(typeof(ReactiveArmorScroll), Reg.Garlic, Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(ClumsyScroll), Reg.Bloodmoss, Reg.Nightshade); AddSpell(typeof(CreateFoodScroll), Reg.Garlic, Reg.Ginseng, Reg.MandrakeRoot); AddSpell(typeof(FeeblemindScroll), Reg.Nightshade, Reg.Ginseng); AddSpell(typeof(HealScroll), Reg.Garlic, Reg.Ginseng, Reg.SpidersSilk); AddSpell(typeof(MagicArrowScroll), Reg.SulfurousAsh); AddSpell(typeof(NightSightScroll), Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(WeakenScroll), Reg.Garlic, Reg.Nightshade); m_Circle = 1; m_Mana = 6; AddSpell(typeof(AgilityScroll), Reg.Bloodmoss, Reg.MandrakeRoot); AddSpell(typeof(CunningScroll), Reg.Nightshade, Reg.MandrakeRoot); AddSpell(typeof(CureScroll), Reg.Garlic, Reg.Ginseng); AddSpell(typeof(HarmScroll), Reg.Nightshade, Reg.SpidersSilk); AddSpell(typeof(MagicTrapScroll), Reg.Garlic, Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(MagicUnTrapScroll), Reg.Bloodmoss, Reg.SulfurousAsh); AddSpell(typeof(ProtectionScroll), Reg.Garlic, Reg.Ginseng, Reg.SulfurousAsh); AddSpell(typeof(StrengthScroll), Reg.Nightshade, Reg.MandrakeRoot); m_Circle = 2; m_Mana = 9; AddSpell(typeof(BlessScroll), Reg.Garlic, Reg.MandrakeRoot); AddSpell(typeof(FireballScroll), Reg.BlackPearl); AddSpell(typeof(MagicLockScroll), Reg.Bloodmoss, Reg.Garlic, Reg.SulfurousAsh); AddSpell(typeof(PoisonScroll), Reg.Nightshade); AddSpell(typeof(TelekinisisScroll), Reg.Bloodmoss, Reg.MandrakeRoot); AddSpell(typeof(TeleportScroll), Reg.Bloodmoss, Reg.MandrakeRoot); AddSpell(typeof(UnlockScroll), Reg.Bloodmoss, Reg.SulfurousAsh); AddSpell(typeof(WallOfStoneScroll), Reg.Bloodmoss, Reg.Garlic); m_Circle = 3; m_Mana = 11; AddSpell(typeof(ArchCureScroll), Reg.Garlic, Reg.Ginseng, Reg.MandrakeRoot); AddSpell(typeof(ArchProtectionScroll), Reg.Garlic, Reg.Ginseng, Reg.MandrakeRoot, Reg.SulfurousAsh); AddSpell(typeof(CurseScroll), Reg.Garlic, Reg.Nightshade, Reg.SulfurousAsh); AddSpell(typeof(FireFieldScroll), Reg.BlackPearl, Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(GreaterHealScroll), Reg.Garlic, Reg.SpidersSilk, Reg.MandrakeRoot, Reg.Ginseng); AddSpell(typeof(LightningScroll), Reg.MandrakeRoot, Reg.SulfurousAsh); AddSpell(typeof(ManaDrainScroll), Reg.BlackPearl, Reg.SpidersSilk, Reg.MandrakeRoot); AddSpell(typeof(RecallScroll), Reg.BlackPearl, Reg.Bloodmoss, Reg.MandrakeRoot); m_Circle = 4; m_Mana = 14; AddSpell(typeof(BladeSpiritsScroll), Reg.BlackPearl, Reg.Nightshade, Reg.MandrakeRoot); AddSpell(typeof(DispelFieldScroll), Reg.BlackPearl, Reg.Garlic, Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(IncognitoScroll), Reg.Bloodmoss, Reg.Garlic, Reg.Nightshade); AddSpell(typeof(MagicReflectScroll), Reg.Garlic, Reg.MandrakeRoot, Reg.SpidersSilk); AddSpell(typeof(MindBlastScroll), Reg.BlackPearl, Reg.MandrakeRoot, Reg.Nightshade, Reg.SulfurousAsh); AddSpell(typeof(ParalyzeScroll), Reg.Garlic, Reg.MandrakeRoot, Reg.SpidersSilk); AddSpell(typeof(PoisonFieldScroll), Reg.BlackPearl, Reg.Nightshade, Reg.SpidersSilk); AddSpell(typeof(SummonCreatureScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk); m_Circle = 5; m_Mana = 20; AddSpell(typeof(DispelScroll), Reg.Garlic, Reg.MandrakeRoot, Reg.SulfurousAsh); AddSpell(typeof(EnergyBoltScroll), Reg.BlackPearl, Reg.Nightshade); AddSpell(typeof(ExplosionScroll), Reg.Bloodmoss, Reg.MandrakeRoot); AddSpell(typeof(InvisibilityScroll), Reg.Bloodmoss, Reg.Nightshade); AddSpell(typeof(MarkScroll), Reg.Bloodmoss, Reg.BlackPearl, Reg.MandrakeRoot); AddSpell(typeof(MassCurseScroll), Reg.Garlic, Reg.MandrakeRoot, Reg.Nightshade, Reg.SulfurousAsh); AddSpell(typeof(ParalyzeFieldScroll), Reg.BlackPearl, Reg.Ginseng, Reg.SpidersSilk); AddSpell(typeof(RevealScroll), Reg.Bloodmoss, Reg.SulfurousAsh); m_Circle = 6; m_Mana = 40; AddSpell(typeof(ChainLightningScroll), Reg.BlackPearl, Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SulfurousAsh); AddSpell(typeof(EnergyFieldScroll), Reg.BlackPearl, Reg.MandrakeRoot, Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(FlamestrikeScroll), Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(GateTravelScroll), Reg.BlackPearl, Reg.MandrakeRoot, Reg.SulfurousAsh); AddSpell(typeof(ManaVampireScroll), Reg.BlackPearl, Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk); AddSpell(typeof(MassDispelScroll), Reg.BlackPearl, Reg.Garlic, Reg.MandrakeRoot, Reg.SulfurousAsh); AddSpell(typeof(MeteorSwarmScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SulfurousAsh, Reg.SpidersSilk); AddSpell(typeof(PolymorphScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk); m_Circle = 7; m_Mana = 50; AddSpell(typeof(EarthquakeScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.Ginseng, Reg.SulfurousAsh); AddSpell(typeof(EnergyVortexScroll), Reg.BlackPearl, Reg.Bloodmoss, Reg.MandrakeRoot, Reg.Nightshade); AddSpell(typeof(ResurrectionScroll), Reg.Bloodmoss, Reg.Garlic, Reg.Ginseng); AddSpell(typeof(SummonAirElementalScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk); AddSpell(typeof(SummonDaemonScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(SummonEarthElementalScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk); AddSpell(typeof(SummonFireElementalScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk, Reg.SulfurousAsh); AddSpell(typeof(SummonWaterElementalScroll), Reg.Bloodmoss, Reg.MandrakeRoot, Reg.SpidersSilk); int index = -1; index = AddCraft(typeof(TanBook), 1074906, 1072870, 30.0, 106, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(BlueBook), 1074906, 1032440, 30.0, 106, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(BrownBook), 1074906, 1073383, 30.0, 106, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(RedBook), 1074906, 1032441, 30.0, 106, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(Grimoire), 1074906, 1032431, 50.0, 116, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(Lexicon), 1074906, 1032433, 50.0, 116, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(Journal), 1074906, 1032430, 50.0, 116, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(Diary), 1074906, 1032429, 50.0, 116, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(Codex), 1074906, 1032432, 50.0, 116, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(Tome), 1074906, 1072862, 60.0, 126, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); index = AddCraft(typeof(Spellbook), 1074906, 1023834, 70.0, 126, typeof(BlankScroll), 1044377, 10, 1044378); AddRes( index, typeof( Beeswax ), 1025156, 2, 1042081 ); AddRes( index, typeof( Leather ), 1044462, 4, 1044463 ); MarkOption = true; } } }