@ginstone/nga-api
Version:
18 lines (17 loc) • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Medal = void 0;
/**
* 徽章
*/
class Medal {
constructor(raw) {
this.filename = raw[0];
this.name = raw[1];
this.tooltip = raw[2];
this.id = raw[3];
this.url = Medal.URL_PREFIX + raw[0];
}
}
Medal.URL_PREFIX = "https://img4.nga.178.com/ngabbs/medal/";
exports.Medal = Medal;