mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-24 04:48:05 +00:00
16 lines
306 B
Protocol Buffer
16 lines
306 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
enum PlayerDieType {
|
||
|
PlayerDieNone = 0;
|
||
|
PlayerDieKillByMonster = 1;
|
||
|
PlayerDieKillByGear = 2;
|
||
|
PlayerDieFall = 3;
|
||
|
PlayerDieDrawn = 4;
|
||
|
PlayerDieAbyss = 5;
|
||
|
PlayerDieGm = 6;
|
||
|
PlayerDieClimateCold = 7;
|
||
|
PlayerDieStormLighting = 8;
|
||
|
}
|