mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
19 lines
380 B
Protocol Buffer
19 lines
380 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: EGBBHBLNEAC
|
|
enum PlayerDieType {
|
|
PLAYER_DIE_NONE = 0;
|
|
PLAYER_DIE_KILL_BY_MONSTER = 1;
|
|
PLAYER_DIE_KILL_BY_GEAR = 2;
|
|
PLAYER_DIE_FALL = 3;
|
|
PLAYER_DIE_DRAWN = 4;
|
|
PLAYER_DIE_ABYSS = 5;
|
|
PLAYER_DIE_GM = 6;
|
|
PLAYER_DIE_CLIMATE_COLD = 7;
|
|
PLAYER_DIE_STORM_LIGHTING = 8;
|
|
}
|
|
|