minecraftcommandapi
Version:
An API, which provides functions to generate Minecraft Commands
26 lines (25 loc) • 617 B
TypeScript
import { Mob, IMob } from '../../core';
import { IZombieTag } from './';
/**
* @name IZombie
* @description
* Zombies are common, undead hostile mobs that come in many variants.
*/
export interface IZombie extends IMob {
}
/**
* @name Zombie
* @description
* Zombies are common, undead hostile mobs that come in many variants.
*/
export declare class Zombie extends Mob implements IZombie {
/**
* @description
* Initializes the Zombie
*/
constructor();
/**
* Tags which modify the entity with your given values.
*/
readonly Tag: IZombieTag;
}