Configuration - RalphORama/MoreMeat GitHub Wiki

What the settings in config.yml do

##   enabled:   enable that specific drop
##   dropName:  Prefixed with "Raw" or "Cooked" (e.g. Ocelot -> "Raw Ocelot")
##   entity:    The entity type that produces this drop
##              See http://s.ralph.sh/EntityTypes for a list of possible values.
##   foodBase:  The base item, e.g. CHICKEN for Raw Chicken
##              See https://s.ralph.sh/Materials for a list of possible values.
##   minDrops:  The minimum number of items dropped.
##              Must be between 0 and 64 (inclusive) and less than maxDrops.
##   maxDrops:  The maximum number of items dropped.
##              Must be between 0 and 64 (inclusive) and greater than minDrops.

# Enables or disables the whole plugin
enabled: true

# Settings for player drops
# NB: dropName works slightly differently for players.
players:
  enabled: true
  # Set useDropNameInsteadOfUsernameto `true` to use a generic drop name for player meat.
  # This will allow player meat to stack easier, but all drops will be labeled "(Raw/Cooked) <dropName>"
  # If useDropNameInsteadOfUsernameis `false`, player drops will be named "<Username>'s Flesh"
  useDropNameInsteadOfUsername: false
  # Only used if useDropNameInsteadOfUsernameis true.
  dropName: Human Flesh
  entity: PLAYER
  foodBase: BEEF
  minDrops: 1
  maxDrops: 3

# Settings for other mobs.
# See the top of this file for option usage.
meats:
  ocelot:
    enabled: true
    dropName: Ocelot
    entity: OCELOT
    foodBase: RABBIT
    minDrops: 0
    maxDrops: 2
  bat:
    enabled: true
    dropName: Bat
    entity: BAT
    foodBase: CHICKEN
    minDrops: 0
    maxDrops: 1
  parrot:
    enabled: true
    dropName: Parrot
    entity: PARROT
    foodBase: CHICKEN
    minDrops: 1
    maxDrops: 1
  cat:
    enabled: true
    dropName: Cat
    entity: CAT
    foodBase: RABBIT
    minDrops: 1
    maxDrops: 1

# Please don't touch this!
version: 1

Note: This page exists because of issue #2. If you want to help out, go see if you can suggest an answer. Thanks!

⚠️ **GitHub.com Fallback** ⚠️