Skip to content

Commit

Permalink
Town idea command
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhsm committed Dec 4, 2021
1 parent 8390cc5 commit b9f7054
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions commands/townidea.js
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));
},
};

0 comments on commit b9f7054

Please sign in to comment.