生成野怪逻辑

This commit is contained in:
DESKTOP-5RP3AKU\Jisol
2023-11-17 02:57:46 +08:00
parent c4437fef5e
commit 62b72bdcfc
29 changed files with 2451 additions and 192 deletions

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
option java_package = "cn.jisol.ngame.proto";
//生成宠物类
message GOnHookPet {
string key = 1; //生成宠物的key
int32 petTbId = 2; //生成宠物的配置表Id
}
//生成的宠物类列表
message GOnHookPets {
repeated GOnHookPet pets = 1; //宠物列表
}