mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 16:39:26 +03:00
17 lines
342 B
Protocol Buffer
17 lines
342 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: JDJAHIBMPAI
|
|
message CustomDungeonSetting {
|
|
uint32 time_limit = 15;
|
|
uint32 coin_limit = 10;
|
|
uint32 start_room_id = 7;
|
|
repeated uint32 open_room_list = 14;
|
|
bool is_arrive_finish = 8;
|
|
uint32 life_num = 11;
|
|
bool is_forbid_skill = 2;
|
|
}
|
|
|