mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-21 08:57:22 -05:00
24 lines
629 B
Protocol Buffer
Vendored
24 lines
629 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Settings.Master;
|
|
|
|
import "POGOProtos/Enums/PokemonType.proto";
|
|
import "POGOProtos/Enums/PokemonMove.proto";
|
|
|
|
message MoveSettings {
|
|
.POGOProtos.Enums.PokemonMove movement_id = 1;
|
|
int32 animation_id = 2;
|
|
.POGOProtos.Enums.PokemonType pokemon_type = 3;
|
|
float power = 4;
|
|
float accuracy_chance = 5;
|
|
float critical_chance = 6;
|
|
float heal_scalar = 7;
|
|
float stamina_loss_scalar = 8;
|
|
int32 trainer_level_min = 9;
|
|
int32 trainer_level_max = 10;
|
|
string vfx_name = 11;
|
|
int32 duration_ms = 12;
|
|
int32 damage_window_start_ms = 13;
|
|
int32 damage_window_end_ms = 14;
|
|
int32 energy_delta = 15;
|
|
}
|