mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-17 16:19:12 +02:00
Pokemon Move Power ??? if null
This commit is contained in:
@@ -41,7 +41,7 @@ module.exports = class PokedexMoveCommand extends Command {
|
|||||||
.setTitle(data.name)
|
.setTitle(data.name)
|
||||||
.setDescription(data.description ? data.cleanDescription : 'No description available.')
|
.setDescription(data.description ? data.cleanDescription : 'No description available.')
|
||||||
.addField('❯ Accuracy', `${data.accuracy}%`, true)
|
.addField('❯ Accuracy', `${data.accuracy}%`, true)
|
||||||
.addField('❯ Power', data.power, true)
|
.addField('❯ Power', data.power || '???', true)
|
||||||
.addField('❯ PP', data.pp, true)
|
.addField('❯ PP', data.pp, true)
|
||||||
.addField('❯ Type', data.type, true)
|
.addField('❯ Type', data.type, true)
|
||||||
.addField('❯ Contest Type', data.contestType || 'N/A', true)
|
.addField('❯ Contest Type', data.contestType || 'N/A', true)
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "129.8.1",
|
"version": "129.8.2",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user