GC-Proto/proto/CustomDungeonSetting.proto

17 lines
342 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
// Name: JDJAHIBMPAI
2023-02-18 04:48:44 +03:00
message CustomDungeonSetting {
2023-02-28 04:12:44 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00