mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
383 B
Protocol Buffer
17 lines
383 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GalleryStopReason.proto";
|
|
|
|
// Name: HMMDFIENJGE
|
|
message LuminanceStoneChallengeGallerySettleInfo {
|
|
uint32 gallery_id = 15;
|
|
GalleryStopReason reason = 13;
|
|
uint32 kill_special_monster_count = 6;
|
|
uint32 clean_mud_count = 4;
|
|
uint32 kill_monster_count = 9;
|
|
uint32 final_score = 3;
|
|
}
|
|
|