Bows

bows.yml

This is the file where all custom bows behaviour and config are stored

Example bow

astral_bow:
  enabled: true
  permission: astral_bow
  model_id: 1
  name: '&fAstral bow'
  specific_properties:
    max_custom_durability: 512
    arrow_damage: 4
  enchants:
    - ARROW_FIRE:1
  events:
    shot:
      play_sound: astral_bow_shot
      glow_arrows: true

Specific properties

specific_properties:
    arrow_damage: 4

As you can see you can set custom damage for arrows shot by bow

Events

events:
    shot: #called when you shot an arrow
      play_sound: astral_bow_shot #name of the sound to be played
      glow_arrows: true #enable glowing arrows

Last updated