排行榜上好友宝器修改
parent
d7d8a6071b
commit
dd93f737ff
|
@ -59,6 +59,7 @@ EQUIP_SKILLID_FIELD = protobuf.FieldDescriptor();
|
|||
EQUIP_ISLOCKED_FIELD = protobuf.FieldDescriptor();
|
||||
EQUIP_EXP_FIELD = protobuf.FieldDescriptor();
|
||||
EQUIP_TREELV_FIELD = protobuf.FieldDescriptor();
|
||||
EQUIP_FOURSPIRIT_FIELD = protobuf.FieldDescriptor();
|
||||
SOULPOS = protobuf.Descriptor();
|
||||
SOULPOS_EQUIPID_FIELD = protobuf.FieldDescriptor();
|
||||
SOULPOS_POSITION_FIELD = protobuf.FieldDescriptor();
|
||||
|
@ -1264,11 +1265,21 @@ EQUIP_TREELV_FIELD.default_value = 0
|
|||
EQUIP_TREELV_FIELD.type = 5
|
||||
EQUIP_TREELV_FIELD.cpp_type = 1
|
||||
|
||||
EQUIP_FOURSPIRIT_FIELD.name = "fourSpirit"
|
||||
EQUIP_FOURSPIRIT_FIELD.full_name = ".rpc.protocols.Equip.fourSpirit"
|
||||
EQUIP_FOURSPIRIT_FIELD.number = 11
|
||||
EQUIP_FOURSPIRIT_FIELD.index = 10
|
||||
EQUIP_FOURSPIRIT_FIELD.label = 1
|
||||
EQUIP_FOURSPIRIT_FIELD.has_default_value = false
|
||||
EQUIP_FOURSPIRIT_FIELD.default_value = 0
|
||||
EQUIP_FOURSPIRIT_FIELD.type = 5
|
||||
EQUIP_FOURSPIRIT_FIELD.cpp_type = 1
|
||||
|
||||
EQUIP.name = "Equip"
|
||||
EQUIP.full_name = ".rpc.protocols.Equip"
|
||||
EQUIP.nested_types = {}
|
||||
EQUIP.enum_types = {}
|
||||
EQUIP.fields = {EQUIP_ID_FIELD, EQUIP_EQUIPID_FIELD, EQUIP_MAINATTRIBUTE_FIELD, EQUIP_SECONDATTRIBUTE_FIELD, EQUIP_REBUILDLEVEL_FIELD, EQUIP_CREATETIME_FIELD, EQUIP_SKILLID_FIELD, EQUIP_ISLOCKED_FIELD, EQUIP_EXP_FIELD, EQUIP_TREELV_FIELD}
|
||||
EQUIP.fields = {EQUIP_ID_FIELD, EQUIP_EQUIPID_FIELD, EQUIP_MAINATTRIBUTE_FIELD, EQUIP_SECONDATTRIBUTE_FIELD, EQUIP_REBUILDLEVEL_FIELD, EQUIP_CREATETIME_FIELD, EQUIP_SKILLID_FIELD, EQUIP_ISLOCKED_FIELD, EQUIP_EXP_FIELD, EQUIP_TREELV_FIELD, EQUIP_FOURSPIRIT_FIELD}
|
||||
EQUIP.is_extendable = false
|
||||
EQUIP.extensions = {}
|
||||
SOULPOS_EQUIPID_FIELD.name = "equipId"
|
||||
|
|
|
@ -767,7 +767,7 @@ function this.InitSingleTreasureData(_singleData)
|
|||
single.maxRefineLv=currJewel.Max[2]
|
||||
single.maxTreeLv = currJewel.GodHoodMaxlv
|
||||
single.treeLv = single.maxTreeLv or 0
|
||||
single.fourTotal = 0
|
||||
single.fourTotal = _singleData.fourSpirit or 0
|
||||
single.upHeroDid=""
|
||||
local quantity=currJewel.Level
|
||||
single.quantity=quantity
|
||||
|
|
|
@ -616,7 +616,7 @@ function this.InitSingleTreasureData(_singleData)
|
|||
single.lv=_singleData.exp
|
||||
single.refineLv=_singleData.rebuildLevel
|
||||
single.treeLv = _singleData.treeLv or 0
|
||||
single.fourTotal = 0
|
||||
single.fourTotal = _singleData.fourSpirit or 0
|
||||
single.maxLv=currJewel.Max[1]
|
||||
single.maxRefineLv=currJewel.Max[2]
|
||||
single.maxTreeLv = currJewel.GodHoodMaxlv
|
||||
|
|
|
@ -386,8 +386,8 @@ function this.InitSingleTreasureData(_singleData,_fourTotal,_treeLevel)
|
|||
single.maxRefineLv=currJewel.Max[2]
|
||||
single.upHeroDid=""
|
||||
single.maxTreeLv = currJewel.GodHoodMaxlv
|
||||
single.treeLv = _treeLevel
|
||||
single.fourTotal = _fourTotal
|
||||
single.treeLv = _treeLevel or 0
|
||||
single.fourTotal = _fourTotal or 0
|
||||
local quantity=currJewel.Level
|
||||
single.quantity=quantity
|
||||
single.frame=GetQuantityImageByquality(quantity)
|
||||
|
|
Loading…
Reference in New Issue