| 123456789101112131415161718192021222324252627282930 |
- using System;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- //竞技场机器人数据
- public class ArenaRobotInfo : Entity, IAwake, ISerializeToEntity
- {
- public string Index;
- public string Name;
- //机器人配置id
- public int RobotId = 0;
- //机器人头像
- public string RobotIcon = "";
- //属性系数
- public int[] Randoms = { 0, 0, 0 };
- //卡牌id列表
- public int[] CardIdList = { 0, 0, 0 };
- //套装id列表
- public int[] SuitList = { 0, 0, 0 };
- [BsonIgnore] public ArenaTargetProto proto;
- }
- }
|