2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-05-22 14:51:09 +03:00
|
|
|
|
|
|
|
// 4.6.0
|
2022-11-06 15:30:21 +03:00
|
|
|
message AbilityAttachedModifier {
|
2023-05-23 09:48:59 +03:00
|
|
|
bool is_invalid = 1;
|
|
|
|
uint32 owner_entity_id = 2;
|
|
|
|
uint32 instanced_modifier_id = 3;
|
|
|
|
bool is_serverbuff_modifier = 4;
|
|
|
|
int32 attach_name_hash = 5;
|
2024-05-22 14:51:09 +03:00
|
|
|
}
|