Fixes spelling for a new items (#162)

This commit is contained in:
Kamron Batman 2020-06-12 12:50:38 -07:00 committed by GitHub
parent 99b9f0a226
commit d2f7e08de4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 16 additions and 16 deletions

View file

@ -75,7 +75,7 @@ namespace Server.Engines.Craft
AddCraft(typeof(BarrelLid), 1044294, 1027608, 11.0, 36.0, typeof(Log), 1044041, 4, 1044351);
AddCraft(typeof(ShortMusicStand), 1044294, 1044313, 78.9, 103.9, typeof(Log), 1044041, 15, 1044351);
AddCraft(typeof(TallMusicStand), 1044294, 1044315, 81.5, 106.5, typeof(Log), 1044041, 20, 1044351);
AddCraft(typeof(Easle), 1044294, 1044317, 86.8, 111.8, typeof(Log), 1044041, 20, 1044351);
AddCraft(typeof(Easel), 1044294, 1044317, 86.8, 111.8, typeof(Log), 1044041, 20, 1044351);
if (Core.SE)
{

View file

@ -210,7 +210,7 @@ namespace Server.Engines.Craft
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(TelekinesisScroll), 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);

View file

@ -2,12 +2,12 @@ namespace Server.Items
{
[Furniture]
[Flippable(0xF65, 0xF67, 0xF69)]
public class Easle : Item
public class Easel : Item
{
[Constructible]
public Easle() : base(0xF65) => Weight = 25.0;
public Easel() : base(0xF65) => Weight = 25.0;
public Easle(Serial serial) : base(serial)
public Easel(Serial serial) : base(serial)
{
}
@ -28,4 +28,4 @@ namespace Server.Items
Weight = 25.0;
}
}
}
}

View file

@ -1,13 +1,13 @@
namespace Server.Items
{
public class TelekinisisScroll : SpellScroll
public class TelekinesisScroll : SpellScroll
{
[Constructible]
public TelekinisisScroll(int amount = 1) : base(20, 0x1F41, amount)
public TelekinesisScroll(int amount = 1) : base(20, 0x1F41, amount)
{
}
public TelekinisisScroll(Serial serial) : base(serial)
public TelekinesisScroll(Serial serial) : base(serial)
{
}

View file

@ -1265,7 +1265,7 @@ namespace Server.Misc
PackItem(new PoisonScroll());
break;
case 20:
PackItem(new TelekinisisScroll());
PackItem(new TelekinesisScroll());
break;
case 21:
PackItem(new TeleportScroll());

View file

@ -185,7 +185,7 @@ namespace Server
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(TelekinesisScroll), 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),