mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
More holidays and more hats
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 82 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 8.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 64 KiB |
@@ -78,5 +78,20 @@
|
|||||||
"file": "witch.png",
|
"file": "witch.png",
|
||||||
"comment": "Whatcha got in that cauldron, {{user}}?",
|
"comment": "Whatcha got in that cauldron, {{user}}?",
|
||||||
"commentMe": "Ahahahaha! Want a taste of my potion?"
|
"commentMe": "Ahahahaha! Want a taste of my potion?"
|
||||||
|
},
|
||||||
|
"mario": {
|
||||||
|
"file": "mario.png",
|
||||||
|
"comment": "It's-a-you, Mario!",
|
||||||
|
"commentMe": "It's-a-me, Mario!"
|
||||||
|
},
|
||||||
|
"yoda": {
|
||||||
|
"file": "yoda.png",
|
||||||
|
"comment": "May the force be with you.",
|
||||||
|
"commentMe": "May the force be with... Me."
|
||||||
|
},
|
||||||
|
"superhero": {
|
||||||
|
"file": "superhero.png",
|
||||||
|
"comment": "What's your superpower, {{user}}?",
|
||||||
|
"commentMe": "Oh my! You know my secret identity!"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,5 +55,26 @@
|
|||||||
"month": 3,
|
"month": 3,
|
||||||
"day": 17,
|
"day": 17,
|
||||||
"activity": "Make sure you wear green today!"
|
"activity": "Make sure you wear green today!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Star Wars Day",
|
||||||
|
"hat": "yoda",
|
||||||
|
"month": 5,
|
||||||
|
"day": 4,
|
||||||
|
"activity": "May the fourth be with you."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Batman Day",
|
||||||
|
"hat": "superhero",
|
||||||
|
"month": 9,
|
||||||
|
"day": 15,
|
||||||
|
"activity": "I'm Batman."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Mario Day",
|
||||||
|
"hat": "mario",
|
||||||
|
"month": 3,
|
||||||
|
"day": 10,
|
||||||
|
"activity": "It's-a-me, Mario!"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -39,6 +39,16 @@ module.exports = class HatCommand extends Command {
|
|||||||
name: 'Becel',
|
name: 'Becel',
|
||||||
url: 'https://www.becel.ca/en-ca',
|
url: 'https://www.becel.ca/en-ca',
|
||||||
reason: 'Becel Hat Image'
|
reason: 'Becel Hat Image'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Nintendo',
|
||||||
|
url: 'https://www.nintendo.com/',
|
||||||
|
reason: 'Mario Hat Image'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Star Wars',
|
||||||
|
url: 'https://www.starwars.com/',
|
||||||
|
reason: 'Yoda Hat Image'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
args: [
|
args: [
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "159.4.1",
|
"version": "159.4.2",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -71,7 +71,8 @@ module.exports = class AvatarChanger {
|
|||||||
name: 'Thanksgiving',
|
name: 'Thanksgiving',
|
||||||
hat: 'pilgrim',
|
hat: 'pilgrim',
|
||||||
month: day.getUTCMonth(),
|
month: day.getUTCMonth(),
|
||||||
day: day.getUTCDate()
|
day: day.getUTCDate(),
|
||||||
|
activity: 'Happy Thanksgiving!'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user