monster

A monster mob in the game.

mobs.monster(MonsterMob.Creeper);

Parameters

  • name: the type of the monster

Difficulty level for monster mobs

To spawn ||mobs:monster|| mobs, the difficulty level for your world must be set to something that is greater than Peaceful, such as Easy, Normal, or Hard.

Example

Spawn a spider near the player when the arachnid command is typed in chat.

player.onChat("arachnid", function () {
    gameplay.setDifficulty(HARD)
    mobs.spawn(mobs.monster(MonsterMob.Spider), pos(5, 0, 0))
})

See also

||mobs:spawn||