๐ŸŒ˜
Bloodmoon Advanced
  • Bloodmoon Advanced
  • โ“FAQ
  • ๐Ÿ“šGuides
    • Enable bloodmoon for your world
    • How to use commands in console
    • Use custom sounds
  • General
    • Commands & Permissions
  • โฐSCHEDULES
    • Introduction
    • Commands
    • Properties
  • ๐ŸšงSIGNS
    • Introduction
    • Overview
  • ๐Ÿ’€Mobs
    • Introduction
    • Properties
    • Commands
    • Spawn mechanics
    • Boss
    • Mythic mobs
  • ๐Ÿ“ฆItems
    • Introduction
    • Commands
  • ๐ŸŒก๏ธLifecycles
    • Introduction
    • Commands
  • ๐ŸŽฌActions
    • Introduction
    • Commands
  • ๐Ÿ’€Death Actions
    • Introduction
  • โฒ๏ธ Events
    • Introduction
    • Stop Event
    • Death Event
    • Heal Event
    • Lightning Event
    • Potion effect Event
    • Teleport Event
    • Swap Event
    • Reinforcement Event
    • Dash Event
    • Speak Event
    • Respawn Event
    • Explode Event
    • Sound Event
    • Vanish Event
    • Shield Event
  • Placeholder API
    • Overview of placeholders
  • ๐Ÿ“„Configs
    • config.yml
    • mobs.yml
    • actions.yml
    • lifecycles.yml
    • items.yml
    • messages.yml
    • schedules.yml
  • ๐Ÿ–‡๏ธAPI
    • Introduction
    • API docs
Powered by GitBook
On this page
  • What are custom mobs?
  • How to define a custom mob
  • Creating a mob using a command

Was this helpful?

  1. Mobs

Introduction

Quick and simple introduction to the bloodmoon mobs.

PreviousOverviewNextProperties

Last updated 5 years ago

Was this helpful?

What are custom mobs?

Custom mobs are configurable mobs that allow you to completely personalize mobs including name, health, speed, etc ...

How to define a custom mob

mobs:
  reinforced-creeper:
    type: CREEPER
    name: '&cReinforced &2Creeper'
    percentage: 40.0
    health: 20.0
    speed: 0.3
    explosion-radius: 6
    lifecycle: reinforced-creeper

We have a custom mob named "reinforced-creeper". The type of that mob is CREEPER, the speed is 0.3 with a health of 20.

You can also see , it has a property "explosion-radius". If we take a closer look at this property, we can see that this property is specific to certain mob types only. In this case, it's only for the mob type CREEPER.

Creating a mob using a command

The recommended way of creating mobs is using the commands. This will add all the necessary properties with default values.

Example

/bloodmoon mob create harrythebee BEE
/bloodmoon mob set name harrythebee &4harry

The above command will create a new custom mob with id "harrythebee". The second command will set the display name of the mob to a custom name "Harry".

If we take a look in the , we can take the following example:

You can read more about properties by clicking

You can read more about mob commands by clicking

๐Ÿ’€
mobs.yml
here
here