GC-Proto/proto/AbilityMixinWindSeedSpawner.proto

30 lines
525 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
2023-02-28 04:12:44 +03:00
// Name: AEAIOCLFFDH
2023-02-18 04:48:44 +03:00
message AbilityMixinWindSeedSpawner {
2023-02-28 04:12:44 +03:00
// Name: DDMMEHCNOMB
message AddSignal {
}
// Name: KNKFILHLMBC
message RefreshSeed {
repeated Vector pos_list = 3;
}
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: LPGDOODMMFB
message CatchSeed {
uint32 entity_id = 2;
}
oneof cmd {
AddSignal add_signal = 13;
RefreshSeed refresh_seed = 5;
CatchSeed catch_seed = 4;
}
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00