Fixes spelling for a new items (#162)
This commit is contained in:
parent
99b9f0a226
commit
d2f7e08de4
7 changed files with 16 additions and 16 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -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());
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue