using System; using System.Collections.Generic; using System.Text; namespace Substrate.Entities { using Substrate.NBT; public class EntityPigZombie : EntityMob { public static readonly NBTCompoundNode PigZombieSchema = MobSchema.MergeInto(new NBTCompoundNode("") { new NBTStringNode("id", "PigZombie"), }); public EntityPigZombie () : base("PigZombie") { } public EntityPigZombie (Entity e) : base(e) { } #region INBTObject Members public override bool ValidateTree (NBT_Value tree) { return new NBTVerifier(tree, PigZombieSchema).Verify(); } #endregion #region ICopyable Members public override Entity Copy () { return new EntityPigZombie(this); } #endregion } }