| | |
| | | # 等级
|
| | | extraValueStr += GetTalkExtraValueStar(ShareDefine.Def_TalkExtraValue_Bit_LV) % objTalk.GetLV()
|
| | | # 伴侣信息
|
| | | coupleName, bridePriceMaxID = "", 0
|
| | | coupleInfo = PyGameData.g_coupleInfo.get(playerID)
|
| | | if coupleInfo and len(coupleInfo) >= 2 and coupleInfo[0] == PlayerControl.GetCoupleID(objTalk):
|
| | | coupleName = coupleInfo[1]
|
| | | bridePriceMaxID = PlayerLove.GetBridePriceMaxID(objTalk)
|
| | | extraValueStr = "%s|%s|%s" % (extraValueStr, coupleName, bridePriceMaxID)
|
| | | coupleName = PlayerControl.GetCoupleName(objTalk)
|
| | | coupleJob = PlayerControl.GetCoupleJob(objTalk)
|
| | | bridePriceMaxID = PlayerControl.GetBridePriceMaxID(objTalk)
|
| | | extraValueStr = "%s|%s|%s|%s" % (extraValueStr, coupleName, coupleJob, bridePriceMaxID)
|
| | | return extraValueStr
|
| | |
|
| | |
|