Replaces corpse name (#23)
This commit is contained in:
parent
632e8b4757
commit
6987d0c18e
367 changed files with 378 additions and 396 deletions
|
|
@ -4,9 +4,9 @@ using Server.Items;
|
|||
|
||||
namespace Server.Engines.Quests.Samurai
|
||||
{
|
||||
[CorpseName( "a cursed soul corpse" )]
|
||||
public class CursedSoul : BaseCreature
|
||||
{
|
||||
public override string CorpseName => "a cursed soul corpse";
|
||||
public override string DefaultName => "a cursed soul";
|
||||
|
||||
[Constructible]
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@ using Server.Mobiles;
|
|||
|
||||
namespace Server.Engines.Quests.Samurai
|
||||
{
|
||||
[CorpseName( "an injured wolf corpse" )]
|
||||
public class InjuredWolf : BaseCreature
|
||||
{
|
||||
public override string CorpseName => "an injured wolf corpse";
|
||||
public override string DefaultName => "an injured wolf";
|
||||
|
||||
[Constructible]
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ using Server.Items;
|
|||
|
||||
namespace Server.Engines.Quests.Samurai
|
||||
{
|
||||
[CorpseName( "a young ninja's corpse" )]
|
||||
public class YoungNinja : BaseCreature
|
||||
{
|
||||
public override string CorpseName => "a young ninja's corpse";
|
||||
public override string DefaultName => "a young ninja";
|
||||
|
||||
[Constructible]
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ using Server.Items;
|
|||
|
||||
namespace Server.Engines.Quests.Samurai
|
||||
{
|
||||
[CorpseName( "a young ronin's corpse" )]
|
||||
public class YoungRonin : BaseCreature
|
||||
{
|
||||
public override string CorpseName => "a young ronin's corpse";
|
||||
public override string DefaultName => "a young ronin";
|
||||
|
||||
[Constructible]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue