edp445/functions/detections/additional-reaction.js

19 lines
449 B
JavaScript
Raw Normal View History

2022-11-25 20:37:31 +00:00
module.exports = (msc, author) => {
var detections = ['fuck me', '😭', 'bound']
var reply = 'bruhh i broke again nawhh'
if(msc.includes('fuck me')){
reply = 'alr bet 😏'
2022-11-25 20:37:31 +00:00
} else if(msc.includes('😭')){
reply = 'cry more nerd'
} else if(msc.includes('bound')){
reply = '2 falling in vloveee'
}
var donejson = {
detections:detections,
reply:reply
}
return donejson
}