deathnote fixes

master
Kit Kasune 3 years ago
parent 90981829aa
commit 9f1025bafe
  1. 12
      commands/fun/deathnote.js

@ -8,17 +8,19 @@ const {TagFilter} = require('../../util/tagfilter');
const deaths = [ const deaths = [
"watching too much anime", "an overdose of waifus", "Hypotakunemia", "trying to self-isekai", "watching too much anime", "an overdose of waifus", "Hypotakunemia", "trying to self-isekai",
"Bass:tm:", "cranking the music just a little too loud", "trying to swim in lava", "an unknown cause", "Bass:tm:", "cranking the music just a little too loud", "trying to swim in lava",
"Despacito", "something really cliche and unoriginal", "'shrooms", "Despacito", "something really cliche and unoriginal", "'shrooms",
"clicking 'I agree' without reading the Terms of Service", "alchemy", "rusty spoons", "clicking 'I agree' without reading the Terms of Service", "alchemy", "rusty spoons",
"picking the wrong waifu", "body pillows", "fur-con", "something to do with lamb sauce", "picking the wrong waifu", "body pillows", "fur-con", "something to do with lamb sauce",
"grandma's cookies" "grandma's cookies", "trying to get cat ears", "not reading the assembly instructions for that ikea furniture",
"the wrong kind of coke", "getting cancelled irl", "getting their credit card declined",
"finishing the last episode", "posting memes in #general"
]; // a list of preset death methods that can occur ]; // a list of preset death methods that can occur
const before = [ const before = [
"A name is being written...", "Someone will perish soon...", "A body is *about* to be discovered...", "A name is being written...", "Someone will perish soon...", "A body is *about* to be discovered...",
"{p} is scribbling something in their notebook...", "\*Manical laughter echoes around you*...", "{w} is scribbling something in their notebook...", "\*Manical laughter echoes around you*...",
"{p} laughs maniacally..." "{w} laughs maniacally..."
]; // things it says before the response is sent ]; // things it says before the response is sent
const responses = { const responses = {
@ -102,7 +104,7 @@ module.exports = {
let victim = options.victim && options.victim.length ? options.victim : message.mentions.members.first().displayName; let victim = options.victim && options.victim.length ? options.victim : message.mentions.members.first().displayName;
let killer = message.member; let killer = message.member;
let pretext = before[Math.floor(Math.random() * before.length)].replace(/{p}/g, victim); let pretext = before[Math.floor(Math.random() * before.length)].replace(/{w}/g, killer.displayName);
let note = await message.channel.send({embeds: [new Discord.MessageEmbed() let note = await message.channel.send({embeds: [new Discord.MessageEmbed()
.setDescription(pretext) .setDescription(pretext)

Loading…
Cancel
Save