ggejs
Version:
A powerful Node.js module for interacting with the server of Goodgame Empire & Goodgame Empire: Four Kingdoms
11 lines (9 loc) • 406 B
JavaScript
const BasicMessage = require("./BasicMessage");
const Localize = require("../../tools/Localize");
class AttackCountThresholdMessage extends BasicMessage {
parseMetaData(client, metaArray) {
this.subject = Localize.text(client, "title_attack_threshold");
this.senderName = Localize.text(client, "dialog_messages_system");
}
}
module.exports = AttackCountThresholdMessage;