| | |
| | | } |
| | | break; |
| | | default: |
| | | data.trueCount = LegendPropertyUtility.GetEquipPropertyCount(itemId); |
| | | data.properties = LegendPropertyUtility.GetEquipProperties(itemId); |
| | | if (config.Effect1 == 220)
|
| | | {
|
| | | data.isPreview = false;
|
| | | var appConfig = AppointItemConfig.Get(itemId);
|
| | | data.trueCount = 0;
|
| | |
|
| | | data.properties = new List<Int2>();
|
| | | for (var i = 0; i < appConfig.LegendAttrID.Length; i++)
|
| | | {
|
| | | data.properties.Add(new Int2(appConfig.LegendAttrID[i], appConfig.LegendAttrValue[i]));
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | data.trueCount = LegendPropertyUtility.GetEquipPropertyCount(itemId);
|
| | | data.properties = LegendPropertyUtility.GetEquipProperties(itemId);
|
| | | } |
| | | break; |
| | | } |
| | | |