ArenaRobotInfo.cs 637 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. //竞技场机器人数据
  6. public class ArenaRobotInfo : Entity, IAwake, ISerializeToEntity
  7. {
  8. public string Index;
  9. public string Name;
  10. //机器人配置id
  11. public int RobotId = 0;
  12. //机器人头像
  13. public string RobotIcon = "";
  14. //属性系数
  15. public int[] Randoms = { 0, 0, 0 };
  16. //卡牌id列表
  17. public int[] CardIdList = { 0, 0, 0 };
  18. //套装id列表
  19. public int[] SuitList = { 0, 0, 0 };
  20. [BsonIgnore] public ArenaTargetProto proto;
  21. }
  22. }