ggejs
Version:
A powerful Node.js module for interacting with the server of Goodgame Empire & Goodgame Empire: Four Kingdoms
11 lines (9 loc) • 402 B
JavaScript
const HeroBoosterShop = require("./HeroBoosterShop");
const Good = require("../Good");
class CastlePrimeDayBoostWoodPremiumShop extends HeroBoosterShop {
/** @param {BaseClient} client*/
constructor(client) {
super(client, "titleID", "shortInfoTextID", "buyQuestionTextID", new Good(["C2", 0]), "heroName", 13, 1);
}
}
module.exports = CastlePrimeDayBoostWoodPremiumShop