-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bot functions on 3.0 gamedata with 3.0 defined
- Loading branch information
Showing
25 changed files
with
172,666 additions
and
349 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// All the important numbers | ||
const PersonalTable = require("./PersonalTable.json"); | ||
const GrowTable = require("./GrowTable.json"); | ||
const EvolveTable = require("./EvolveTable.json"); | ||
const EggMovesTable = require("./TamagoWazaTable.json"); | ||
const LearnsetTable = require("./WazaOboeTable.json"); | ||
const MovesTable = require("./WazaTable.json"); | ||
const ItemTable = require("./ItemTable.json"); | ||
const TrainerTable = require("./TrainerTable.json"); | ||
|
||
// All the Pokemon English files | ||
const basePokemonNames = require("./english_ss_monsname.json"); | ||
const formPokemonNames = require("./english_ss_zkn_form.json"); | ||
const pokemonHeight = require("./english_ss_zkn_height.json"); | ||
const pokemonWeight = require("./english_ss_zkn_weight.json"); | ||
const pokemonDexType = require("./english_ss_zkn_type.json"); | ||
const pokemonPokedexInfo = require("./english_dp_pokedex_diamond.json"); | ||
const staticLocations = require("./static_locations.json"); | ||
|
||
// All the other English files | ||
const natureNames = require("./english_ss_seikaku.json"); | ||
const abilityNames = require("./english_ss_tokusei.json"); | ||
const abilityInfo = require("./english_ss_tokuseiinfo.json"); | ||
const typeName = require("./english_ss_typename.json"); | ||
const moveNames = require("./english_ss_wazaname.json"); | ||
const moveInfo = require("./english_ss_wazainfo.json"); | ||
const itemNames = require("./english_ss_itemname.json"); | ||
const itemInfo = require("./english_ss_iteminfo.json"); | ||
|
||
// Custom files | ||
const moveEnum = require("./moveEnum.json"); | ||
const smogonMoves = require("./smogonMoves.json"); | ||
const trainerInfo = require("./trainer_info.json"); | ||
const EvolutionData = require("./evolution.json"); | ||
const encounterData = require("./encounter_locations.json"); | ||
|
||
module.exports = { | ||
PersonalTable, | ||
GrowTable, | ||
EvolveTable, | ||
EggMovesTable, | ||
LearnsetTable, | ||
MovesTable, | ||
basePokemonNames, | ||
formPokemonNames, | ||
pokemonHeight, | ||
pokemonWeight, | ||
pokemonDexType, | ||
pokemonPokedexInfo, | ||
staticLocations, | ||
natureNames, | ||
abilityNames, | ||
abilityInfo, | ||
typeName, | ||
moveNames, | ||
moveInfo, | ||
ItemTable, | ||
itemNames, | ||
moveEnum, | ||
smogonMoves, | ||
trainerInfo, | ||
TrainerTable, | ||
itemInfo, | ||
EvolutionData, | ||
encounterData, | ||
}; |
Oops, something went wrong.