mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-03-28 21:04:36 -05:00
- Evolve pokemon is working - Use potions is working - Use revives is working - Pokemon nicknames saved in MySQL Known issues/bugs: - CP calculation when evolve needs a new calc function - Candies to evolve function don't work - Eevee don't have evolutions (maybe outdated GAMEMASTER file) - potions/revives stamina value is very static maybe needs to use item templates
18 lines
829 B
JavaScript
18 lines
829 B
JavaScript
export SetAvatar from "./SetAvatar";
|
|
export GetPlayer from "./GetPlayer";
|
|
export GetInventory from "./GetInventory";
|
|
export GetAuthTicket from "./GetAuthTicket";
|
|
export ReleasePokemon from "./ReleasePokemon";
|
|
export UpgradePokemon from "./UpgradePokemon";
|
|
export LevelUpRewards from "./LevelUpRewards";
|
|
export GetHatchedEggs from "./GetHatchedEggs";
|
|
export GetAssetDigest from "./GetAssetDigest";
|
|
export NicknamePokemon from "./NicknamePokemon";
|
|
export GetPlayerProfile from "./GetPlayerProfile";
|
|
export SetFavoritePokemon from "./SetFavoritePokemon";
|
|
export CheckAwardedBadges from "./CheckAwardedBadges";
|
|
export RecycleInventoryItem from "./RecycleInventoryItem";
|
|
export ClaimCodename from "./ClaimCodename";
|
|
export EvolvePokemon from "./EvolvePokemon";
|
|
export UsePotion from "./UsePotion";
|
|
export UseRevive from "./UseRevive"; |