63
64
65
66
67
68
69
70
71
72
73
|
str["这个残局的效果卡数量"] = Duel.GetMatchingGroupCount(fun["是否效果卡"],0,cache_1,cache_1,nil)
str["开局说明"] = "效果卡:"
str["开局说明"] = str["开局说明"] .. str["这个残局的效果卡数量"]
Debug.ShowHint(str["开局说明"])
Debug.ShowHint(Duel.CheckLocation(0, LOCATION_MZONE, 5))
end
|
|
|
63
64
65
66
67
68
69
70
71
72
73
|
str["这个残局的效果卡数量"] = Duel.GetMatchingGroupCount(fun["是否效果卡"],0,cache_1,cache_1,nil)
str["开局说明"] = "效果卡:"
str["开局说明"] = str["开局说明"] .. str["这个残局的效果卡数量"]
Debug.ShowHint(str["开局说明"])
Debug.ShowHint(tostring(Duel.CheckLocation(0, LOCATION_MZONE, 5)))
end
|