diff options
| author | Unknown <Alee14498@gmail.com> | 2017-10-26 21:14:53 -0400 |
|---|---|---|
| committer | Unknown <Alee14498@gmail.com> | 2017-10-26 21:14:53 -0400 |
| commit | 8fee30c213e22c5fe2c3553d65c5040d1ba17118 (patch) | |
| tree | 8c6657ef4f0d928c7a60d1b9c309bdd953c5421b | |
| parent | b6fc0238294bea930df3083db667941ad6d21324 (diff) | |
| download | AstralQuote-ATC-8fee30c213e22c5fe2c3553d65c5040d1ba17118.tar.gz AstralQuote-ATC-8fee30c213e22c5fe2c3553d65c5040d1ba17118.tar.bz2 AstralQuote-ATC-8fee30c213e22c5fe2c3553d65c5040d1ba17118.zip | |
New quotes
| -rw-r--r-- | bot.js | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -26,7 +26,7 @@ function GetQuoteOfTheDay(quoteNum = -1) { var url; if (quoteNum == -1) { - quoteNum = Math.floor(Math.random() * 1000) % 16; + quoteNum = Math.floor(Math.random() * 1000) % 18; } //New quotes should be kept clean. No expletives or really anything you don't want a 3 year old to see. Thanks :) @@ -143,6 +143,22 @@ function GetQuoteOfTheDay(quoteNum = -1) { quote = "@Derpy ♀ For your own fucking good, learn what political correctness is."; year = "2017"; url = "https://cdn.discordapp.com/attachments/371830028381454337/372263065472729088/2017-10-24_01.58.19.png" + break; + case 16: + author = "Victor Tran"; + authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg"; + quote = "But couldn't you at least put the mounted disks on the dick or on Dinder?\nDOCK"; + year = "2017"; + url = "https://www.example.com"; // TODO: Find a URL + break; + case 17: + author = "Victor Tran"; + authorImage = "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/photo.jpg"; + quote = "Just happened one gay?\nDAY\nOH BOY\nI BLAME SWIPE TYPING"; + year = "2017"; + url = "https://www.example.com"; // TODO: Find a URL + break; + } QuoteOfTheDay.setAuthor(author, authorImage); |
