Replaces corpse name (#23)

This commit is contained in:
Kamron Batman 2018-08-14 23:50:00 +08:00 • committed by GitHub
parent 632e8b4757
commit 6987d0c18e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
367 changed files with 378 additions and 396 deletions

View file

@ -6,9 +6,9 @@ using Server.Mobiles;
namespace Server.Mobiles
{
[CorpseName( "a killer pumpkin corpse" )]
public class PumpkinHead : BaseCreature
{
public override string CorpseName => "a killer pumpkin corpse";
public override bool AutoDispel => true;
public override bool BardImmune => true;
public override bool Unprovokable => true;

View file

@ -181,9 +181,9 @@ namespace Server.Engines.Events
}
}
[CorpseName( "a rotting corpse" )]
public class ZombieSkeleton : BaseCreature
{
public override string CorpseName => "a rotting corpse";
private static readonly string m_Name = "Zombie Skeleton";
private PlayerMobile m_DeadPlayer;