-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const { SlashCommandBuilder } = require('@discordjs/builders'); | ||
|
||
module.exports = { | ||
data: new SlashCommandBuilder() | ||
.setName('townidea') | ||
.setDescription('Need an idea on what to build or do next?'), | ||
async execute(interaction) { | ||
const ideas = ["Every town needs a bakery!", "Do you have a warm nursery with clothes for babies?", "A fireplace room is a lovely addition to a house!", "A tavern with a distillery out back would be perfect for storing your beer and wine!", "Try to capture an animal from far away and make a petting zoo! (safety from bites not guranteed)", "I love the look of a blacksmith!", "How about a sewing room or a tailors cottage?", "An airport so you can accept visitors from far away!", "Fishing huts and docks look wonderful on a lake or sea!", "Orchards are so pretty!", "A hospital full of medical supplies would be useful!"]; | ||
return interaction.reply(Math.floor(Math.random() * ideas.length)); | ||
}, | ||
}; |