1
0
Fork 0
mirror of https://github.com/1disk/edp445.git synced 2024-08-14 22:47:02 +00:00
edp445/functions/detections/question-yon.js
2022-11-26 15:27:07 +01:00

12 lines
No EOL
604 B
JavaScript

module.exports = (msc, author) => {
var detections = [" do ", ' are ', ' does ', ' is ', ' has ', ' can we ', ' can you ', ' can i ', ' am i ', ' am ', ' im ', "?"]
var replies = [`${msc}`,'no way','nahhh',`yeah ${author}`, 'yes', 'nah','no', 'idk', 'maybe?', 'definitely', 'https://cdn.discordapp.com/attachments/1009383133726130216/1043821892102012938/trim.9B58117E-87CA-4B8F-A6AE-DEE69B944AC0.mov']
var reply = replies[Math.floor(Math.random() * replies.length)]
var donejson = {
detections:detections,
replies:replies,
reply:reply
}
return donejson
}