19 lines
775 B
JavaScript
19 lines
775 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
const { tree } = require('../modules/functions.js');
|
|
const fn = require('../modules/functions.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('watertime')
|
|
.setDescription('Calculate the watering time for a given tree height')
|
|
.addStringOption(o =>
|
|
o.setName('height')
|
|
.setDescription('Tree height in feet, numbers ONLY')
|
|
.setRequired(true)),
|
|
async execute(interaction) {
|
|
await interaction.deferReply();
|
|
const treeHeight = interaction.options.getString('height');
|
|
const waterTime = Math.floor(Math.floor(Math.pow(treeHeight * 0.07 + 5, 1.1)) / 60);
|
|
await interaction.editReply(`A tree that is ${treeHeight}ft tall will have a watering time of ${waterTime} minutes.`);
|
|
},
|
|
}; |