dbmaster-cli
Version:
Tool for converting tables between Fifa Soccer Games
35 lines (34 loc) • 1.01 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FifaConfig = void 0;
class FifaConfig {
constructor() {
this.competition = [];
this.dcplayernames = [];
this.formations = [];
this.leaguerefereelinks = [];
this.leagues = [];
this.leagueteamlinks = [];
this.manager = [];
this.nations = [];
// tslint:disable-next-line: variable-name
this.player_grudgelove = [];
this.playerboots = [];
this.playerloans = [];
this.playernames = [];
this.players = [];
this.previousteam = [];
this.referee = [];
this.rivals = [];
this.rowteamnationlinks = [];
this.shoecolors = [];
this.stadiums = [];
this.teamballs = [];
this.teamkits = [];
this.teamnationlinks = [];
this.teamplayerlinks = [];
this.teams = [];
this.teamstadiumlinks = [];
}
}
exports.FifaConfig = FifaConfig;