brasstax / ffrkbot

A Discord bot for Final Fantasy Record Keeper.
MIT License
4 stars 7 forks source link

Compressing ability information output #9

Closed Netmonmatt closed 7 years ago

Netmonmatt commented 7 years ago

The current command output throws out data in this format:

Ability name: Firaja Description: Magical Attack Multiplier: 9 Element: Fire Type: Black Magic Target: Single Soul Break charge: 60 Cast time: 1.8

This is quite a few lines, especially for an active chat room. Compressing the lines would make the bot much friendlier on the screen real estate and make it feel less spammy. Something like this:

Ability name: Firaja Description: Magical Attack Multiplier: 9 || Element: Fire Type: Black Magic || Target: Single Soul Break Charge: 60 || Cast Time: 1.8

Putting names and descriptions on the same line may be a problem because some descriptions are way more complex, but compressing the other data to two entries a line would kill a lot of wasted space.

brasstax commented 7 years ago

Because it makes a bit more sense, I'm going to put Type and Element in the same line, and put Target and Multiplier on the same line.

brasstax commented 7 years ago

This is done.