Skip to content

Commit

Permalink
bot functions on 3.0 gamedata with 3.0 defined
Browse files Browse the repository at this point in the history
  • Loading branch information
fakuzatsu committed Mar 7, 2024
1 parent 333445f commit 7a18b10
Show file tree
Hide file tree
Showing 25 changed files with 172,666 additions and 349 deletions.
854 changes: 854 additions & 0 deletions __3.0gamedata/GrowTable.json

Large diffs are not rendered by default.

38,456 changes: 38,456 additions & 0 deletions __3.0gamedata/encounter_locations.json

Large diffs are not rendered by default.

80,252 changes: 80,252 additions & 0 deletions __3.0gamedata/english_ss_iteminfo.json

Large diffs are not rendered by default.

9,762 changes: 9,762 additions & 0 deletions __3.0gamedata/english_ss_tokuseiinfo.json

Large diffs are not rendered by default.

66 changes: 66 additions & 0 deletions __3.0gamedata/index.js
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,
};
Loading

0 comments on commit 7a18b10

Please sign in to comment.