mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
16 lines
309 B
Protocol Buffer
16 lines
309 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
// Name: ANAPBNFGFEN
|
||
|
message AbilityMixinGlobalShield {
|
||
|
float height_offset = 9;
|
||
|
string shield_effect_name = 10;
|
||
|
uint32 avatar_id = 15;
|
||
|
bool is_create_effect = 13;
|
||
|
float max_shield = 12;
|
||
|
float sub_shield = 7;
|
||
|
}
|
||
|
|