mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-25 15:29:09 -05:00
- Added mongodb database - Removed dumps - Added jwt google auth decode plugin - Added long decode plugin - Updated protos to latest commit - Updated readme - Added avatar saving - Fixed bug, where username, level and exp didnt got displayed - Default username is "undefined" - Clear console stdin - Save players into db stdin - Seperated login/register phase - Added decode long util method
9 lines
156 B
Protocol Buffer
Vendored
9 lines
156 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Enums;
|
|
|
|
enum PokemonRarity {
|
|
POKEMON_RARITY_NORMAL = 0;
|
|
POKEMON_RARITY_LEGENDARY = 1;
|
|
POKEMON_RARITY_MYTHIC = 2;
|
|
}
|