修改表结构,修改物品详情,增加物品品质描边

This commit is contained in:
2025-10-21 23:15:31 +08:00
parent 4ee5d0885c
commit af7592331b
41 changed files with 595 additions and 305 deletions

View File

@@ -19,13 +19,21 @@ namespace NBF
[ProtoMember(2)]
public string Model { get; set; } // 模型
[ProtoMember(3)]
public string Icon { get; set; } // 图标
[ProtoMember(4)]
public uint Type { get; set; } // 类型
[ProtoMember(4)]
public uint Quality { get; set; } // 品质
[ProtoMember(5)]
public uint Max { get; set; } // 最大堆叠数量
public uint Brand { get; set; } // 品牌
[ProtoMember(6)]
public uint AutoUse { get; set; } // 获得自动使用
public uint Weight { get; set; } // 重量(克)
[ProtoMember(7)]
public uint Length { get; set; } // 长度(毫米)
[ProtoMember(8)]
public uint Max { get; set; } // 最大堆叠数量
[ProtoMember(9)]
public uint AutoUse { get; set; } // 获得自动使用
[ProtoMember(10)]
public uint Deal { get; set; } // 交易类型
[ProtoIgnore]
public uint Key => Id;