Throwables

You can create custom throwable items! They will act like Snowballs, Ender Eyes or Ender Pearl

throwables.yml

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

Example throwable:

granade:
  enabled: true
  permission: granade
  model_id: 1
  vanilla_type: SNOWBALL #throwable type
  name: '&fGranade'
  events:
    throw: #when you throw the snowball
      play_effect: SMOKE
    hit_ground:
      explode: 2 # spawns an explosion of size: 2
  craft_recipe:
    enabled: true
    amount: 4
    pattern:
      - XSX
      - PTP
      - XPX
    ingredients:
      S: STRING
      T: TNT
      P: plastic_plate

Last updated