47 lines
1.8 KiB
Lua
47 lines
1.8 KiB
Lua
local GameSettingConst = {}
|
|
|
|
-- 社区链接 discord之类
|
|
GameSettingConst.COMMUNITY_URL = {
|
|
[GConst.LANGUAGE.ENGLISH] = "https://discord.gg/7wzzZ3GR5B",
|
|
[GConst.LANGUAGE.JAPANESE] = "https://discord.gg/JRPQ8AcRc4",
|
|
[GConst.LANGUAGE.CHINESE_TC] = "https://discord.gg/zQaWZJsmRb",
|
|
[GConst.LANGUAGE.KOREAN] = "https://m.game.naver.com/lounge/Knights_Combo/home",
|
|
}
|
|
|
|
GameSettingConst.COMMUNITY_ICON = {
|
|
[GConst.LANGUAGE.ENGLISH] = "setting_discord",
|
|
[GConst.LANGUAGE.JAPANESE] = "setting_discord",
|
|
[GConst.LANGUAGE.CHINESE_TC] = "setting_discord",
|
|
[GConst.LANGUAGE.KOREAN] = "setting_naver",
|
|
}
|
|
|
|
GameSettingConst.COMMUNITY_TXT = {
|
|
[GConst.LANGUAGE.ENGLISH] = I18N.GlobalConst.DISCORD_SETTING_DESC,
|
|
[GConst.LANGUAGE.JAPANESE] = I18N.GlobalConst.DISCORD_SETTING_DESC,
|
|
[GConst.LANGUAGE.CHINESE_TC] = I18N.GlobalConst.DISCORD_SETTING_DESC,
|
|
[GConst.LANGUAGE.KOREAN] = I18N.GlobalConst.NAVER_SETTING_DESC,
|
|
}
|
|
|
|
-- 社交链接 fb之类
|
|
GameSettingConst.SOCIAL_URL = {
|
|
[GConst.LANGUAGE.ENGLISH] = "https://www.facebook.com/KnightsComboOfficial",
|
|
[GConst.LANGUAGE.JAPANESE] = "https://twitter.com/KnightsCombo_jp",
|
|
[GConst.LANGUAGE.CHINESE_TC] = "https://www.facebook.com/KnightsComboTWofficial/",
|
|
[GConst.LANGUAGE.KOREAN] = "https://twitter.com/KnightsCombo_KR",
|
|
}
|
|
|
|
GameSettingConst.SOCIAL_ICON = {
|
|
[GConst.LANGUAGE.ENGLISH] = "setting_facebook",
|
|
[GConst.LANGUAGE.JAPANESE] = "setting_twitter",
|
|
[GConst.LANGUAGE.CHINESE_TC] = "setting_facebook",
|
|
[GConst.LANGUAGE.KOREAN] = "setting_twitter",
|
|
}
|
|
|
|
GameSettingConst.SOCIAL_DESC = {
|
|
[GConst.LANGUAGE.ENGLISH] = I18N.GlobalConst.COMMUNITY_DESC,
|
|
[GConst.LANGUAGE.JAPANESE] = I18N.GlobalConst.TWITTER_DESC,
|
|
[GConst.LANGUAGE.CHINESE_TC] = I18N.GlobalConst.COMMUNITY_DESC,
|
|
[GConst.LANGUAGE.KOREAN] = I18N.GlobalConst.TWITTER_DESC,
|
|
}
|
|
|
|
return GameSettingConst |