21 lines
1.2 KiB
Plaintext
21 lines
1.2 KiB
Plaintext
LuaWelfareMonthlyCard = {}
|
|
|
|
function LuaWelfareMonthlyCard:Start()
|
|
|
|
if(CS.NetworkConfig.Table_Version == "tablesbt") then
|
|
cardDesc1:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87500}");
|
|
cardDesc2:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87501}");
|
|
cardDesc3:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87502}");
|
|
cardDesc4:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87503}");
|
|
cardDesc5:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87508}");
|
|
else
|
|
cardDesc1:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87504}");
|
|
cardDesc2:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87505}");
|
|
cardDesc3:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87506}");
|
|
cardDesc4:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87507}");
|
|
cardDesc5:GetComponent("Text").text = CS.GCGame.Table.StrDictionary.GetClientDictionaryString("#{87509}");
|
|
end
|
|
|
|
end
|
|
|