chapter.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. // message结构的属性名请使用 驼峰小写字母开始
  2. // Code generated by protoc-gen-go. DO NOT EDIT.
  3. // versions:
  4. // protoc-gen-go v1.36.8
  5. // protoc v6.31.1
  6. // source: chapter.proto
  7. package pb
  8. import (
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. unsafe "unsafe"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. // 探险信息
  22. type Chapter struct {
  23. state protoimpl.MessageState `protogen:"open.v1"`
  24. // 当前章节ID
  25. ChapterID int32 `protobuf:"varint,1,opt,name=chapterID,proto3" json:"chapterID,omitempty"`
  26. // 当前关卡ID
  27. LevelID int32 `protobuf:"varint,2,opt,name=levelID,proto3" json:"levelID,omitempty"`
  28. // 已领取章节累计星级奖励列表 key 章节ID T-探险-章节表章节ID value 章节星级奖励信息
  29. StarRewards map[int32]*ChapterStarReward `protobuf:"bytes,3,rep,name=starRewards,proto3" json:"starRewards,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  30. // 所有章节关卡信息列表
  31. Levels []*ChapterLevel `protobuf:"bytes,4,rep,name=levels,proto3" json:"levels,omitempty"`
  32. // 上一次精力恢复时间戳 单位秒
  33. LastRecoverTime int64 `protobuf:"varint,5,opt,name=lastRecoverTime,proto3" json:"lastRecoverTime,omitempty"`
  34. unknownFields protoimpl.UnknownFields
  35. sizeCache protoimpl.SizeCache
  36. }
  37. func (x *Chapter) Reset() {
  38. *x = Chapter{}
  39. mi := &file_chapter_proto_msgTypes[0]
  40. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  41. ms.StoreMessageInfo(mi)
  42. }
  43. func (x *Chapter) String() string {
  44. return protoimpl.X.MessageStringOf(x)
  45. }
  46. func (*Chapter) ProtoMessage() {}
  47. func (x *Chapter) ProtoReflect() protoreflect.Message {
  48. mi := &file_chapter_proto_msgTypes[0]
  49. if x != nil {
  50. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  51. if ms.LoadMessageInfo() == nil {
  52. ms.StoreMessageInfo(mi)
  53. }
  54. return ms
  55. }
  56. return mi.MessageOf(x)
  57. }
  58. // Deprecated: Use Chapter.ProtoReflect.Descriptor instead.
  59. func (*Chapter) Descriptor() ([]byte, []int) {
  60. return file_chapter_proto_rawDescGZIP(), []int{0}
  61. }
  62. func (x *Chapter) GetChapterID() int32 {
  63. if x != nil {
  64. return x.ChapterID
  65. }
  66. return 0
  67. }
  68. func (x *Chapter) GetLevelID() int32 {
  69. if x != nil {
  70. return x.LevelID
  71. }
  72. return 0
  73. }
  74. func (x *Chapter) GetStarRewards() map[int32]*ChapterStarReward {
  75. if x != nil {
  76. return x.StarRewards
  77. }
  78. return nil
  79. }
  80. func (x *Chapter) GetLevels() []*ChapterLevel {
  81. if x != nil {
  82. return x.Levels
  83. }
  84. return nil
  85. }
  86. func (x *Chapter) GetLastRecoverTime() int64 {
  87. if x != nil {
  88. return x.LastRecoverTime
  89. }
  90. return 0
  91. }
  92. // 探险关卡列表
  93. type UpdateChapterLevel struct {
  94. state protoimpl.MessageState `protogen:"open.v1"`
  95. // 当前章节ID
  96. ChapterID int32 `protobuf:"varint,1,opt,name=chapterID,proto3" json:"chapterID,omitempty"`
  97. // 当前关卡ID
  98. LevelID int32 `protobuf:"varint,2,opt,name=levelID,proto3" json:"levelID,omitempty"`
  99. // 更新关卡列表
  100. Levels []*ChapterLevel `protobuf:"bytes,3,rep,name=levels,proto3" json:"levels,omitempty"`
  101. unknownFields protoimpl.UnknownFields
  102. sizeCache protoimpl.SizeCache
  103. }
  104. func (x *UpdateChapterLevel) Reset() {
  105. *x = UpdateChapterLevel{}
  106. mi := &file_chapter_proto_msgTypes[1]
  107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  108. ms.StoreMessageInfo(mi)
  109. }
  110. func (x *UpdateChapterLevel) String() string {
  111. return protoimpl.X.MessageStringOf(x)
  112. }
  113. func (*UpdateChapterLevel) ProtoMessage() {}
  114. func (x *UpdateChapterLevel) ProtoReflect() protoreflect.Message {
  115. mi := &file_chapter_proto_msgTypes[1]
  116. if x != nil {
  117. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  118. if ms.LoadMessageInfo() == nil {
  119. ms.StoreMessageInfo(mi)
  120. }
  121. return ms
  122. }
  123. return mi.MessageOf(x)
  124. }
  125. // Deprecated: Use UpdateChapterLevel.ProtoReflect.Descriptor instead.
  126. func (*UpdateChapterLevel) Descriptor() ([]byte, []int) {
  127. return file_chapter_proto_rawDescGZIP(), []int{1}
  128. }
  129. func (x *UpdateChapterLevel) GetChapterID() int32 {
  130. if x != nil {
  131. return x.ChapterID
  132. }
  133. return 0
  134. }
  135. func (x *UpdateChapterLevel) GetLevelID() int32 {
  136. if x != nil {
  137. return x.LevelID
  138. }
  139. return 0
  140. }
  141. func (x *UpdateChapterLevel) GetLevels() []*ChapterLevel {
  142. if x != nil {
  143. return x.Levels
  144. }
  145. return nil
  146. }
  147. // 关卡信息
  148. type ChapterLevel struct {
  149. state protoimpl.MessageState `protogen:"open.v1"`
  150. // 关卡ID T-探险-关卡表关卡ID
  151. LevelID int32 `protobuf:"varint,1,opt,name=levelID,proto3" json:"levelID,omitempty"`
  152. // 关卡当天已挑战次数
  153. DayChallengeCount int32 `protobuf:"varint,2,opt,name=dayChallengeCount,proto3" json:"dayChallengeCount,omitempty"`
  154. // 关卡当天已购买挑战次数
  155. DayBuyChallengeCount int32 `protobuf:"varint,3,opt,name=dayBuyChallengeCount,proto3" json:"dayBuyChallengeCount,omitempty"`
  156. // 当前关卡星级完成列表 0-未完成 1-已完成 对应关卡表的星级条件
  157. Stars []int32 `protobuf:"varint,4,rep,packed,name=stars,proto3" json:"stars,omitempty"`
  158. unknownFields protoimpl.UnknownFields
  159. sizeCache protoimpl.SizeCache
  160. }
  161. func (x *ChapterLevel) Reset() {
  162. *x = ChapterLevel{}
  163. mi := &file_chapter_proto_msgTypes[2]
  164. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  165. ms.StoreMessageInfo(mi)
  166. }
  167. func (x *ChapterLevel) String() string {
  168. return protoimpl.X.MessageStringOf(x)
  169. }
  170. func (*ChapterLevel) ProtoMessage() {}
  171. func (x *ChapterLevel) ProtoReflect() protoreflect.Message {
  172. mi := &file_chapter_proto_msgTypes[2]
  173. if x != nil {
  174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  175. if ms.LoadMessageInfo() == nil {
  176. ms.StoreMessageInfo(mi)
  177. }
  178. return ms
  179. }
  180. return mi.MessageOf(x)
  181. }
  182. // Deprecated: Use ChapterLevel.ProtoReflect.Descriptor instead.
  183. func (*ChapterLevel) Descriptor() ([]byte, []int) {
  184. return file_chapter_proto_rawDescGZIP(), []int{2}
  185. }
  186. func (x *ChapterLevel) GetLevelID() int32 {
  187. if x != nil {
  188. return x.LevelID
  189. }
  190. return 0
  191. }
  192. func (x *ChapterLevel) GetDayChallengeCount() int32 {
  193. if x != nil {
  194. return x.DayChallengeCount
  195. }
  196. return 0
  197. }
  198. func (x *ChapterLevel) GetDayBuyChallengeCount() int32 {
  199. if x != nil {
  200. return x.DayBuyChallengeCount
  201. }
  202. return 0
  203. }
  204. func (x *ChapterLevel) GetStars() []int32 {
  205. if x != nil {
  206. return x.Stars
  207. }
  208. return nil
  209. }
  210. // 星级奖励
  211. type ChapterStarReward struct {
  212. state protoimpl.MessageState `protogen:"open.v1"`
  213. // 已领取星级奖励ID列表 T-探险-奖励表所需星级
  214. Rewards []int32 `protobuf:"varint,1,rep,packed,name=rewards,proto3" json:"rewards,omitempty"`
  215. unknownFields protoimpl.UnknownFields
  216. sizeCache protoimpl.SizeCache
  217. }
  218. func (x *ChapterStarReward) Reset() {
  219. *x = ChapterStarReward{}
  220. mi := &file_chapter_proto_msgTypes[3]
  221. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  222. ms.StoreMessageInfo(mi)
  223. }
  224. func (x *ChapterStarReward) String() string {
  225. return protoimpl.X.MessageStringOf(x)
  226. }
  227. func (*ChapterStarReward) ProtoMessage() {}
  228. func (x *ChapterStarReward) ProtoReflect() protoreflect.Message {
  229. mi := &file_chapter_proto_msgTypes[3]
  230. if x != nil {
  231. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  232. if ms.LoadMessageInfo() == nil {
  233. ms.StoreMessageInfo(mi)
  234. }
  235. return ms
  236. }
  237. return mi.MessageOf(x)
  238. }
  239. // Deprecated: Use ChapterStarReward.ProtoReflect.Descriptor instead.
  240. func (*ChapterStarReward) Descriptor() ([]byte, []int) {
  241. return file_chapter_proto_rawDescGZIP(), []int{3}
  242. }
  243. func (x *ChapterStarReward) GetRewards() []int32 {
  244. if x != nil {
  245. return x.Rewards
  246. }
  247. return nil
  248. }
  249. // 扫荡奖励
  250. type ChapterLevelSweepReward struct {
  251. state protoimpl.MessageState `protogen:"open.v1"`
  252. // 扫荡奖励列表
  253. Rewards []*AssetList `protobuf:"bytes,1,rep,name=rewards,proto3" json:"rewards,omitempty"`
  254. unknownFields protoimpl.UnknownFields
  255. sizeCache protoimpl.SizeCache
  256. }
  257. func (x *ChapterLevelSweepReward) Reset() {
  258. *x = ChapterLevelSweepReward{}
  259. mi := &file_chapter_proto_msgTypes[4]
  260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  261. ms.StoreMessageInfo(mi)
  262. }
  263. func (x *ChapterLevelSweepReward) String() string {
  264. return protoimpl.X.MessageStringOf(x)
  265. }
  266. func (*ChapterLevelSweepReward) ProtoMessage() {}
  267. func (x *ChapterLevelSweepReward) ProtoReflect() protoreflect.Message {
  268. mi := &file_chapter_proto_msgTypes[4]
  269. if x != nil {
  270. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  271. if ms.LoadMessageInfo() == nil {
  272. ms.StoreMessageInfo(mi)
  273. }
  274. return ms
  275. }
  276. return mi.MessageOf(x)
  277. }
  278. // Deprecated: Use ChapterLevelSweepReward.ProtoReflect.Descriptor instead.
  279. func (*ChapterLevelSweepReward) Descriptor() ([]byte, []int) {
  280. return file_chapter_proto_rawDescGZIP(), []int{4}
  281. }
  282. func (x *ChapterLevelSweepReward) GetRewards() []*AssetList {
  283. if x != nil {
  284. return x.Rewards
  285. }
  286. return nil
  287. }
  288. // 探险验证返回
  289. type ChapterVerifyResponse struct {
  290. state protoimpl.MessageState `protogen:"open.v1"`
  291. // 0失败 1胜出
  292. Result bool `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
  293. // 挑战胜出的关卡信息
  294. Challenge *ChapterLevelChallenge `protobuf:"bytes,2,opt,name=challenge,proto3" json:"challenge,omitempty"`
  295. unknownFields protoimpl.UnknownFields
  296. sizeCache protoimpl.SizeCache
  297. }
  298. func (x *ChapterVerifyResponse) Reset() {
  299. *x = ChapterVerifyResponse{}
  300. mi := &file_chapter_proto_msgTypes[5]
  301. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  302. ms.StoreMessageInfo(mi)
  303. }
  304. func (x *ChapterVerifyResponse) String() string {
  305. return protoimpl.X.MessageStringOf(x)
  306. }
  307. func (*ChapterVerifyResponse) ProtoMessage() {}
  308. func (x *ChapterVerifyResponse) ProtoReflect() protoreflect.Message {
  309. mi := &file_chapter_proto_msgTypes[5]
  310. if x != nil {
  311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  312. if ms.LoadMessageInfo() == nil {
  313. ms.StoreMessageInfo(mi)
  314. }
  315. return ms
  316. }
  317. return mi.MessageOf(x)
  318. }
  319. // Deprecated: Use ChapterVerifyResponse.ProtoReflect.Descriptor instead.
  320. func (*ChapterVerifyResponse) Descriptor() ([]byte, []int) {
  321. return file_chapter_proto_rawDescGZIP(), []int{5}
  322. }
  323. func (x *ChapterVerifyResponse) GetResult() bool {
  324. if x != nil {
  325. return x.Result
  326. }
  327. return false
  328. }
  329. func (x *ChapterVerifyResponse) GetChallenge() *ChapterLevelChallenge {
  330. if x != nil {
  331. return x.Challenge
  332. }
  333. return nil
  334. }
  335. // 挑战关卡信息
  336. type ChapterLevelChallenge struct {
  337. state protoimpl.MessageState `protogen:"open.v1"`
  338. // 当前章节ID
  339. ChapterID int32 `protobuf:"varint,1,opt,name=chapterID,proto3" json:"chapterID,omitempty"`
  340. // 当前关卡ID
  341. LevelID int32 `protobuf:"varint,2,opt,name=levelID,proto3" json:"levelID,omitempty"`
  342. // 挑战关卡信息
  343. Level *ChapterLevel `protobuf:"bytes,3,opt,name=level,proto3" json:"level,omitempty"`
  344. // 获得奖励
  345. Rewards *AssetList `protobuf:"bytes,4,opt,name=rewards,proto3" json:"rewards,omitempty"`
  346. unknownFields protoimpl.UnknownFields
  347. sizeCache protoimpl.SizeCache
  348. }
  349. func (x *ChapterLevelChallenge) Reset() {
  350. *x = ChapterLevelChallenge{}
  351. mi := &file_chapter_proto_msgTypes[6]
  352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  353. ms.StoreMessageInfo(mi)
  354. }
  355. func (x *ChapterLevelChallenge) String() string {
  356. return protoimpl.X.MessageStringOf(x)
  357. }
  358. func (*ChapterLevelChallenge) ProtoMessage() {}
  359. func (x *ChapterLevelChallenge) ProtoReflect() protoreflect.Message {
  360. mi := &file_chapter_proto_msgTypes[6]
  361. if x != nil {
  362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  363. if ms.LoadMessageInfo() == nil {
  364. ms.StoreMessageInfo(mi)
  365. }
  366. return ms
  367. }
  368. return mi.MessageOf(x)
  369. }
  370. // Deprecated: Use ChapterLevelChallenge.ProtoReflect.Descriptor instead.
  371. func (*ChapterLevelChallenge) Descriptor() ([]byte, []int) {
  372. return file_chapter_proto_rawDescGZIP(), []int{6}
  373. }
  374. func (x *ChapterLevelChallenge) GetChapterID() int32 {
  375. if x != nil {
  376. return x.ChapterID
  377. }
  378. return 0
  379. }
  380. func (x *ChapterLevelChallenge) GetLevelID() int32 {
  381. if x != nil {
  382. return x.LevelID
  383. }
  384. return 0
  385. }
  386. func (x *ChapterLevelChallenge) GetLevel() *ChapterLevel {
  387. if x != nil {
  388. return x.Level
  389. }
  390. return nil
  391. }
  392. func (x *ChapterLevelChallenge) GetRewards() *AssetList {
  393. if x != nil {
  394. return x.Rewards
  395. }
  396. return nil
  397. }
  398. var File_chapter_proto protoreflect.FileDescriptor
  399. const file_chapter_proto_rawDesc = "" +
  400. "\n" +
  401. "\rchapter.proto\x12\x02pb\x1a\x0fbase_type.proto\"\xac\x02\n" +
  402. "\aChapter\x12\x1c\n" +
  403. "\tchapterID\x18\x01 \x01(\x05R\tchapterID\x12\x18\n" +
  404. "\alevelID\x18\x02 \x01(\x05R\alevelID\x12>\n" +
  405. "\vstarRewards\x18\x03 \x03(\v2\x1c.pb.Chapter.StarRewardsEntryR\vstarRewards\x12(\n" +
  406. "\x06levels\x18\x04 \x03(\v2\x10.pb.ChapterLevelR\x06levels\x12(\n" +
  407. "\x0flastRecoverTime\x18\x05 \x01(\x03R\x0flastRecoverTime\x1aU\n" +
  408. "\x10StarRewardsEntry\x12\x10\n" +
  409. "\x03key\x18\x01 \x01(\x05R\x03key\x12+\n" +
  410. "\x05value\x18\x02 \x01(\v2\x15.pb.ChapterStarRewardR\x05value:\x028\x01\"v\n" +
  411. "\x12UpdateChapterLevel\x12\x1c\n" +
  412. "\tchapterID\x18\x01 \x01(\x05R\tchapterID\x12\x18\n" +
  413. "\alevelID\x18\x02 \x01(\x05R\alevelID\x12(\n" +
  414. "\x06levels\x18\x03 \x03(\v2\x10.pb.ChapterLevelR\x06levels\"\xa0\x01\n" +
  415. "\fChapterLevel\x12\x18\n" +
  416. "\alevelID\x18\x01 \x01(\x05R\alevelID\x12,\n" +
  417. "\x11dayChallengeCount\x18\x02 \x01(\x05R\x11dayChallengeCount\x122\n" +
  418. "\x14dayBuyChallengeCount\x18\x03 \x01(\x05R\x14dayBuyChallengeCount\x12\x14\n" +
  419. "\x05stars\x18\x04 \x03(\x05R\x05stars\"-\n" +
  420. "\x11ChapterStarReward\x12\x18\n" +
  421. "\arewards\x18\x01 \x03(\x05R\arewards\"B\n" +
  422. "\x17ChapterLevelSweepReward\x12'\n" +
  423. "\arewards\x18\x01 \x03(\v2\r.pb.AssetListR\arewards\"h\n" +
  424. "\x15ChapterVerifyResponse\x12\x16\n" +
  425. "\x06result\x18\x01 \x01(\bR\x06result\x127\n" +
  426. "\tchallenge\x18\x02 \x01(\v2\x19.pb.ChapterLevelChallengeR\tchallenge\"\xa0\x01\n" +
  427. "\x15ChapterLevelChallenge\x12\x1c\n" +
  428. "\tchapterID\x18\x01 \x01(\x05R\tchapterID\x12\x18\n" +
  429. "\alevelID\x18\x02 \x01(\x05R\alevelID\x12&\n" +
  430. "\x05level\x18\x03 \x01(\v2\x10.pb.ChapterLevelR\x05level\x12'\n" +
  431. "\arewards\x18\x04 \x01(\v2\r.pb.AssetListR\arewardsB\x05Z\x03/pbb\x06proto3"
  432. var (
  433. file_chapter_proto_rawDescOnce sync.Once
  434. file_chapter_proto_rawDescData []byte
  435. )
  436. func file_chapter_proto_rawDescGZIP() []byte {
  437. file_chapter_proto_rawDescOnce.Do(func() {
  438. file_chapter_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_chapter_proto_rawDesc), len(file_chapter_proto_rawDesc)))
  439. })
  440. return file_chapter_proto_rawDescData
  441. }
  442. var file_chapter_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  443. var file_chapter_proto_goTypes = []any{
  444. (*Chapter)(nil), // 0: pb.Chapter
  445. (*UpdateChapterLevel)(nil), // 1: pb.UpdateChapterLevel
  446. (*ChapterLevel)(nil), // 2: pb.ChapterLevel
  447. (*ChapterStarReward)(nil), // 3: pb.ChapterStarReward
  448. (*ChapterLevelSweepReward)(nil), // 4: pb.ChapterLevelSweepReward
  449. (*ChapterVerifyResponse)(nil), // 5: pb.ChapterVerifyResponse
  450. (*ChapterLevelChallenge)(nil), // 6: pb.ChapterLevelChallenge
  451. nil, // 7: pb.Chapter.StarRewardsEntry
  452. (*AssetList)(nil), // 8: pb.AssetList
  453. }
  454. var file_chapter_proto_depIdxs = []int32{
  455. 7, // 0: pb.Chapter.starRewards:type_name -> pb.Chapter.StarRewardsEntry
  456. 2, // 1: pb.Chapter.levels:type_name -> pb.ChapterLevel
  457. 2, // 2: pb.UpdateChapterLevel.levels:type_name -> pb.ChapterLevel
  458. 8, // 3: pb.ChapterLevelSweepReward.rewards:type_name -> pb.AssetList
  459. 6, // 4: pb.ChapterVerifyResponse.challenge:type_name -> pb.ChapterLevelChallenge
  460. 2, // 5: pb.ChapterLevelChallenge.level:type_name -> pb.ChapterLevel
  461. 8, // 6: pb.ChapterLevelChallenge.rewards:type_name -> pb.AssetList
  462. 3, // 7: pb.Chapter.StarRewardsEntry.value:type_name -> pb.ChapterStarReward
  463. 8, // [8:8] is the sub-list for method output_type
  464. 8, // [8:8] is the sub-list for method input_type
  465. 8, // [8:8] is the sub-list for extension type_name
  466. 8, // [8:8] is the sub-list for extension extendee
  467. 0, // [0:8] is the sub-list for field type_name
  468. }
  469. func init() { file_chapter_proto_init() }
  470. func file_chapter_proto_init() {
  471. if File_chapter_proto != nil {
  472. return
  473. }
  474. file_base_type_proto_init()
  475. type x struct{}
  476. out := protoimpl.TypeBuilder{
  477. File: protoimpl.DescBuilder{
  478. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  479. RawDescriptor: unsafe.Slice(unsafe.StringData(file_chapter_proto_rawDesc), len(file_chapter_proto_rawDesc)),
  480. NumEnums: 0,
  481. NumMessages: 8,
  482. NumExtensions: 0,
  483. NumServices: 0,
  484. },
  485. GoTypes: file_chapter_proto_goTypes,
  486. DependencyIndexes: file_chapter_proto_depIdxs,
  487. MessageInfos: file_chapter_proto_msgTypes,
  488. }.Build()
  489. File_chapter_proto = out.File
  490. file_chapter_proto_goTypes = nil
  491. file_chapter_proto_depIdxs = nil
  492. }