Grasscutter/proto/InteractType.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

23 lines
590 B
Protocol Buffer
Executable File

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
enum InteractType {
INTERACT_TYPE_NONE = 0;
INTERACT_TYPE_PICK_ITEM = 1;
INTERACT_TYPE_GATHER = 2;
INTERACT_TYPE_OPEN_CHEST = 3;
INTERACT_TYPE_OPEN_STATUE = 4;
INTERACT_TYPE_CONSUM = 5;
INTERACT_TYPE_MP_PLAY_REWARD = 6;
INTERACT_TYPE_VIEW = 7;
INTERACT_TYPE_GENERAL_REWARD = 8;
INTERACT_TYPE_MIRACLE_RING = 9;
INTERACT_TYPE_FOUNDATION = 10;
INTERACT_TYPE_ECHO_SHELL = 11;
INTERACT_TYPE_HOME_GATHER = 12;
INTERACT_TYPE_ENV_ANIMAL = 13;
INTERACT_TYPE_QUEST_GADGET = 14;
INTERACT_TYPE_LIEIKFDFMGF = 15;
}