Add final instructions to initial battle messages

This commit is contained in:
Dragon Fire
2021-02-09 21:50:18 -05:00
parent d0062ffad6
commit 525d26437b
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "xiao", "name": "xiao",
"version": "129.1.1", "version": "129.1.2",
"description": "Your personal server companion.", "description": "Your personal server companion.",
"main": "Xiao.js", "main": "Xiao.js",
"scripts": { "scripts": {
+1
View File
@@ -28,6 +28,7 @@ module.exports = class Battler {
`; `;
if (this.battle.turn === 1 || this.battle.turn === 2) { if (this.battle.turn === 1 || this.battle.turn === 2) {
content += '\n\n_Special uses 25 MP whether or not it hits. Cure takes remaining MP and heals half that amount._'; content += '\n\n_Special uses 25 MP whether or not it hits. Cure takes remaining MP and heals half that amount._';
content += '\n_To use Final, you must have under 100 HP and over 50 MP. Final can only be used once!_'
} }
await msg.say(content); await msg.say(content);
const filter = res => { const filter = res => {