UNPKG

minecraftcommandapi

Version:

An API, which provides functions to generate Minecraft Commands

30 lines (29 loc) 797 B
import { MobTagData } from '../../core'; /** * @name IMobTagData * @description * This interface represents the real Tags, which get converted to JSON String, when * the command is getting generated. */ export interface IZombieTagData extends MobTagData { /** * @name CanBreakDoors * @description * If the zombie can break doors */ CanBreakDoors: Boolean; } /** * @name ZombieTagData * @description * This class represents the real Tags, which get converted to JSON String, when * the command is getting generated. */ export declare class ZombieTagData extends MobTagData implements IZombieTagData { /** * @name CanBreakDoors * @description * If the zombie can break doors */ CanBreakDoors: Boolean; }