This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2015-07-03 11:26:41 -06:00

47 lines
874 B
C#

using System;
using TrueCraft.API;
namespace TrueCraft.Core.Entities
{
public class GhastEntity : MobEntity
{
public override Size Size
{
get
{
return new Size(4.0);
}
}
public override short MaxHealth
{
get
{
return 10;
}
}
public override sbyte MobType
{
get
{
return 56;
}
}
public override bool BeginUpdate()
{
// Ghasts can fly, no need to work out gravity
// TODO: Think about how to deal with walls and such
return false;
}
public override bool Friendly
{
get
{
return false;
}
}
}
}