战斗数据修改
parent
9fb69b69bf
commit
018cddf766
|
@ -9914,6 +9914,24 @@ public final class CommonProto {
|
|||
*/
|
||||
com.google.protobuf.ByteString
|
||||
getPropertyBytes();
|
||||
|
||||
// optional int32 position = 4;
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
boolean hasPosition();
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
int getPosition();
|
||||
}
|
||||
/**
|
||||
* Protobuf type {@code com.ljsd.jieling.protocols.FightUnitInfo}
|
||||
|
@ -9981,6 +9999,11 @@ public final class CommonProto {
|
|||
property_ = input.readBytes();
|
||||
break;
|
||||
}
|
||||
case 32: {
|
||||
bitField0_ |= 0x00000008;
|
||||
position_ = input.readInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
||||
|
@ -10186,10 +10209,35 @@ public final class CommonProto {
|
|||
}
|
||||
}
|
||||
|
||||
// optional int32 position = 4;
|
||||
public static final int POSITION_FIELD_NUMBER = 4;
|
||||
private int position_;
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasPosition() {
|
||||
return ((bitField0_ & 0x00000008) == 0x00000008);
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
public int getPosition() {
|
||||
return position_;
|
||||
}
|
||||
|
||||
private void initFields() {
|
||||
unitId_ = "";
|
||||
unitSkillIds_ = "";
|
||||
property_ = "";
|
||||
position_ = 0;
|
||||
}
|
||||
private byte memoizedIsInitialized = -1;
|
||||
public final boolean isInitialized() {
|
||||
|
@ -10212,6 +10260,9 @@ public final class CommonProto {
|
|||
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
||||
output.writeBytes(3, getPropertyBytes());
|
||||
}
|
||||
if (((bitField0_ & 0x00000008) == 0x00000008)) {
|
||||
output.writeInt32(4, position_);
|
||||
}
|
||||
getUnknownFields().writeTo(output);
|
||||
}
|
||||
|
||||
|
@ -10233,6 +10284,10 @@ public final class CommonProto {
|
|||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeBytesSize(3, getPropertyBytes());
|
||||
}
|
||||
if (((bitField0_ & 0x00000008) == 0x00000008)) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeInt32Size(4, position_);
|
||||
}
|
||||
size += getUnknownFields().getSerializedSize();
|
||||
memoizedSerializedSize = size;
|
||||
return size;
|
||||
|
@ -10355,6 +10410,8 @@ public final class CommonProto {
|
|||
bitField0_ = (bitField0_ & ~0x00000002);
|
||||
property_ = "";
|
||||
bitField0_ = (bitField0_ & ~0x00000004);
|
||||
position_ = 0;
|
||||
bitField0_ = (bitField0_ & ~0x00000008);
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -10395,6 +10452,10 @@ public final class CommonProto {
|
|||
to_bitField0_ |= 0x00000004;
|
||||
}
|
||||
result.property_ = property_;
|
||||
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
|
||||
to_bitField0_ |= 0x00000008;
|
||||
}
|
||||
result.position_ = position_;
|
||||
result.bitField0_ = to_bitField0_;
|
||||
onBuilt();
|
||||
return result;
|
||||
|
@ -10426,6 +10487,9 @@ public final class CommonProto {
|
|||
property_ = other.property_;
|
||||
onChanged();
|
||||
}
|
||||
if (other.hasPosition()) {
|
||||
setPosition(other.getPosition());
|
||||
}
|
||||
this.mergeUnknownFields(other.getUnknownFields());
|
||||
return this;
|
||||
}
|
||||
|
@ -10747,6 +10811,55 @@ public final class CommonProto {
|
|||
return this;
|
||||
}
|
||||
|
||||
// optional int32 position = 4;
|
||||
private int position_ ;
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasPosition() {
|
||||
return ((bitField0_ & 0x00000008) == 0x00000008);
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
public int getPosition() {
|
||||
return position_;
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
public Builder setPosition(int value) {
|
||||
bitField0_ |= 0x00000008;
|
||||
position_ = value;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 position = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* 位置
|
||||
* </pre>
|
||||
*/
|
||||
public Builder clearPosition() {
|
||||
bitField0_ = (bitField0_ & ~0x00000008);
|
||||
position_ = 0;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
|
||||
// @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.FightUnitInfo)
|
||||
}
|
||||
|
||||
|
@ -89581,240 +89694,241 @@ public final class CommonProto {
|
|||
"dList\030\010 \003(\t\022\022\n\ncreateTime\030\t \001(\005\022\023\n\013starB" +
|
||||
"reakId\030\n \001(\005\022\032\n\022especialEquipLevel\030\013 \001(\005" +
|
||||
"\0224\n\007soulPos\030\014 \003(\0132#.com.ljsd.jieling.pro" +
|
||||
"tocols.SoulPos\022\021\n\tlockState\030\r \001(\005\"G\n\rFig" +
|
||||
"tocols.SoulPos\022\021\n\tlockState\030\r \001(\005\"Y\n\rFig" +
|
||||
"htUnitInfo\022\016\n\006unitId\030\001 \001(\t\022\024\n\014unitSkillI" +
|
||||
"ds\030\002 \001(\t\022\020\n\010property\030\003 \001(\t\"\201\001\n\rFightTeam" +
|
||||
"Info\022@\n\rfightUnitList\030\001 \003(\0132).com.ljsd.j" +
|
||||
"ieling.protocols.FightUnitInfo\022\025\n\rteamSk" +
|
||||
"illList\030\002 \001(\t\022\027\n\017teamPassiveList\030\003 \001(\t\"-" +
|
||||
"\n\023EventBehaviorValues\022\026\n\016behaviorValues\030",
|
||||
"\001 \003(\005\"y\n\023EventBehaviorCommon\022\024\n\014behavior" +
|
||||
"Type\030\001 \001(\005\022L\n\023eventBehaviorValues\030\002 \003(\0132" +
|
||||
"/.com.ljsd.jieling.protocols.EventBehavi" +
|
||||
"orValues\"=\n\004Cell\022\016\n\006cellId\030\001 \001(\005\022\017\n\007poin" +
|
||||
"tId\030\002 \001(\005\022\024\n\014monsterForce\030\003 \001(\005\"^\n\007Missi" +
|
||||
"on\022\016\n\006itemId\030\001 \001(\005\022\r\n\005state\030\002 \001(\t\022\023\n\013mis" +
|
||||
"sionStep\030\003 \001(\005\022\014\n\004time\030\004 \001(\005\022\021\n\tdeadTime" +
|
||||
"s\030\005 \001(\005\"\243\001\n\004Mail\022\016\n\006mailId\030\001 \001(\t\022\r\n\005stat" +
|
||||
"e\030\002 \001(\005\022\014\n\004head\030\003 \001(\t\022\017\n\007content\030\004 \001(\t\022\020" +
|
||||
"\n\010mailItem\030\005 \001(\t\022\020\n\010sendTime\030\006 \001(\005\022\025\n\ref",
|
||||
"fectiveTime\030\007 \001(\005\022\020\n\010sendName\030\010 \001(\t\022\020\n\010m" +
|
||||
"ailType\030\t \001(\005\"\324\001\n\004Drop\0222\n\010itemlist\030\001 \003(\013" +
|
||||
"2 .com.ljsd.jieling.protocols.Item\0222\n\007eq" +
|
||||
"uipId\030\002 \003(\0132!.com.ljsd.jieling.protocols" +
|
||||
".Equip\022.\n\004Hero\030\003 \003(\0132 .com.ljsd.jieling." +
|
||||
"protocols.Hero\0224\n\tsoulEquip\030\004 \003(\0132!.com." +
|
||||
"ljsd.jieling.protocols.Equip\"\034\n\tGMComman" +
|
||||
"d\022\017\n\007command\030\001 \001(\t\"0\n\014TeamHeroInfo\022\020\n\010po" +
|
||||
"sition\030\001 \001(\005\022\016\n\006heroId\030\002 \001(\t\"6\n\017TeamPoke" +
|
||||
"monInfo\022\020\n\010position\030\001 \001(\005\022\021\n\tpokemonId\030\002",
|
||||
" \001(\005\"\267\001\n\013TeamPosInfo\022\016\n\006teamId\030\001 \001(\005\022\020\n\010" +
|
||||
"teamName\030\002 \001(\t\022?\n\rteamHeroInfos\030\003 \003(\0132(." +
|
||||
"com.ljsd.jieling.protocols.TeamHeroInfo\022" +
|
||||
"E\n\020teamPokemonInfos\030\004 \003(\0132+.com.ljsd.jie" +
|
||||
"ling.protocols.TeamPokemonInfo\"-\n\020Pokemo" +
|
||||
"ncomonpent\022\n\n\002id\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\"p\n" +
|
||||
"\013PokemonInfo\022\n\n\002id\030\001 \001(\005\022\r\n\005stage\030\002 \001(\005\022" +
|
||||
"F\n\020pokemoncomonpent\030\003 \003(\0132,.com.ljsd.jie" +
|
||||
"ling.protocols.Pokemoncomonpent\">\n\014RingF" +
|
||||
"ireInfo\022\n\n\002id\030\001 \001(\005\022\r\n\005stage\030\002 \001(\005\022\023\n\013co",
|
||||
"monpentId\030\003 \003(\005\"<\n\020WorkShopBaseInfo\022\014\n\004t" +
|
||||
"ype\030\001 \001(\005\022\r\n\005levle\030\002 \001(\005\022\013\n\003exp\030\003 \001(\005\".\n" +
|
||||
"\022WorkShopUnLockInfo\022\014\n\004type\030\001 \001(\005\022\n\n\002id\030" +
|
||||
"\004 \003(\005\"\312\001\n\tFightData\022A\n\016heroFightInfos\030\001 " +
|
||||
"\001(\0132).com.ljsd.jieling.protocols.FightTe" +
|
||||
"amInfo\022>\n\013monsterList\030\002 \003(\0132).com.ljsd.j" +
|
||||
"ieling.protocols.FightTeamInfo\022\021\n\tfightS" +
|
||||
"eed\030\003 \001(\005\022\024\n\014fightMaxTime\030\004 \001(\005\022\021\n\tfight" +
|
||||
"Type\030\005 \001(\005\"-\n\rExploreDetail\022\n\n\002id\030\001 \001(\005\022" +
|
||||
"\020\n\010progress\030\002 \001(\005\"0\n\nFoodBuffer\022\020\n\010buffe",
|
||||
"rId\030\001 \001(\005\022\020\n\010leftStep\030\002 \001(\005\"/\n\023NewPlayer" +
|
||||
"GuidePoint\022\014\n\004type\030\001 \001(\005\022\n\n\002id\030\002 \001(\005\"L\n\017" +
|
||||
"LevelDifficulty\022\017\n\007fightId\030\001 \001(\005\022\r\n\005stat" +
|
||||
"e\030\002 \001(\005\022\013\n\003num\030\003 \001(\005\022\014\n\004type\030\004 \001(\005\"l\n\024Le" +
|
||||
"velDifficultyInfos\022\016\n\006areaId\030\001 \001(\005\022D\n\017Le" +
|
||||
"velDifficulty\030\002 \003(\0132+.com.ljsd.jieling.p" +
|
||||
"rotocols.LevelDifficulty\":\n\007MapInfo\022\r\n\005m" +
|
||||
"apId\030\001 \001(\005\022\021\n\tleastTime\030\002 \001(\005\022\r\n\005stars\030\003" +
|
||||
" \003(\005\"\363\001\n\014ActivityInfo\022\022\n\nactivityId\030\001 \002(" +
|
||||
"\005\022E\n\007mission\030\002 \003(\01324.com.ljsd.jieling.pr",
|
||||
"otocols.ActivityInfo.MissionInfo\022\r\n\005valu" +
|
||||
"e\030\006 \001(\005\022\021\n\tstartTime\030\005 \001(\005\022\017\n\007endTime\030\003 " +
|
||||
"\001(\005\022\022\n\nreallyOpen\030\004 \001(\005\032A\n\013MissionInfo\022\021" +
|
||||
"\n\tmissionId\030\001 \002(\005\022\020\n\010progress\030\002 \002(\005\022\r\n\005s" +
|
||||
"tate\030\003 \002(\005\"J\n\nGmResponse\022.\n\004drop\030\001 \001(\0132 " +
|
||||
".com.ljsd.jieling.protocols.Drop\022\014\n\004info" +
|
||||
"\030\002 \001(\t\"\215\001\n\017ArenaPersonInfo\022\013\n\003uid\030\001 \001(\005\022" +
|
||||
"\r\n\005level\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\r\n\005score\030\004 " +
|
||||
"\001(\005\022\014\n\004head\030\005 \001(\005\022\014\n\004rank\030\006 \001(\005\022\022\n\ntotal" +
|
||||
"Force\030\007 \001(\005\022\021\n\theadFrame\030\010 \001(\005\"\027\n\004Team\022\017",
|
||||
"\n\007heroTid\030\001 \003(\005\"}\n\nArenaEnemy\022?\n\npersonI" +
|
||||
"nfo\030\001 \001(\0132+.com.ljsd.jieling.protocols.A" +
|
||||
"renaPersonInfo\022.\n\004team\030\002 \001(\0132 .com.ljsd." +
|
||||
"jieling.protocols.Team\"~\n\tArenaInfo\022\020\n\010f" +
|
||||
"ailNums\030\001 \001(\005\022\023\n\013successNums\030\002 \001(\005\022\r\n\005sc" +
|
||||
"ore\030\003 \001(\005\022;\n\013arenaEnemys\030\004 \003(\0132&.com.ljs" +
|
||||
"d.jieling.protocols.ArenaEnemy\"\'\n\tStoreI" +
|
||||
"tem\022\n\n\002id\030\001 \001(\005\022\016\n\006buyNum\030\002 \001(\005\"\216\001\n\tStor" +
|
||||
"eInfo\022\n\n\002id\030\001 \001(\005\022\027\n\017lastRefreshTime\030\002 \001" +
|
||||
"(\003\022\021\n\tstartTime\030\004 \001(\003\022\017\n\007endTime\030\005 \001(\003\0228",
|
||||
"\n\tstoreItem\030\006 \003(\0132%.com.ljsd.jieling.pro" +
|
||||
"tocols.StoreItem\"\236\001\n\017ArenaRecordInfo\022\n\n\002" +
|
||||
"id\030\001 \001(\t\022?\n\nattackInfo\030\002 \001(\0132+.com.ljsd." +
|
||||
"jieling.protocols.ArenaPersonInfo\022\022\n\natt" +
|
||||
"ackTime\030\003 \001(\005\022\025\n\rmyScoreChange\030\004 \001(\005\022\023\n\013" +
|
||||
"fightResult\030\005 \001(\005\"Z\n\016FunctionOfTime\022\022\n\nf" +
|
||||
"unctionId\030\001 \001(\005\022\021\n\tstartTime\030\002 \001(\005\022\017\n\007en" +
|
||||
"dTime\030\003 \001(\005\022\020\n\010interval\030\004 \001(\005\"~\n\025Adventu" +
|
||||
"reRankItemInfo\022\r\n\005level\030\001 \001(\005\022\014\n\004name\030\002 " +
|
||||
"\001(\t\022\014\n\004hurt\030\003 \001(\005\022\014\n\004head\030\004 \001(\005\022\014\n\004rank\030",
|
||||
"\005 \001(\005\022\021\n\theadFrame\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"\313\001" +
|
||||
"\n\021AdventureBossInfo\022\017\n\007arenaId\030\001 \001(\005\022\017\n\007" +
|
||||
"findUid\030\002 \001(\005\022\020\n\010findName\030\003 \001(\t\022\016\n\006bossI" +
|
||||
"d\030\004 \001(\t\022\023\n\013bossGroupId\030\005 \001(\005\022\016\n\006myHurt\030\006" +
|
||||
" \001(\005\022\021\n\tlevelTime\030\007 \001(\005\022\017\n\007totalHp\030\010 \001(\005" +
|
||||
"\022\025\n\rbossRemainlHp\030\t \001(\005\022\022\n\narenaLevel\030\n " +
|
||||
"\001(\005\"v\n\017UserMissionInfo\022\021\n\tmissionId\030\001 \001(" +
|
||||
"\005\022\020\n\010progress\030\002 \001(\005\022\r\n\005state\030\003 \001(\005\022\014\n\004ty" +
|
||||
"pe\030\004 \001(\005\022\021\n\ttakeTimes\030\005 \001(\005\022\016\n\006heroId\030\006 " +
|
||||
"\003(\t\"8\n\013VipBaseInfo\022\020\n\010vipLevel\030\001 \001(\005\022\027\n\017",
|
||||
"hadTakeLevelBox\030\002 \001(\005\"\250\001\n\006Friend\022\n\n\002id\030\001" +
|
||||
" \001(\005\022\014\n\004name\030\002 \001(\t\022\n\n\002lv\030\003 \001(\005\022\023\n\013offLin" +
|
||||
"eTime\030\004 \001(\004\022\022\n\nhaveReward\030\005 \001(\005\022\016\n\006isGiv" +
|
||||
"e\030\006 \001(\005\022\021\n\tisApplyed\030\007 \001(\005\022\014\n\004head\030\014 \001(\005" +
|
||||
"\022\r\n\005frame\030\r \001(\005\022\017\n\007soulVal\030\016 \001(\005\"o\n\rGift" +
|
||||
"GoodsInfo\022\017\n\007goodsId\030\001 \001(\005\022\020\n\010buyTimes\030\002" +
|
||||
" \001(\005\022\021\n\tstartTime\030\003 \001(\005\022\017\n\007endTime\030\004 \001(\005" +
|
||||
"\022\027\n\017dynamicBuyTimes\030\005 \001(\005\"7\n\021GoodsTypeDu" +
|
||||
"ration\022\021\n\tgoodsType\030\001 \001(\005\022\017\n\007endTime\030\002 \001" +
|
||||
"(\005\"/\n\016TechnologyInfo\022\016\n\006techId\030\001 \001(\005\022\r\n\005",
|
||||
"levle\030\002 \001(\005\"J\n\020SuddenlyBossInfo\022\022\n\nsuddB" +
|
||||
"ossId\030\006 \001(\005\022\017\n\007endTime\030\007 \001(\005\022\021\n\tfindMapI" +
|
||||
"d\030\010 \001(\005\"H\n\010ItemInfo\022\022\n\ntemplateId\030\001 \001(\005\022" +
|
||||
"\017\n\007overlap\030\002 \001(\005\022\027\n\017nextRefreshTime\030\003 \001(" +
|
||||
"\005\"H\n\010RankInfo\022\014\n\004rank\030\001 \001(\005\022\016\n\006param1\030\002 " +
|
||||
"\001(\005\022\016\n\006param2\030\003 \001(\005\022\016\n\006param3\030\004 \001(\005\"\306\001\n\010" +
|
||||
"UserRank\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004" +
|
||||
"head\030\003 \001(\005\022\020\n\010userName\030\004 \001(\t\0226\n\010rankInfo" +
|
||||
"\030\005 \001(\0132$.com.ljsd.jieling.protocols.Rank" +
|
||||
"Info\022\021\n\theadFrame\030\006 \001(\005\022\021\n\tguildName\030\007 \001",
|
||||
"(\t\022\r\n\005force\030\010 \001(\005\022\021\n\tguildSign\030\t \001(\005\"\204\001\n" +
|
||||
"\025ActorEffectBufferInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004ty" +
|
||||
"pe\030\002 \001(\005\022\021\n\tstartTime\030\003 \001(\005\022\017\n\007endTime\030\004" +
|
||||
" \001(\005\022\016\n\006target\030\005 \001(\005\022\016\n\006caster\030\006 \001(\005\022\r\n\005" +
|
||||
"value\030\007 \003(\005\"T\n\016BloodyHeroInfo\022\016\n\006heroId\030" +
|
||||
"\001 \001(\t\022\016\n\006heroHp\030\002 \001(\005\022\021\n\theroMaxHp\030\003 \001(\005" +
|
||||
"\022\017\n\007heroTid\030\004 \001(\005\"%\n\010SceneMsg\022\014\n\004time\030\001 " +
|
||||
"\001(\005\022\013\n\003msg\030\002 \001(\t\"\'\n\nPosMineral\022\013\n\003pos\030\001 " +
|
||||
"\001(\005\022\014\n\004nums\030\002 \001(\005\"\264\001\n\010Creature\022\014\n\004path\030\001" +
|
||||
" \003(\005\022\r\n\005speed\030\002 \001(\005\022\r\n\005maxHp\030\003 \001(\005\022\r\n\005cu",
|
||||
"rHp\030\004 \001(\005\022\017\n\007mineral\030\005 \001(\005\022\014\n\004camp\030\006 \001(\005" +
|
||||
"\022<\n\010heroInfo\030\007 \003(\0132*.com.ljsd.jieling.pr" +
|
||||
"otocols.BloodyHeroInfo\022\020\n\010killNums\030\010 \001(\005" +
|
||||
"\"\217\001\n\nSceneActor\022\n\n\002id\030\001 \001(\005\022\016\n\006curPos\030\002 " +
|
||||
"\001(\005\022\r\n\005state\030\003 \001(\005\022\014\n\004type\030\004 \001(\005\0226\n\010Crea" +
|
||||
"ture\030\006 \001(\0132$.com.ljsd.jieling.protocols." +
|
||||
"Creature\022\020\n\010userName\030\007 \001(\t\"\236\002\n\tSceneInfo" +
|
||||
"\022\016\n\006roomId\030\001 \001(\005\022\r\n\005mapId\030\002 \001(\005\022:\n\nScene" +
|
||||
"Actor\030\003 \003(\0132&.com.ljsd.jieling.protocols" +
|
||||
".SceneActor\022P\n\025actorEffectBufferInfo\030\004 \003",
|
||||
"(\01321.com.ljsd.jieling.protocols.ActorEff" +
|
||||
"ectBufferInfo\022\024\n\014barrierPoint\030\005 \003(\005\022:\n\np" +
|
||||
"osMineral\030\006 \003(\0132&.com.ljsd.jieling.proto" +
|
||||
"cols.PosMineral\022\022\n\nremainTime\030\007 \001(\005\"S\n\027S" +
|
||||
"ceneGetFullMsgResponse\0228\n\tsceneInfo\030\001 \001(" +
|
||||
"\0132%.com.ljsd.jieling.protocols.SceneInfo" +
|
||||
"\"B\n\013blessReward\022\022\n\nlocationId\030\001 \001(\005\022\r\n\005s" +
|
||||
"tate\030\002 \001(\005\022\020\n\010rewardId\030\003 \001(\005\"5\n\022fiveRese" +
|
||||
"tTowerInfo\022\r\n\005tower\030\001 \001(\005\022\020\n\010intoType\030\002 " +
|
||||
"\001(\005\";\n\020FamilyContribute\022\013\n\003win\030\001 \001(\005\022\014\n\004",
|
||||
"draw\030\002 \001(\005\022\014\n\004fail\030\003 \001(\005\"\210\002\n\016FamilyBaseI" +
|
||||
"nfo\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\017\n\007annouce" +
|
||||
"\030\003 \001(\t\022\r\n\005levle\030\004 \001(\005\022\013\n\003exp\030\005 \001(\005\022\020\n\010to" +
|
||||
"talNum\030\006 \001(\005\022\016\n\006maxNum\030\007 \001(\005\022\020\n\010joinType" +
|
||||
"\030\010 \001(\005\022\014\n\004icon\030\t \001(\005\022\021\n\tlevelTime\030\n \001(\005\022" +
|
||||
"A\n\013fightResult\030\013 \001(\0132,.com.ljsd.jieling." +
|
||||
"protocols.FamilyContribute\022\027\n\017playerInto" +
|
||||
"Level\030\014 \001(\005\")\n\013endlessHero\022\016\n\006heroId\030\001 \001" +
|
||||
"(\t\022\n\n\002hp\030\002 \001(\005\"2\n\022EndlessRefreshInfo\022\016\n\006" +
|
||||
"cellId\030\001 \001(\005\022\014\n\004time\030\002 \001(\005\"u\n\014UseForceIn",
|
||||
"fo\022\014\n\004name\030\001 \001(\t\022\014\n\004leve\030\002 \001(\005\022\r\n\005force\030" +
|
||||
"\003 \001(\005\022\014\n\004rank\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\021\n\thea" +
|
||||
"dFrame\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"H\n\013endlessSign" +
|
||||
"\022\r\n\005mapId\030\001 \001(\005\022\016\n\006cellId\030\002 \001(\005\022\014\n\004info\030" +
|
||||
"\003 \001(\t\022\014\n\004type\030\004 \001(\005\"g\n\nExpertInfo\022\014\n\004nam" +
|
||||
"e\030\001 \001(\t\022\r\n\005score\030\002 \001(\005\022\014\n\004rank\030\003 \001(\005\022\r\n\005" +
|
||||
"level\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\021\n\theadFrame\030\006" +
|
||||
" \001(\005\")\n\nSignInInfo\022\014\n\004days\030\001 \001(\005\022\r\n\005stat" +
|
||||
"e\030\002 \001(\005\"N\n\016TeamSimpleInfo\022\016\n\006heroid\030\001 \001(" +
|
||||
"\t\022\017\n\007heroTid\030\002 \001(\005\022\014\n\004star\030\003 \001(\005\022\r\n\005leve",
|
||||
"l\030\004 \001(\005\"\207\001\n\017TeamOneTeamInfo\0228\n\004team\030\001 \003(" +
|
||||
"\0132*.com.ljsd.jieling.protocols.TeamSimpl" +
|
||||
"eInfo\022\024\n\014PokemonInfos\030\002 \003(\005\022\022\n\ntotalForc" +
|
||||
"e\030\003 \001(\005\022\020\n\010remainHp\030\004 \003(\005\"\271\001\n\013TeamOneInf" +
|
||||
"o\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004name\030\003 " +
|
||||
"\001(\t\022\014\n\004head\030\004 \001(\005\022\021\n\theadFrame\030\005 \001(\005\022\021\n\t" +
|
||||
"guildName\030\007 \001(\t\0229\n\004team\030\006 \001(\0132+.com.ljsd" +
|
||||
".jieling.protocols.TeamOneTeamInfo\022\021\n\tis" +
|
||||
"Applyed\030\010 \001(\005\"y\n\017MonsterRankInfo\022\014\n\004name" +
|
||||
"\030\001 \001(\t\022\r\n\005score\030\002 \001(\005\022\014\n\004rank\030\003 \001(\005\022\r\n\005l",
|
||||
"evel\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\021\n\theadFrame\030\006 " +
|
||||
"\001(\005\022\013\n\003uid\030\007 \001(\005\"2\n\rHeroBloodInfo\022\016\n\006her" +
|
||||
"oId\030\001 \001(\t\022\021\n\tlostBlood\030\002 \001(\005\"D\n\013EndlessI" +
|
||||
"nfo\022\r\n\005mapId\030\001 \001(\005\022\022\n\nworldLevel\030\002 \001(\005\022\022" +
|
||||
"\n\nbloodScore\030\003 \001(\005\"2\n\017PlayerBindPhone\022\020\n" +
|
||||
"\010phoneNum\030\001 \001(\t\022\r\n\005state\030\002 \001(\005\"3\n\014Endles" +
|
||||
"sPoint\022\020\n\010location\030\001 \001(\005\022\021\n\tmonsterId\030\002 " +
|
||||
"\001(\005\"2\n\014StrongerInfo\022\020\n\010curScore\030\001 \001(\005\022\020\n" +
|
||||
"\010maxScore\030\002 \001(\005\"U\n\017QuestionOptions\022\017\n\007co" +
|
||||
"ntent\030\001 \001(\t\022\014\n\004type\030\002 \001(\005\022\017\n\007options\030\003 \003",
|
||||
"(\t\022\022\n\nanswerType\030\004 \001(\005\"\212\001\n\017BloodPersonIn" +
|
||||
"fo\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\021\n\theadFram" +
|
||||
"e\030\003 \001(\005\022\014\n\004head\030\004 \001(\005\022\020\n\010serverId\030\005 \001(\005\022" +
|
||||
"\r\n\005level\030\006 \001(\005\022\014\n\004rank\030\007 \001(\005\022\r\n\005score\030\010 " +
|
||||
"\001(\005\"H\n\026LuckWheelRewardPosInfo\022\013\n\003pos\030\001 \001" +
|
||||
"(\005\022\016\n\006luckId\030\002 \001(\005\022\021\n\tluckTimes\030\003 \001(\005\"l\n" +
|
||||
"\013RefreshTask\022\014\n\004type\030\001 \001(\005\022:\n\005tasks\030\002 \003(" +
|
||||
"\0132+.com.ljsd.jieling.protocols.UserMissi" +
|
||||
"onInfo\022\023\n\013refreshTime\030\003 \001(\005\"\221\001\n\021MainLeve" +
|
||||
"lRankInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n",
|
||||
"\004name\030\003 \001(\t\022\017\n\007fightId\030\004 \001(\005\022\014\n\004head\030\005 \001" +
|
||||
"(\005\022\014\n\004rank\030\006 \001(\005\022\022\n\ntotalForce\030\007 \001(\005\022\021\n\t" +
|
||||
"headFrame\030\010 \001(\005\"B\n\017ChampionBetInfo\022\n\n\002id" +
|
||||
"\030\001 \001(\t\022\020\n\010redCoins\030\002 \001(\005\022\021\n\tblueCoins\030\003 " +
|
||||
"\001(\005\"\323\001\n\022ChampionBattleInfo\0227\n\006myInfo\030\001 \001" +
|
||||
"ds\030\002 \001(\t\022\020\n\010property\030\003 \001(\t\022\020\n\010position\030\004" +
|
||||
" \001(\005\"\201\001\n\rFightTeamInfo\022@\n\rfightUnitList\030" +
|
||||
"\001 \003(\0132).com.ljsd.jieling.protocols.Fight" +
|
||||
"UnitInfo\022\025\n\rteamSkillList\030\002 \001(\t\022\027\n\017teamP" +
|
||||
"assiveList\030\003 \001(\t\"-\n\023EventBehaviorValues\022",
|
||||
"\026\n\016behaviorValues\030\001 \003(\005\"y\n\023EventBehavior" +
|
||||
"Common\022\024\n\014behaviorType\030\001 \001(\005\022L\n\023eventBeh" +
|
||||
"aviorValues\030\002 \003(\0132/.com.ljsd.jieling.pro" +
|
||||
"tocols.EventBehaviorValues\"=\n\004Cell\022\016\n\006ce" +
|
||||
"llId\030\001 \001(\005\022\017\n\007pointId\030\002 \001(\005\022\024\n\014monsterFo" +
|
||||
"rce\030\003 \001(\005\"^\n\007Mission\022\016\n\006itemId\030\001 \001(\005\022\r\n\005" +
|
||||
"state\030\002 \001(\t\022\023\n\013missionStep\030\003 \001(\005\022\014\n\004time" +
|
||||
"\030\004 \001(\005\022\021\n\tdeadTimes\030\005 \001(\005\"\243\001\n\004Mail\022\016\n\006ma" +
|
||||
"ilId\030\001 \001(\t\022\r\n\005state\030\002 \001(\005\022\014\n\004head\030\003 \001(\t\022" +
|
||||
"\017\n\007content\030\004 \001(\t\022\020\n\010mailItem\030\005 \001(\t\022\020\n\010se",
|
||||
"ndTime\030\006 \001(\005\022\025\n\reffectiveTime\030\007 \001(\005\022\020\n\010s" +
|
||||
"endName\030\010 \001(\t\022\020\n\010mailType\030\t \001(\005\"\324\001\n\004Drop" +
|
||||
"\0222\n\010itemlist\030\001 \003(\0132 .com.ljsd.jieling.pr" +
|
||||
"otocols.Item\0222\n\007equipId\030\002 \003(\0132!.com.ljsd" +
|
||||
".jieling.protocols.Equip\022.\n\004Hero\030\003 \003(\0132 " +
|
||||
".com.ljsd.jieling.protocols.Hero\0224\n\tsoul" +
|
||||
"Equip\030\004 \003(\0132!.com.ljsd.jieling.protocols" +
|
||||
".Equip\"\034\n\tGMCommand\022\017\n\007command\030\001 \001(\t\"0\n\014" +
|
||||
"TeamHeroInfo\022\020\n\010position\030\001 \001(\005\022\016\n\006heroId" +
|
||||
"\030\002 \001(\t\"6\n\017TeamPokemonInfo\022\020\n\010position\030\001 ",
|
||||
"\001(\005\022\021\n\tpokemonId\030\002 \001(\005\"\267\001\n\013TeamPosInfo\022\016" +
|
||||
"\n\006teamId\030\001 \001(\005\022\020\n\010teamName\030\002 \001(\t\022?\n\rteam" +
|
||||
"HeroInfos\030\003 \003(\0132(.com.ljsd.jieling.proto" +
|
||||
"cols.TeamHeroInfo\022E\n\020teamPokemonInfos\030\004 " +
|
||||
"\003(\0132+.com.ljsd.jieling.protocols.TeamPok" +
|
||||
"emonInfo\"-\n\020Pokemoncomonpent\022\n\n\002id\030\001 \001(\005" +
|
||||
"\022\r\n\005level\030\002 \001(\005\"p\n\013PokemonInfo\022\n\n\002id\030\001 \001" +
|
||||
"(\005\022\r\n\005stage\030\002 \001(\005\022F\n\020pokemoncomonpent\030\003 " +
|
||||
"\003(\0132,.com.ljsd.jieling.protocols.Pokemon" +
|
||||
"comonpent\">\n\014RingFireInfo\022\n\n\002id\030\001 \001(\005\022\r\n",
|
||||
"\005stage\030\002 \001(\005\022\023\n\013comonpentId\030\003 \003(\005\"<\n\020Wor" +
|
||||
"kShopBaseInfo\022\014\n\004type\030\001 \001(\005\022\r\n\005levle\030\002 \001" +
|
||||
"(\005\022\013\n\003exp\030\003 \001(\005\".\n\022WorkShopUnLockInfo\022\014\n" +
|
||||
"\004type\030\001 \001(\005\022\n\n\002id\030\004 \003(\005\"\312\001\n\tFightData\022A\n" +
|
||||
"\016heroFightInfos\030\001 \001(\0132).com.ljsd.jieling" +
|
||||
".protocols.FightTeamInfo\022>\n\013monsterList\030" +
|
||||
"\002 \003(\0132).com.ljsd.jieling.protocols.Fight" +
|
||||
"TeamInfo\022\021\n\tfightSeed\030\003 \001(\005\022\024\n\014fightMaxT" +
|
||||
"ime\030\004 \001(\005\022\021\n\tfightType\030\005 \001(\005\"-\n\rExploreD" +
|
||||
"etail\022\n\n\002id\030\001 \001(\005\022\020\n\010progress\030\002 \001(\005\"0\n\nF",
|
||||
"oodBuffer\022\020\n\010bufferId\030\001 \001(\005\022\020\n\010leftStep\030" +
|
||||
"\002 \001(\005\"/\n\023NewPlayerGuidePoint\022\014\n\004type\030\001 \001" +
|
||||
"(\005\022\n\n\002id\030\002 \001(\005\"L\n\017LevelDifficulty\022\017\n\007fig" +
|
||||
"htId\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\022\013\n\003num\030\003 \001(\005\022\014" +
|
||||
"\n\004type\030\004 \001(\005\"l\n\024LevelDifficultyInfos\022\016\n\006" +
|
||||
"areaId\030\001 \001(\005\022D\n\017LevelDifficulty\030\002 \003(\0132+." +
|
||||
"com.ljsd.jieling.protocols.LevelDifficul" +
|
||||
"ty\":\n\007MapInfo\022\r\n\005mapId\030\001 \001(\005\022\021\n\tleastTim" +
|
||||
"e\030\002 \001(\005\022\r\n\005stars\030\003 \003(\005\"\363\001\n\014ActivityInfo\022" +
|
||||
"\022\n\nactivityId\030\001 \002(\005\022E\n\007mission\030\002 \003(\01324.c",
|
||||
"om.ljsd.jieling.protocols.ActivityInfo.M" +
|
||||
"issionInfo\022\r\n\005value\030\006 \001(\005\022\021\n\tstartTime\030\005" +
|
||||
" \001(\005\022\017\n\007endTime\030\003 \001(\005\022\022\n\nreallyOpen\030\004 \001(" +
|
||||
"\005\032A\n\013MissionInfo\022\021\n\tmissionId\030\001 \002(\005\022\020\n\010p" +
|
||||
"rogress\030\002 \002(\005\022\r\n\005state\030\003 \002(\005\"J\n\nGmRespon" +
|
||||
"se\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.prot" +
|
||||
"ocols.Drop\022\014\n\004info\030\002 \001(\t\"\215\001\n\017ArenaPerson" +
|
||||
"Info\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004name" +
|
||||
"\030\003 \001(\t\022\r\n\005score\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\014\n\004r" +
|
||||
"ank\030\006 \001(\005\022\022\n\ntotalForce\030\007 \001(\005\022\021\n\theadFra",
|
||||
"me\030\010 \001(\005\"\027\n\004Team\022\017\n\007heroTid\030\001 \003(\005\"}\n\nAre" +
|
||||
"naEnemy\022?\n\npersonInfo\030\001 \001(\0132+.com.ljsd.j" +
|
||||
"ieling.protocols.ArenaPersonInfo\022.\n\004team" +
|
||||
"\030\002 \001(\0132 .com.ljsd.jieling.protocols.Team" +
|
||||
"\"~\n\tArenaInfo\022\020\n\010failNums\030\001 \001(\005\022\023\n\013succe" +
|
||||
"ssNums\030\002 \001(\005\022\r\n\005score\030\003 \001(\005\022;\n\013arenaEnem" +
|
||||
"ys\030\004 \003(\0132&.com.ljsd.jieling.protocols.Ar" +
|
||||
"enaEnemy\"\'\n\tStoreItem\022\n\n\002id\030\001 \001(\005\022\016\n\006buy" +
|
||||
"Num\030\002 \001(\005\"\216\001\n\tStoreInfo\022\n\n\002id\030\001 \001(\005\022\027\n\017l" +
|
||||
"astRefreshTime\030\002 \001(\003\022\021\n\tstartTime\030\004 \001(\003\022",
|
||||
"\017\n\007endTime\030\005 \001(\003\0228\n\tstoreItem\030\006 \003(\0132%.co" +
|
||||
"m.ljsd.jieling.protocols.StoreItem\"\236\001\n\017A" +
|
||||
"renaRecordInfo\022\n\n\002id\030\001 \001(\t\022?\n\nattackInfo" +
|
||||
"\030\002 \001(\0132+.com.ljsd.jieling.protocols.Aren" +
|
||||
"aPersonInfo\022\022\n\nattackTime\030\003 \001(\005\022\025\n\rmySco" +
|
||||
"reChange\030\004 \001(\005\022\023\n\013fightResult\030\005 \001(\005\"Z\n\016F" +
|
||||
"unctionOfTime\022\022\n\nfunctionId\030\001 \001(\005\022\021\n\tsta" +
|
||||
"rtTime\030\002 \001(\005\022\017\n\007endTime\030\003 \001(\005\022\020\n\010interva" +
|
||||
"l\030\004 \001(\005\"~\n\025AdventureRankItemInfo\022\r\n\005leve" +
|
||||
"l\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\014\n\004hurt\030\003 \001(\005\022\014\n\004h",
|
||||
"ead\030\004 \001(\005\022\014\n\004rank\030\005 \001(\005\022\021\n\theadFrame\030\006 \001" +
|
||||
"(\005\022\013\n\003uid\030\007 \001(\005\"\313\001\n\021AdventureBossInfo\022\017\n" +
|
||||
"\007arenaId\030\001 \001(\005\022\017\n\007findUid\030\002 \001(\005\022\020\n\010findN" +
|
||||
"ame\030\003 \001(\t\022\016\n\006bossId\030\004 \001(\t\022\023\n\013bossGroupId" +
|
||||
"\030\005 \001(\005\022\016\n\006myHurt\030\006 \001(\005\022\021\n\tlevelTime\030\007 \001(" +
|
||||
"\005\022\017\n\007totalHp\030\010 \001(\005\022\025\n\rbossRemainlHp\030\t \001(" +
|
||||
"\005\022\022\n\narenaLevel\030\n \001(\005\"v\n\017UserMissionInfo" +
|
||||
"\022\021\n\tmissionId\030\001 \001(\005\022\020\n\010progress\030\002 \001(\005\022\r\n" +
|
||||
"\005state\030\003 \001(\005\022\014\n\004type\030\004 \001(\005\022\021\n\ttakeTimes\030" +
|
||||
"\005 \001(\005\022\016\n\006heroId\030\006 \003(\t\"8\n\013VipBaseInfo\022\020\n\010",
|
||||
"vipLevel\030\001 \001(\005\022\027\n\017hadTakeLevelBox\030\002 \001(\005\"" +
|
||||
"\250\001\n\006Friend\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\n\n\002" +
|
||||
"lv\030\003 \001(\005\022\023\n\013offLineTime\030\004 \001(\004\022\022\n\nhaveRew" +
|
||||
"ard\030\005 \001(\005\022\016\n\006isGive\030\006 \001(\005\022\021\n\tisApplyed\030\007" +
|
||||
" \001(\005\022\014\n\004head\030\014 \001(\005\022\r\n\005frame\030\r \001(\005\022\017\n\007sou" +
|
||||
"lVal\030\016 \001(\005\"o\n\rGiftGoodsInfo\022\017\n\007goodsId\030\001" +
|
||||
" \001(\005\022\020\n\010buyTimes\030\002 \001(\005\022\021\n\tstartTime\030\003 \001(" +
|
||||
"\005\022\017\n\007endTime\030\004 \001(\005\022\027\n\017dynamicBuyTimes\030\005 " +
|
||||
"\001(\005\"7\n\021GoodsTypeDuration\022\021\n\tgoodsType\030\001 " +
|
||||
"\001(\005\022\017\n\007endTime\030\002 \001(\005\"/\n\016TechnologyInfo\022\016",
|
||||
"\n\006techId\030\001 \001(\005\022\r\n\005levle\030\002 \001(\005\"J\n\020Suddenl" +
|
||||
"yBossInfo\022\022\n\nsuddBossId\030\006 \001(\005\022\017\n\007endTime" +
|
||||
"\030\007 \001(\005\022\021\n\tfindMapId\030\010 \001(\005\"H\n\010ItemInfo\022\022\n" +
|
||||
"\ntemplateId\030\001 \001(\005\022\017\n\007overlap\030\002 \001(\005\022\027\n\017ne" +
|
||||
"xtRefreshTime\030\003 \001(\005\"H\n\010RankInfo\022\014\n\004rank\030" +
|
||||
"\001 \001(\005\022\016\n\006param1\030\002 \001(\005\022\016\n\006param2\030\003 \001(\005\022\016\n" +
|
||||
"\006param3\030\004 \001(\005\"\306\001\n\010UserRank\022\013\n\003uid\030\001 \001(\005\022" +
|
||||
"\r\n\005level\030\002 \001(\005\022\014\n\004head\030\003 \001(\005\022\020\n\010userName" +
|
||||
"\030\004 \001(\t\0226\n\010rankInfo\030\005 \001(\0132$.com.ljsd.jiel" +
|
||||
"ing.protocols.RankInfo\022\021\n\theadFrame\030\006 \001(",
|
||||
"\005\022\021\n\tguildName\030\007 \001(\t\022\r\n\005force\030\010 \001(\005\022\021\n\tg" +
|
||||
"uildSign\030\t \001(\005\"\204\001\n\025ActorEffectBufferInfo" +
|
||||
"\022\n\n\002id\030\001 \001(\005\022\014\n\004type\030\002 \001(\005\022\021\n\tstartTime\030" +
|
||||
"\003 \001(\005\022\017\n\007endTime\030\004 \001(\005\022\016\n\006target\030\005 \001(\005\022\016" +
|
||||
"\n\006caster\030\006 \001(\005\022\r\n\005value\030\007 \003(\005\"T\n\016BloodyH" +
|
||||
"eroInfo\022\016\n\006heroId\030\001 \001(\t\022\016\n\006heroHp\030\002 \001(\005\022" +
|
||||
"\021\n\theroMaxHp\030\003 \001(\005\022\017\n\007heroTid\030\004 \001(\005\"%\n\010S" +
|
||||
"ceneMsg\022\014\n\004time\030\001 \001(\005\022\013\n\003msg\030\002 \001(\t\"\'\n\nPo" +
|
||||
"sMineral\022\013\n\003pos\030\001 \001(\005\022\014\n\004nums\030\002 \001(\005\"\264\001\n\010" +
|
||||
"Creature\022\014\n\004path\030\001 \003(\005\022\r\n\005speed\030\002 \001(\005\022\r\n",
|
||||
"\005maxHp\030\003 \001(\005\022\r\n\005curHp\030\004 \001(\005\022\017\n\007mineral\030\005" +
|
||||
" \001(\005\022\014\n\004camp\030\006 \001(\005\022<\n\010heroInfo\030\007 \003(\0132*.c" +
|
||||
"om.ljsd.jieling.protocols.BloodyHeroInfo" +
|
||||
"\022\020\n\010killNums\030\010 \001(\005\"\217\001\n\nSceneActor\022\n\n\002id\030" +
|
||||
"\001 \001(\005\022\016\n\006curPos\030\002 \001(\005\022\r\n\005state\030\003 \001(\005\022\014\n\004" +
|
||||
"type\030\004 \001(\005\0226\n\010Creature\030\006 \001(\0132$.com.ljsd." +
|
||||
"jieling.protocols.Creature\022\020\n\010userName\030\007" +
|
||||
" \001(\t\"\236\002\n\tSceneInfo\022\016\n\006roomId\030\001 \001(\005\022\r\n\005ma" +
|
||||
"pId\030\002 \001(\005\022:\n\nSceneActor\030\003 \003(\0132&.com.ljsd" +
|
||||
".jieling.protocols.SceneActor\022P\n\025actorEf",
|
||||
"fectBufferInfo\030\004 \003(\01321.com.ljsd.jieling." +
|
||||
"protocols.ActorEffectBufferInfo\022\024\n\014barri" +
|
||||
"erPoint\030\005 \003(\005\022:\n\nposMineral\030\006 \003(\0132&.com." +
|
||||
"ljsd.jieling.protocols.PosMineral\022\022\n\nrem" +
|
||||
"ainTime\030\007 \001(\005\"S\n\027SceneGetFullMsgResponse" +
|
||||
"\0228\n\tsceneInfo\030\001 \001(\0132%.com.ljsd.jieling.p" +
|
||||
"rotocols.SceneInfo\"B\n\013blessReward\022\022\n\nloc" +
|
||||
"ationId\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\022\020\n\010rewardId" +
|
||||
"\030\003 \001(\005\"5\n\022fiveResetTowerInfo\022\r\n\005tower\030\001 " +
|
||||
"\001(\005\022\020\n\010intoType\030\002 \001(\005\";\n\020FamilyContribut",
|
||||
"e\022\013\n\003win\030\001 \001(\005\022\014\n\004draw\030\002 \001(\005\022\014\n\004fail\030\003 \001" +
|
||||
"(\005\"\210\002\n\016FamilyBaseInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004nam" +
|
||||
"e\030\002 \001(\t\022\017\n\007annouce\030\003 \001(\t\022\r\n\005levle\030\004 \001(\005\022" +
|
||||
"\013\n\003exp\030\005 \001(\005\022\020\n\010totalNum\030\006 \001(\005\022\016\n\006maxNum" +
|
||||
"\030\007 \001(\005\022\020\n\010joinType\030\010 \001(\005\022\014\n\004icon\030\t \001(\005\022\021" +
|
||||
"\n\tlevelTime\030\n \001(\005\022A\n\013fightResult\030\013 \001(\0132," +
|
||||
".com.ljsd.jieling.protocols.FamilyContri" +
|
||||
"bute\022\027\n\017playerIntoLevel\030\014 \001(\005\")\n\013endless" +
|
||||
"Hero\022\016\n\006heroId\030\001 \001(\t\022\n\n\002hp\030\002 \001(\005\"2\n\022Endl" +
|
||||
"essRefreshInfo\022\016\n\006cellId\030\001 \001(\005\022\014\n\004time\030\002",
|
||||
" \001(\005\"u\n\014UseForceInfo\022\014\n\004name\030\001 \001(\t\022\014\n\004le" +
|
||||
"ve\030\002 \001(\005\022\r\n\005force\030\003 \001(\005\022\014\n\004rank\030\004 \001(\005\022\014\n" +
|
||||
"\004head\030\005 \001(\005\022\021\n\theadFrame\030\006 \001(\005\022\013\n\003uid\030\007 " +
|
||||
"\001(\005\"H\n\013endlessSign\022\r\n\005mapId\030\001 \001(\005\022\016\n\006cel" +
|
||||
"lId\030\002 \001(\005\022\014\n\004info\030\003 \001(\t\022\014\n\004type\030\004 \001(\005\"g\n" +
|
||||
"\nExpertInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005score\030\002 \001(\005" +
|
||||
"\022\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022\014\n\004head\030\005 " +
|
||||
"\001(\005\022\021\n\theadFrame\030\006 \001(\005\")\n\nSignInInfo\022\014\n\004" +
|
||||
"days\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\"N\n\016TeamSimpleI" +
|
||||
"nfo\022\016\n\006heroid\030\001 \001(\t\022\017\n\007heroTid\030\002 \001(\005\022\014\n\004",
|
||||
"star\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\"\207\001\n\017TeamOneTea" +
|
||||
"mInfo\0228\n\004team\030\001 \003(\0132*.com.ljsd.jieling.p" +
|
||||
"rotocols.TeamSimpleInfo\022\024\n\014PokemonInfos\030" +
|
||||
"\002 \003(\005\022\022\n\ntotalForce\030\003 \001(\005\022\020\n\010remainHp\030\004 " +
|
||||
"\003(\005\"\271\001\n\013TeamOneInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005leve" +
|
||||
"l\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\014\n\004head\030\004 \001(\005\022\021\n\th" +
|
||||
"eadFrame\030\005 \001(\005\022\021\n\tguildName\030\007 \001(\t\0229\n\004tea" +
|
||||
"m\030\006 \001(\0132+.com.ljsd.jieling.protocols.Tea" +
|
||||
"mOneTeamInfo\022\021\n\tisApplyed\030\010 \001(\005\"y\n\017Monst" +
|
||||
"erRankInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005score\030\002 \001(\005\022",
|
||||
"\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022\014\n\004head\030\005 \001" +
|
||||
"(\005\022\021\n\theadFrame\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"2\n\rHe" +
|
||||
"roBloodInfo\022\016\n\006heroId\030\001 \001(\t\022\021\n\tlostBlood" +
|
||||
"\030\002 \001(\005\"D\n\013EndlessInfo\022\r\n\005mapId\030\001 \001(\005\022\022\n\n" +
|
||||
"worldLevel\030\002 \001(\005\022\022\n\nbloodScore\030\003 \001(\005\"2\n\017" +
|
||||
"PlayerBindPhone\022\020\n\010phoneNum\030\001 \001(\t\022\r\n\005sta" +
|
||||
"te\030\002 \001(\005\"3\n\014EndlessPoint\022\020\n\010location\030\001 \001" +
|
||||
"(\005\022\021\n\tmonsterId\030\002 \001(\005\"2\n\014StrongerInfo\022\020\n" +
|
||||
"\010curScore\030\001 \001(\005\022\020\n\010maxScore\030\002 \001(\005\"U\n\017Que" +
|
||||
"stionOptions\022\017\n\007content\030\001 \001(\t\022\014\n\004type\030\002 ",
|
||||
"\001(\005\022\017\n\007options\030\003 \003(\t\022\022\n\nanswerType\030\004 \001(\005" +
|
||||
"\"\212\001\n\017BloodPersonInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004name" +
|
||||
"\030\002 \001(\t\022\021\n\theadFrame\030\003 \001(\005\022\014\n\004head\030\004 \001(\005\022" +
|
||||
"\020\n\010serverId\030\005 \001(\005\022\r\n\005level\030\006 \001(\005\022\014\n\004rank" +
|
||||
"\030\007 \001(\005\022\r\n\005score\030\010 \001(\005\"H\n\026LuckWheelReward" +
|
||||
"PosInfo\022\013\n\003pos\030\001 \001(\005\022\016\n\006luckId\030\002 \001(\005\022\021\n\t" +
|
||||
"luckTimes\030\003 \001(\005\"l\n\013RefreshTask\022\014\n\004type\030\001" +
|
||||
" \001(\005\022:\n\005tasks\030\002 \003(\0132+.com.ljsd.jieling.p" +
|
||||
"rotocols.UserMissionInfo\022\023\n\013refreshTime\030" +
|
||||
"\003 \001(\005\"\221\001\n\021MainLevelRankInfo\022\013\n\003uid\030\001 \001(\005",
|
||||
"\022\r\n\005level\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\017\n\007fightId" +
|
||||
"\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\014\n\004rank\030\006 \001(\005\022\022\n\nto" +
|
||||
"talForce\030\007 \001(\005\022\021\n\theadFrame\030\010 \001(\005\"B\n\017Cha" +
|
||||
"mpionBetInfo\022\n\n\002id\030\001 \001(\t\022\020\n\010redCoins\030\002 \001" +
|
||||
"(\005\022\021\n\tblueCoins\030\003 \001(\005\"\323\001\n\022ChampionBattle" +
|
||||
"Info\0227\n\006myInfo\030\001 \001(\0132\'.com.ljsd.jieling." +
|
||||
"protocols.TeamOneInfo\022:\n\tenemyInfo\030\002 \001(\013" +
|
||||
"2\'.com.ljsd.jieling.protocols.TeamOneInf" +
|
||||
"o\022\016\n\006result\030\003 \001(\005\0228\n\tfightData\030\004 \001(\0132%.c" +
|
||||
"om.ljsd.jieling.protocols.FightData\"\367\001\n\026",
|
||||
"ChampionBattlePairInfo\022;\n\nattackInfo\030\001 \001" +
|
||||
"(\0132\'.com.ljsd.jieling.protocols.TeamOneI" +
|
||||
"nfo\022:\n\tenemyInfo\030\002 \001(\0132\'.com.ljsd.jielin" +
|
||||
"g.protocols.TeamOneInfo\022\016\n\006result\030\003 \001(\005\022" +
|
||||
"8\n\tfightData\030\004 \001(\0132%.com.ljsd.jieling.pr" +
|
||||
"otocols.FightData\"\367\001\n\026ChampionBattlePair",
|
||||
"Info\022;\n\nattackInfo\030\001 \001(\0132\'.com.ljsd.jiel" +
|
||||
"ing.protocols.TeamOneInfo\0228\n\007defInfo\030\002 \001" +
|
||||
"(\0132\'.com.ljsd.jieling.protocols.TeamOneI" +
|
||||
"nfo\022\023\n\013fightResult\030\003 \001(\005\022\n\n\002id\030\004 \001(\t\022\022\n\n" +
|
||||
"roundTImes\030\005 \001(\005\022\016\n\006teamId\030\006 \001(\005\022\020\n\010posi" +
|
||||
"tion\030\007 \001(\005\022\017\n\007isGUess\030\010 \001(\005\"q\n\nRedPackag" +
|
||||
"e\022\020\n\010userName\030\001 \001(\t\022\r\n\005redId\030\002 \001(\005\022\r\n\005is" +
|
||||
"Get\030\003 \001(\005\022\020\n\010getCount\030\004 \001(\005\022\017\n\007redType\030\005" +
|
||||
" \001(\005\022\020\n\010sendTime\030\006 \001(\005\"\211\001\n\014RedOneDetail\022" +
|
||||
"\013\n\003uid\030\001 \001(\005\022\014\n\004head\030\002 \001(\005\022\021\n\theadFrame\030",
|
||||
"\003 \001(\005\022\014\n\004name\030\004 \001(\t\022\014\n\004time\030\005 \001(\005\022\r\n\005cou" +
|
||||
"nt\030\006 \001(\005\022\016\n\006itemId\030\007 \001(\005\022\020\n\010position\030\010 \001" +
|
||||
"(\005\"Z\n\030ExpeditionSimpleBossInfo\022\017\n\007heroTi" +
|
||||
"d\030\001 \001(\005\022\014\n\004star\030\002 \001(\005\022\r\n\005level\030\003 \001(\005\022\020\n\010" +
|
||||
"remainHp\030\004 \001(\001\"\202\001\n\022ExpeditionTeamInfo\022B\n" +
|
||||
"\004hero\030\001 \003(\01324.com.ljsd.jieling.protocols" +
|
||||
".ExpeditionSimpleBossInfo\022\024\n\014PokemonInfo" +
|
||||
"s\030\002 \003(\005\022\022\n\ntotalForce\030\003 \001(\005\"\251\001\n\022Expediti" +
|
||||
"onNodeInfo\022\016\n\006sortId\030\001 \001(\005\022\013\n\003lay\030\002 \001(\005\022" +
|
||||
"\014\n\004type\030\003 \001(\005\022D\n\014bossTeaminfo\030\004 \001(\0132..co",
|
||||
"m.ljsd.jieling.protocols.ExpeditionTeamI" +
|
||||
"nfo\022\r\n\005state\030\005 \001(\005\022\023\n\013holyEquipID\030\006 \003(\005\"" +
|
||||
"<\n\030ExpeditionSimpleHeroInfo\022\016\n\006heroId\030\001 " +
|
||||
"\001(\t\022\020\n\010remainHp\030\002 \001(\001\"/\n\017ExpeditionEquip" +
|
||||
"\022\n\n\002id\030\001 \001(\t\022\020\n\010equiptId\030\002 \001(\005\"P\n\rMonthC" +
|
||||
"ardInfo\022\n\n\002id\030\001 \001(\005\022\022\n\nendingTime\030\002 \001(\005\022" +
|
||||
"\r\n\005state\030\003 \001(\005\022\020\n\010totleAmt\030\004 \001(\005B\002H\001"
|
||||
"nfo\0228\n\007defInfo\030\002 \001(\0132\'.com.ljsd.jieling." +
|
||||
"protocols.TeamOneInfo\022\023\n\013fightResult\030\003 \001" +
|
||||
"(\005\022\n\n\002id\030\004 \001(\t\022\022\n\nroundTImes\030\005 \001(\005\022\016\n\006te" +
|
||||
"amId\030\006 \001(\005\022\020\n\010position\030\007 \001(\005\022\017\n\007isGUess\030" +
|
||||
"\010 \001(\005\"q\n\nRedPackage\022\020\n\010userName\030\001 \001(\t\022\r\n" +
|
||||
"\005redId\030\002 \001(\005\022\r\n\005isGet\030\003 \001(\005\022\020\n\010getCount\030" +
|
||||
"\004 \001(\005\022\017\n\007redType\030\005 \001(\005\022\020\n\010sendTime\030\006 \001(\005" +
|
||||
"\"\211\001\n\014RedOneDetail\022\013\n\003uid\030\001 \001(\005\022\014\n\004head\030\002",
|
||||
" \001(\005\022\021\n\theadFrame\030\003 \001(\005\022\014\n\004name\030\004 \001(\t\022\014\n" +
|
||||
"\004time\030\005 \001(\005\022\r\n\005count\030\006 \001(\005\022\016\n\006itemId\030\007 \001" +
|
||||
"(\005\022\020\n\010position\030\010 \001(\005\"Z\n\030ExpeditionSimple" +
|
||||
"BossInfo\022\017\n\007heroTid\030\001 \001(\005\022\014\n\004star\030\002 \001(\005\022" +
|
||||
"\r\n\005level\030\003 \001(\005\022\020\n\010remainHp\030\004 \001(\001\"\202\001\n\022Exp" +
|
||||
"editionTeamInfo\022B\n\004hero\030\001 \003(\01324.com.ljsd" +
|
||||
".jieling.protocols.ExpeditionSimpleBossI" +
|
||||
"nfo\022\024\n\014PokemonInfos\030\002 \003(\005\022\022\n\ntotalForce\030" +
|
||||
"\003 \001(\005\"\251\001\n\022ExpeditionNodeInfo\022\016\n\006sortId\030\001" +
|
||||
" \001(\005\022\013\n\003lay\030\002 \001(\005\022\014\n\004type\030\003 \001(\005\022D\n\014bossT",
|
||||
"eaminfo\030\004 \001(\0132..com.ljsd.jieling.protoco" +
|
||||
"ls.ExpeditionTeamInfo\022\r\n\005state\030\005 \001(\005\022\023\n\013" +
|
||||
"holyEquipID\030\006 \003(\005\"<\n\030ExpeditionSimpleHer" +
|
||||
"oInfo\022\016\n\006heroId\030\001 \001(\t\022\020\n\010remainHp\030\002 \001(\001\"" +
|
||||
"/\n\017ExpeditionEquip\022\n\n\002id\030\001 \001(\t\022\020\n\010equipt" +
|
||||
"Id\030\002 \001(\005\"P\n\rMonthCardInfo\022\n\n\002id\030\001 \001(\005\022\022\n" +
|
||||
"\nendingTime\030\002 \001(\005\022\r\n\005state\030\003 \001(\005\022\020\n\010totl" +
|
||||
"eAmt\030\004 \001(\005B\002H\001"
|
||||
};
|
||||
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
||||
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
|
||||
|
@ -89874,7 +89988,7 @@ public final class CommonProto {
|
|||
internal_static_com_ljsd_jieling_protocols_FightUnitInfo_fieldAccessorTable = new
|
||||
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
||||
internal_static_com_ljsd_jieling_protocols_FightUnitInfo_descriptor,
|
||||
new java.lang.String[] { "UnitId", "UnitSkillIds", "Property", });
|
||||
new java.lang.String[] { "UnitId", "UnitSkillIds", "Property", "Position", });
|
||||
internal_static_com_ljsd_jieling_protocols_FightTeamInfo_descriptor =
|
||||
getDescriptor().getMessageTypes().get(9);
|
||||
internal_static_com_ljsd_jieling_protocols_FightTeamInfo_fieldAccessorTable = new
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -25,7 +25,7 @@ public class MapStaticConfig extends AbstractClassStaticConfig {
|
|||
|
||||
|
||||
|
||||
private Map<Integer, CommonProto.FightUnitInfo> monsterMap;
|
||||
private Map<Integer, CommonProto.FightUnitInfo.Builder> monsterMap;
|
||||
|
||||
@Override
|
||||
public void registConfigs(Set<String> registConfigs) {
|
||||
|
@ -37,7 +37,7 @@ public class MapStaticConfig extends AbstractClassStaticConfig {
|
|||
public void figureConfigs() {
|
||||
|
||||
try {
|
||||
Map<Integer, CommonProto.FightUnitInfo> monsterMapVo = new ConcurrentHashMap<>();
|
||||
Map<Integer, CommonProto.FightUnitInfo.Builder> monsterMapVo = new ConcurrentHashMap<>();
|
||||
for (Map.Entry<Integer,SMonsterConfig> entry : STableManager.getConfig(SMonsterConfig.class).entrySet()){
|
||||
SMonsterConfig sMonsterConfig = entry.getValue();
|
||||
if (!monsterMapVo.containsKey(sMonsterConfig.getId())){
|
||||
|
@ -58,7 +58,7 @@ public class MapStaticConfig extends AbstractClassStaticConfig {
|
|||
}
|
||||
|
||||
|
||||
public Map<Integer, CommonProto.FightUnitInfo> getMonsterMap() {
|
||||
public Map<Integer, CommonProto.FightUnitInfo.Builder> getMonsterMap() {
|
||||
return monsterMap;
|
||||
}
|
||||
|
||||
|
|
|
@ -197,7 +197,7 @@ public class CBean2Proto {
|
|||
.build();
|
||||
}
|
||||
|
||||
public static CommonProto.FightUnitInfo getMonster(SMonsterConfig sMonsterConfig, int curHp) {
|
||||
public static CommonProto.FightUnitInfo.Builder getMonster(SMonsterConfig sMonsterConfig, int curHp) {
|
||||
StringBuilder monsterPropertyList = new StringBuilder();
|
||||
StringBuilder monsterSkillList = new StringBuilder(); //火风水地光暗
|
||||
float[] damageReduceFactor = sMonsterConfig.getElementDamageReduceFactor();
|
||||
|
@ -250,7 +250,7 @@ public class CBean2Proto {
|
|||
monsterBuilder.setProperty(monsterPropertyList.toString());
|
||||
monsterBuilder.setUnitSkillIds(monsterSkillList.toString());
|
||||
monsterBuilder.setUnitId(String.valueOf(sMonsterConfig.getId()));
|
||||
return monsterBuilder.build();
|
||||
return monsterBuilder;
|
||||
}
|
||||
|
||||
public static CommonProto.FoodBuffer getFoodBuffer(int buffId, int leftStep) {
|
||||
|
|
|
@ -80,7 +80,7 @@ public class FightDataUtil {
|
|||
unitData.set("professionId", sMonster.getProfession());
|
||||
unitData.set("camp", 1);
|
||||
unitData.set("type", sMonster.getType());
|
||||
unitData.set("position", i+1);
|
||||
unitData.set("position",unitInfo.getPosition());
|
||||
unitData.set("quality", sMonster.getQuality());
|
||||
unitData.set("element",sMonster.getPropertyName());
|
||||
if (unitSkill.length==1){
|
||||
|
|
|
@ -30,12 +30,16 @@ public class MonsterUtil {
|
|||
return map;
|
||||
}
|
||||
int[][] groupIds = sMonsterGroup.getContents();
|
||||
Map<Integer, CommonProto.FightUnitInfo> monsterMap = STableManager.getFigureConfig(MapStaticConfig.class).getMonsterMap();
|
||||
Map<Integer, CommonProto.FightUnitInfo.Builder> monsterMap = STableManager.getFigureConfig(MapStaticConfig.class).getMonsterMap();
|
||||
for (int i = 0; i < groupIds.length; i++) {
|
||||
int[] monsterIds = groupIds[i];
|
||||
List<CommonProto.FightUnitInfo> monsterList = new CopyOnWriteArrayList<>();
|
||||
int position = 1;
|
||||
for (int monsterId : monsterIds) {
|
||||
monsterList.add(monsterMap.get(monsterId));
|
||||
if(monsterId!=0){
|
||||
monsterList.add(monsterMap.get(monsterId).setPosition(position++).build());
|
||||
}
|
||||
|
||||
}
|
||||
map.put(i,monsterList);
|
||||
}
|
||||
|
@ -46,20 +50,27 @@ public class MonsterUtil {
|
|||
SMonsterGroup sMonsterGroup = SMonsterGroup.getsMonsterGroupMap().get(groupId);
|
||||
int[][] groupIds = sMonsterGroup.getContents();
|
||||
Map<Integer, List<CommonProto.FightUnitInfo>> map = new ConcurrentHashMap<>();
|
||||
Map<Integer, CommonProto.FightUnitInfo> monsterMap =STableManager.getFigureConfig(MapStaticConfig.class).getMonsterMap();
|
||||
Map<Integer, CommonProto.FightUnitInfo.Builder> monsterMap =STableManager.getFigureConfig(MapStaticConfig.class).getMonsterMap();
|
||||
for (int i = 0; i < groupIds.length; i++) {
|
||||
int[] monsterIds = groupIds[i];
|
||||
List<CommonProto.FightUnitInfo> monsterList = new ArrayList<>();
|
||||
List<Integer> hpInfo = hps.get(i);
|
||||
if(hpInfo!=null && !hpInfo.isEmpty()){
|
||||
int index=0;
|
||||
int position=1;
|
||||
for (int monsterId : monsterIds) {
|
||||
SMonsterConfig sMonsterConfig = STableManager.getConfig(SMonsterConfig.class).get(monsterId);
|
||||
monsterList.add(CBean2Proto.getMonster(sMonsterConfig,hpInfo.get(index)));
|
||||
if(monsterId!=0){
|
||||
SMonsterConfig sMonsterConfig = STableManager.getConfig(SMonsterConfig.class).get(monsterId);
|
||||
monsterList.add( CBean2Proto.getMonster(sMonsterConfig, hpInfo.get(index++)).setPosition(position++).build());
|
||||
}
|
||||
|
||||
}
|
||||
}else{
|
||||
int position=1;
|
||||
for (int monsterId : monsterIds) {
|
||||
monsterList.add(monsterMap.get(monsterId));
|
||||
if(monsterId!=0){
|
||||
monsterList.add(monsterMap.get(monsterId).setPosition(position++).build());
|
||||
}
|
||||
}
|
||||
}
|
||||
map.put(i,monsterList);
|
||||
|
@ -113,15 +124,6 @@ public class MonsterUtil {
|
|||
}
|
||||
return (int)(maxForce*(0.8+groupIds.length*0.2));
|
||||
}
|
||||
public static String getMonsterSkillById(int monsterId){
|
||||
CommonProto.FightUnitInfo monster = STableManager.getFigureConfig(MapStaticConfig.class).getMonsterMap().get(monsterId);
|
||||
return monster.getUnitSkillIds();
|
||||
}
|
||||
|
||||
public static String getMonsterPropertyById(int monsterId){
|
||||
CommonProto.FightUnitInfo monster = STableManager.getFigureConfig(MapStaticConfig.class).getMonsterMap().get(monsterId);
|
||||
return monster.getProperty();
|
||||
}
|
||||
|
||||
public static String getMonsterTeamSkillByGroup(int groupId) {
|
||||
if (SMonsterGroup.getsMonsterGroupMap().get(groupId).getSkill()!=null){
|
||||
|
|
Loading…
Reference in New Issue