Replaces corpse name (#23)
This commit is contained in:
parent
632e8b4757
commit
6987d0c18e
367 changed files with 378 additions and 396 deletions
|
|
@ -5,9 +5,9 @@ using Server.Mobiles;
|
|||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
[CorpseName( "an evil corpse" )]
|
||||
public class UnholyFamiliar : BaseCreature
|
||||
{
|
||||
public override string CorpseName => "an evil corpse";
|
||||
public override bool IsDispellable => false;
|
||||
public override bool IsBondable => false;
|
||||
public override string DefaultName => "a dark wolf";
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ using Server.Ethics;
|
|||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
[CorpseName( "an unholy corpse" )]
|
||||
public class UnholySteed : BaseMount
|
||||
{
|
||||
public override string CorpseName => "an unholy corpse";
|
||||
public override bool IsDispellable => false;
|
||||
public override bool IsBondable => false;
|
||||
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ using Server.Mobiles;
|
|||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
[CorpseName( "a holy corpse" )]
|
||||
public class HolyFamiliar : BaseCreature
|
||||
{
|
||||
public override string CorpseName => "a holy corpse";
|
||||
public override bool IsDispellable => false;
|
||||
public override bool IsBondable => false;
|
||||
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ using Server.Mobiles;
|
|||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
[CorpseName( "a holy corpse" )]
|
||||
public class HolySteed : BaseMount
|
||||
{
|
||||
public override string CorpseName => "a holy corpse";
|
||||
public override bool IsDispellable => false;
|
||||
public override bool IsBondable => false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue