Grasscutter/proto/VisionType.proto
Yazawazi 91f8381fb1 [Anime Game Version update] Support 2.7 (#1072)
* feature(2.7 version): support 2.7 version & upload new protos

1. Support GC in GI 2.7.0;
2. Upload new protos;
3. Fix some bugs cuz by new protos.

BREAKING CHANGE: all

* fix(database helper): fix player uid issues

* fix(ability embryo): uint32 to fixed32

* fix(proto): map mark

rename MAP_MARK_FROM_TYPE_NOE to MAP_MARK_FROM_TYPE_NONE

* fix(game version): change game version to 2.7.0

* perf(proto): remove unused protos

1. Remove unused protos;
2. Temporarily commented out some of the proto fields.

* fix(proto): uint32 to fixed32
2022-05-30 20:06:25 -07:00

27 lines
662 B
Protocol Buffer
Executable File

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
enum VisionType {
VISION_TYPE_NONE = 0;
VISION_TYPE_MEET = 1;
VISION_TYPE_REBORN = 2;
VISION_TYPE_REPLACE = 3;
VISION_TYPE_WAYPOINT_REBORN = 4;
VISION_TYPE_MISS = 5;
VISION_TYPE_DIE = 6;
VISION_TYPE_GATHER_ESCAPE = 7;
VISION_TYPE_REFRESH = 8;
VISION_TYPE_TRANSPORT = 9;
VISION_TYPE_REPLACE_DIE = 10;
VISION_TYPE_REPLACE_NO_NOTIFY = 11;
VISION_TYPE_BORN = 12;
VISION_TYPE_PICKUP = 13;
VISION_TYPE_REMOVE = 14;
VISION_TYPE_CHANGE_COSTUME = 15;
VISION_TYPE_FISH_REFRESH = 16;
VISION_TYPE_FISH_BIG_SHOCK = 17;
VISION_TYPE_FISH_QTE_SUCC = 18;
VISION_TYPE_EPFKMOIPADB = 19;
}