This repository has been archived on 2025-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
shiro-calculator/commands/estimate.js
koneko 6b58361d31
All checks were successful
Deploy bot / build-and-deploy (push) Successful in 13s
a little more
2025-08-08 01:08:16 +02:00

11 lines
493 B
JavaScript

exports.name = "estimate";
exports.description =
":money_with_wings: Give an estimated price of certain items in cv.";
exports.usage = "<<estimate [explanation of what you want to price]";
exports.example =
"<<estimate 1600 monk dps\n<<estimate 1100 thp\n<<estimate 2400 app builder staff\n(do not include armor type or any superflous data)";
exports.hidden = true;
exports.run = async (client, message, args) => {
message.channel.send(":sob: im still wokring on this one...");
};