Mobs

Everything you need to know about mobs, from the management to the creation of custom properties!

Mobs section explained

config.yml
mobs:
  type: hearts
  enabled: true
  animation: true
  render-distance: 30
  dynamic: false
  duration: 10
  
  • type: Decides to show hearts or bars.

  • enabled: Set the duration of the hearts after the player is hit (if dynamic: true).

  • animation: Enables or Disables the white overlays for the hearts.

  • render-distance: Set how far the hearts are rendered.

  • dynamic: Shows the hearts only when the player is hit by another player.

  • duration: Set the duration of the hearts after the player is hit (if dynamic: true).

Add specific-mobs properties

Head over Cupido/mobs/minecraft.yml, there you'll be able to add custom properties that will override the default ones set in config.yml in the "mobs:" section!

Be sure to use the only existing mobs!

mobs/minecraft.yml
Mobs:
  ZOMBIE:
    type: bars
    colors:
      low: '&4'
      medium: '&6'
      high: '&a'
    hearts:
      max: 20
    bars:
      max: 180

Last updated