dbot/modules/rain/rain.js

28 lines
651 B
JavaScript
Raw Normal View History

/**
* Module Name: Rain
* Description: Quietly judges your choice of climate.
*/
var request = require('request'),
_ = require('underscore')._;
var rain = function(dbot) {
var commands = {
'~rain': function(event) {
2013-01-30 13:27:08 +01:00
var apikey = dbot.config.rain.apikey;
var precip = event.params[1];
var score = 2 * Math.pow(precip,0.5);
score = Math.ceil(score);
if (score > 10) { score = 11; }
event.reply(dbot.t("rain-"+score));
}
};
this.commands = commands;
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
return new rain(dbot);
};