Advertisement
xoxfl

menu - Food Bot

Jun 15th, 2019
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. const Discord = require('discord.js');
  2. var staff = ['343569032194031630']
  3.  
  4. module.exports.run = async (bot, message, args) => {
  5.  
  6. if(message.content.includes('drink')) {
  7.  
  8. let drinks = new Discord.RichEmbed()
  9. .setTitle('Drink Menu')
  10. .setDescription('Drink menu for Indominos Pizza Place')
  11. .addField('Drink Sizes', 'Small: $1.00\nMedium: $2.50\nLarge: $4.00', true)
  12. .addField('Soda', 'Coke\nSprite\nFanta\n7up\nPepsi\nMountain Dew\nCarbonated Water', true)
  13. .addField('Other', 'Beer: $2.50\nWater: Free\nEnergy Drink: $1.50\nLemonade: $1.50\nPink Lemonade: $1.50', true)
  14. .setColor(0xff0000)
  15.  
  16. message.author.send(drinks)
  17.  
  18. message.reply('I sent the menu to your dms! :mailbox:').then(msg => msg.delete(5000))
  19.  
  20. } else {
  21. if(message.content.includes('sauce')) {
  22.  
  23. let sauce = new Discord.RichEmbed()
  24. .setTitle('Sauce Menu')
  25. .setDescription('Sauce menu for Indominos Pizza Place')
  26. .addField('All Sauces are Free', 'Yes, you read that right.', true)
  27. .addField('Sauce Choices:', 'Red sauce\nKetchup\nMustard\nRanch\nGarlic Sauce\nCheese Sauce\nMayonaise\nBarbeque Sauce', true)
  28. .addField('Other:', 'Extra Salsa and Cheese for Nachos', true)
  29. .setColor(0xff0000)
  30.  
  31. message.author.send(sauce)
  32.  
  33. message.channel.send('I sent the menu to your dms! :mailbox:').then(msg => msg.delete(5000))
  34.  
  35. } else {
  36.  
  37. if(message.content.includes('food')) {
  38.  
  39. let food = new Discord.RichEmbed()
  40. .setTitle('Menu')
  41. .setDescription('Menu for Inzomine Pizza Place')
  42. .addField('Pizza Sizes', 'Small: $1.22\nMedium: $2.99\nLarge: $3.99', true)
  43. .addField('Speacialty Pizzas', 'Hentai Pizza: $5.99\nMeme Pizza: $5.00\nBaguette Pizza (For Nightshadow): $3.50', true)
  44. .addField('Hot Wings','5 wings: $3.25\n10 wings: $6.25\n15 wings: $8.25', true)
  45. .addField('Barbeque Wings', '5 wings: $3.25\n10 wings: $6.25\n15 wings: $8.25', true)
  46. .addField('Mixed','Thanos Infinity gauntlet: $10.00\n5 Bread Sticks: $3.50\nSandwiches $5.00\n5 Cheesy Bread: $3.50\nPaste: $1.50\nNachos: $2.50',true)
  47. .addField('Standard Pizzas','Meat Loversยฎ Pizza: $5.00\nSupreme Pizza: $3.00\nCreate Your Own pizza: Free\nCHEESY BITES PIZZA: $3.99\nChicken Sandwich: $2.50\nChicken Bacon Pizza with Classic Crust: $3.00',true)
  48. .setColor(0xffd184)
  49.  
  50. message.author.send(food)
  51.  
  52. message.reply('I sent the menu to your dms! :mailbox:').then(msg => msg.delete(5000));
  53.  
  54. } else {
  55.  
  56. if(message.content.includes('dessert')) {
  57.  
  58. let dessert = new Discord.RichEmbed()
  59. .setTitle('Dessert Menu')
  60. .setDescription('Dessert Menu for inzomine Pizza Place')
  61. .addField('Ice Cream', 'Ice Cream: $1.50\nPopsicles: $1.00\nIce Cream Cake: $5.00\nIce Cream Sandwich: $1.00')
  62. .addField('Cookies', 'Cookie Brownie: $5.00\nCookie Pizza: $2.99\nChocolate Chip Cookie: $1.00\nM&M Cookie: $1.00\nChocolate Mint Cookie: $1.00', true)
  63. .addField('Cakes', 'Chocolate Lava Crunch Cake: $5.00\nChocolate Cake: $3.00\nVanilla Cake: $3.00\nCake Pop: $1.00\nCheesecake: $3.00\nPumpkin Pie: $3.00\nCupcake: $2.00\nVanilla Cake with Strawberry Icing and Ice Cream: $5.00')
  64. .addField('Other', 'Cinnamon Twists: $3.00\n10 Chocolate Covered Pretzels: $1.50\nVanilla cake covered with strawberry frosting and ice cream on top - 5$\nDonuts - $1.00\nDonut Holes - $.75')
  65.  
  66. message.author.send(dessert)
  67.  
  68. message.reply('I sent the menu to your dms! :mailbox:').then(msg => msg.delete(5000))
  69.  
  70. } else {
  71.  
  72. let main = new Discord.RichEmbed()
  73. .setTitle('Menu')
  74. .setDescription('Menu for Inzomine')
  75. .addField('For the Food menu, say', '\'+menu food\'')
  76. .addField('For the Drink menu, say', '\'+menu drink\'')
  77. .addField('For the Sauce menu, say', '\'+menu sauce\'')
  78. .addField('for the Deserts menu, say','\'+menu desert\'')
  79. .setColor(0xffd184)
  80. .setFooter('Menu Design: BrachialFlyer11 (Alex)#8265')
  81.  
  82. message.author.send(main)
  83.  
  84. message.reply('I sent the menu to your dms! :mailbox:').then(msg => msg.delete(5000));
  85. }
  86. }
  87. }
  88. }
  89. }
  90.  
  91. module.exports.help = {
  92.  
  93. name: "menu"
  94.  
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement