Add DefaultName property to Mobiles & Items (#18)

This commit is contained in:
Kamron Batman 2018-08-09 17:18:41 -07:00 committed by GitHub
parent b06f5bf60d
commit 8ee42c8ea2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
713 changed files with 5112 additions and 4987 deletions

View file

@ -8,14 +8,14 @@ namespace Server.Mobiles
[CorpseName( "an evil corpse" )]
public class UnholyFamiliar : BaseCreature
{
public override bool IsDispellable { get { return false; } }
public override bool IsBondable { get { return false; } }
public override bool IsDispellable => false;
public override bool IsBondable => false;
public override string DefaultName => "a dark wolf";
[Constructible]
public UnholyFamiliar()
: base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
{
Name = "a dark wolf";
Body = 99;
BaseSoundID = 0xE5;
@ -83,4 +83,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
}
}

View file

@ -8,11 +8,11 @@ namespace Server.Mobiles
[CorpseName( "an unholy corpse" )]
public class UnholySteed : BaseMount
{
public override bool IsDispellable { get { return false; } }
public override bool IsBondable { get { return false; } }
public override bool IsDispellable => false;
public override bool IsBondable => false;
public override bool HasBreath { get { return true; } }
public override bool CanBreath { get { return true; } }
public override bool HasBreath => true;
public override bool CanBreath => true;
[Constructible]
public UnholySteed()
@ -88,4 +88,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
}
}

View file

@ -8,14 +8,15 @@ namespace Server.Mobiles
[CorpseName( "a holy corpse" )]
public class HolyFamiliar : BaseCreature
{
public override bool IsDispellable { get { return false; } }
public override bool IsBondable { get { return false; } }
public override bool IsDispellable => false;
public override bool IsBondable => false;
public override string DefaultName => "a silver wolf";
[Constructible]
public HolyFamiliar()
: base( AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
{
Name = "a silver wolf";
Body = 100;
BaseSoundID = 0xE5;
@ -83,4 +84,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
}
}

View file

@ -8,11 +8,11 @@ namespace Server.Mobiles
[CorpseName( "a holy corpse" )]
public class HolySteed : BaseMount
{
public override bool IsDispellable { get{ return false; } }
public override bool IsBondable { get { return false; } }
public override bool IsDispellable => false;
public override bool IsBondable => false;
public override bool HasBreath { get { return true; } }
public override bool CanBreath { get { return true; } }
public override bool HasBreath => true;
public override bool CanBreath => true;
[Constructible]
public HolySteed()
@ -88,4 +88,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
}
}