-
Notifications
You must be signed in to change notification settings - Fork 16
Messages.json
Unariginal edited this page Sep 4, 2025
·
4 revisions
{
"prefix": "<dark_gray>[</dark_gray><color:#ffbf00>RAID<dark_gray>]</dark_gray>",
"raid_start_command": "",
"messages": {
"start_pre_phase": "%prefix% A raid is starting against %boss.name%!",
"start_fight_phase": "%prefix% Time to fight %boss.name% (%boss.maxhp% HP)!",
"boss_defeated": "%prefix% %boss.name% has been defeated in %raid.defeat_time%!",
"catch_phase_warning": "%prefix% Prepare to catch %boss.name%!",
"start_catch_phase": "%prefix% Time to catch %boss.name%!",
"catch_phase_end": "%prefix% Catch phase completed!",
"raid_end": "%prefix% The %boss.name% raid has finished.",
"out_of_time": "%prefix% %boss.name% was not defeated in time!",
"not_enough_players": "%prefix% There weren't enough players to start the raid!",
"player_damage_report": "%prefix% %raid.player% did %raid.player.damage% to the boss!",
"no_active_raids": "%prefix% There are no active raids!",
"no_queued_raids": "%prefix% There are no queued raids!",
"no_available_locations": "%prefix% Failed to start raid. All possible locations are busy.",
"joined_raid": "%prefix% You've successfully joined the %boss.name% raid!",
"warning_no_pass": "%prefix% This raid requires a pass to join!",
"warning_already_joined_raid": "%prefix% You've already joined a raid!",
"warning_no_pass_needed": "%prefix% You don't need a pass for this raid!",
"warning_not_joinable": "%prefix% This raid is not joinable!",
"warning_no_pokemon": "%prefix% You can't enter a raid with no pokemon!",
"warning_banned_pokemon": "%prefix% %banned.pokemon% is banned from raids!",
"warning_banned_move": "%prefix% %banned.move% is banned from raids!",
"warning_banned_ability": "%prefix% %banned.ability% is banned from raids!",
"warning_banned_held_item": "%prefix% %banned.held_item% is banned from raids!",
"warning_banned_bag_item": "%prefix% %banned.bag_item% is banned from raids!",
"warning_max_players": "%prefix% This raid is full!",
"warning_minimum_level": "%prefix% Your pokemon must be above level %boss.minimum_level%!",
"warning_maximum_level": "%prefix% Your pokemon must be below level %boss.maximum_level%!",
"warning_cooldown": "%prefix% You're on cooldown!",
"warning_battle_during_raid": "%prefix% You can't battle wild pokemon during a raid!",
"warning_not_your_encounter": "%prefix% This isn't your catch encounter!",
"warning_not_your_raid_pokeball": "%prefix% That isn't your raid pokeball!",
"warning_raid_pokeball_outside_raid": "%prefix% You can't use raid pokeballs outside of a raid!",
"warning_not_catch_phase": "%prefix% You can only use this during the catch phase!",
"warning_deny_normal_pokeball": "%prefix% You can only use raid pokeballs in a raid!",
"used_voucher": "%prefix% You've successfully started a raid for %boss.name%!",
"queue_item_cancelled": "%prefix% You've cancelled the queue for %boss.name%!",
"added_to_queue": "%prefix% %boss.name% has been added to the queue!",
"reload_command": "%prefix% Reloaded!",
"raid_stopped": "%prefix% You've stopped the raid against %boss.name%!",
"give_command_invalid_category": "%prefix% Category %category% does not exist!",
"give_command_invalid_pokeball": "%prefix% Pokeball %pokeball% does not exist!",
"give_command_invalid_boss": "%prefix% Boss %boss% does not exist!",
"give_command_failed_to_give": "%prefix% Failed to give the item!",
"give_command_received_item": "%prefix% You received %amount% raid %raid_item%!",
"give_command_feedback": "%prefix% Successfully gave %target% %amount% raid %raid_item%",
"checkbanned_command_no_banned_pokemon": "%prefix% There are no banned pokemon!",
"checkbanned_command_no_banned_moves": "%prefix% There are no banned moves!",
"checkbanned_command_no_banned_abilities": "%prefix% There are no banned abilities!",
"checkbanned_command_no_banned_held_items": "%prefix% There are no banned held items!",
"checkbanned_command_no_banned_bag_items": "%prefix% There are no banned bag items!",
"leaderboard_message_header": "------- Raid Results -------",
"leaderboard_message_item": " - [%raid.player.place%] %raid.player% : %raid.player.damage% damage",
"leaderboard_individual": "You placed %raid.player.place%%place_suffix% with %raid.player.damage% damage!"
},
"discord": {
"webhook_toggle": false,
"blacklisted_categories": [],
"blacklisted_bosses": [],
"webhook_url": "https://discord.com/api/webhooks/your_webhook_url",
"webhook_username": "Raid Alert!",
"webhook_avatar_url": "https://cdn.modrinth.com/data/MdwFAVRL/e54083a07bcd9436d1f8d2879b0d821a54588b9e.png",
"role_ping": "<@&role_id_here>",
"webhook_update_rate_seconds": 15,
"delete_if_no_fight_phase": true,
"raid_start": {
"enabled": true,
"embed_title": "%boss.name% Raid Has Started",
"fields": [
{
"inline": false,
"name": "Players: %raid.player_count%/%raid.max_players%",
"value": "Join Now Using `%raid.join_method%`!"
}
]
},
"raid_running": {
"enabled": true,
"embed_title": "%boss.name% Raid In Progress!",
"fields": [
{
"inline": false,
"name": "Current Health",
"value": "%boss.currenthp%/%boss.maxhp% HP"
},
{
"inline": false,
"name": "Current Leaderboard",
"value": "",
"insert_leaderboard_after": true
}
],
"leaderboard_field_layout": {
"inline": false,
"name": "%raid.player.place%. %raid.player%:",
"value": "%raid.player.damage% damage"
}
},
"raid_end": {
"enabled": true,
"embed_title": "%boss.name% Raid Has Ended",
"fields": [
{
"inline": false,
"name": "------- Raid Results -------",
"value": "",
"insert_leaderboard_after": true
}
],
"leaderboard_field_layout": {
"inline": false,
"name": "%raid.player.place%. %raid.player%:",
"value": "%raid.player.damage% damage"
}
},
"raid_failed": {
"enabled": true,
"embed_title": "Failed To Defeat %boss.name%!",
"fields": [
{
"inline": false,
"name": "Dealt %raid.total_damage%/%boss.maxhp% damage!",
"value": "",
"insert_leaderboard_after": false
}
]
}
}
}