GC-Proto/proto/CreateGadgetInfo.proto

19 lines
331 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 "GadgetBornType.proto";
2023-02-28 04:12:44 +03:00
// Name: GICHAGEMNME
2023-02-18 04:48:44 +03:00
message CreateGadgetInfo {
2023-02-28 04:12:44 +03:00
// Name: FHHMGJOLDLM
message Chest {
uint32 chest_drop_id = 1;
bool is_show_cutscene = 2;
}
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
GadgetBornType born_type = 1;
Chest chest = 2;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00