Skip to content

Instantly share code, notes, and snippets.

@xPXpanD
Created March 24, 2018 09:51
Show Gist options
  • Save xPXpanD/3aebd8710c664ebc1aa3043fc1d4377f to your computer and use it in GitHub Desktop.
Save xPXpanD/3aebd8710c664ebc1aa3043fc1d4377f to your computer and use it in GitHub Desktop.
# ------------------------------------------------------------------------------- #
# CUSTOMLEGENDARYMESSAGES CONFIGURATION FILE
#
# DEFAULT SETTINGS: 10, true, true, true, false, false, true
# DEFAULT MESSAGES:
# - "[&dPixelmon&f] &aA wild %pokemon% has spawned in a %biome% biome!"
# - "[&dPixelmon&f] &a%player% caught a wild %pokemon% with %ivpct%% IVs!"
# - "[&dPixelmon&f] &a%player% defeated a %pokemon% in battle..."
# - "[&dPixelmon&f] &bA boss %pokemon% has spawned in a %biome% biome."
# - "[&dPixelmon&f] &b%player% defeated a boss %pokemon% in battle."
# - "[&dPixelmon&f] &b%player% traded a %ivpct%% IVs %pokemon% with %target%."
#
# NEW VALUES SHOULD BE THE SAME FORMAT AS THE DEFAULTS
# ------------------------------------------------------------------------------- #
# # # Do not touch this setting unless told to! # # #
# This is used internally to check for outdated (and possibly dangerous) configs.
# If needed, we show a warning on boot. Bad commands may get disabled until fixed.
configVersion = 10
# Should we show messages for specific events? Things set "false" here won't show.
# Messages will only be shown to those people who have the matching permission.
showLegendarySpawnMessage = true
showLegendaryCatchMessage = true
showLegendaryDefeatMessage = true
showBossSpawnMessage = false
showBossDefeatMessage = false
showTradeMessage = true
# What should our specific messages be? Defaults roughly follow the Pixelmon format.
# The following placeholders are currently supported:
# %biome%, %ivpct%, %pokemon%, %player%, %target%, %world%, %xpos%, %ypos%, %zpos%
# Note: %player% and %target% are only supported on specific messages.
legendarySpawnMessage =
"[&dPixelmon&f] &aA wild %pokemon% has spawned in a %biome% biome!"
legendaryCatchMessage =
"[&dPixelmon&f] &a%player% caught a wild %pokemon% with %ivpct%% IVs!"
legendaryDefeatMessage =
"[&dPixelmon&f] &a%player% defeated a %pokemon% in battle..."
bossSpawnMessage =
"[&dPixelmon&f] &bA boss %pokemon% has spawned in a %biome% biome."
bossDefeatMessage =
"[&dPixelmon&f] &b%player% defeated a boss %pokemon% in battle."
tradeMessage =
"[&dPixelmon&f] &b%player% traded a %ivpct%% IVs %pokemon% with %target%."
# ------------------------------------------------------------------------------- #
# To reload this config on the fly, use /clmreload.
#
# Have fun! -- XpanD
# ------------------------------------------------------------------------------- #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment