GC-Proto/proto/WindSeedClientNotify.proto

36 lines
723 B
Protocol Buffer
Raw Normal View History

2022-12-28 07:44:06 +03:00
syntax = "proto3";
2023-02-28 06:08:38 +03:00
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-12-28 07:44:06 +03:00
import "Vector.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 1163
// Name: MHPFILLGJOJ
2022-12-28 07:44:06 +03:00
message WindSeedClientNotify {
2023-04-11 11:18:47 +03:00
// Name: POCPFABKJCL
2023-02-28 06:08:38 +03:00
message RefreshNotify {
2023-04-11 11:18:47 +03:00
uint32 refresh_num = 7;
2023-02-28 06:08:38 +03:00
}
2023-04-11 11:18:47 +03:00
// Name: NBNLPGEFDEC
2023-02-28 06:08:38 +03:00
message AddWindBulletNotify {
2023-04-11 11:18:47 +03:00
Vector seed_pos = 8;
uint32 JGDLMEEEBIM = 10;
uint32 ALLPEAAMOLB = 3;
2023-02-28 06:08:38 +03:00
}
2023-01-28 17:00:48 +03:00
2023-04-11 11:18:47 +03:00
// Name: CLAKGGEPCLD
2023-02-28 06:08:38 +03:00
message AreaNotify {
2023-04-11 11:18:47 +03:00
uint32 area_id = 3;
uint32 area_type = 2;
bytes area_code = 1;
2023-02-28 06:08:38 +03:00
}
2023-01-28 17:00:48 +03:00
2023-02-28 06:08:38 +03:00
oneof notify {
2023-04-11 11:18:47 +03:00
RefreshNotify refresh_notify = 12;
AddWindBulletNotify add_wind_bullet_notify = 11;
AreaNotify area_notify = 2;
2023-02-28 06:08:38 +03:00
}
2022-12-28 07:44:06 +03:00
}
2023-02-28 06:08:38 +03:00