Merge branch 'dev' of git.juzugame.com:b6-client/b6-lua into dev
This commit is contained in:
commit
8aee4b4ed9
@ -73,7 +73,7 @@ function ConfigManager:getMainKeyWithOtherKey(configName, keyName, keyValue)
|
|||||||
end
|
end
|
||||||
local kv = config.keys[keyName]
|
local kv = config.keys[keyName]
|
||||||
if kv[keyValue] then
|
if kv[keyValue] then
|
||||||
return kv[keyValue]._id
|
return kv[keyValue].id
|
||||||
end
|
end
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
|
|||||||
@ -1,26 +1,26 @@
|
|||||||
local attr = {
|
local attr = {
|
||||||
[1]={
|
[1]={
|
||||||
["_id"]=1,
|
["id"]=1,
|
||||||
["name"]="hp"
|
["name"]="hp"
|
||||||
},
|
},
|
||||||
[2]={
|
[2]={
|
||||||
["_id"]=2,
|
["id"]=2,
|
||||||
["name"]="atk_red"
|
["name"]="atk_red"
|
||||||
},
|
},
|
||||||
[3]={
|
[3]={
|
||||||
["_id"]=3,
|
["id"]=3,
|
||||||
["name"]="atk_yellow"
|
["name"]="atk_yellow"
|
||||||
},
|
},
|
||||||
[4]={
|
[4]={
|
||||||
["_id"]=4,
|
["id"]=4,
|
||||||
["name"]="atk_green"
|
["name"]="atk_green"
|
||||||
},
|
},
|
||||||
[5]={
|
[5]={
|
||||||
["_id"]=5,
|
["id"]=5,
|
||||||
["name"]="atk_blue"
|
["name"]="atk_blue"
|
||||||
},
|
},
|
||||||
[6]={
|
[6]={
|
||||||
["_id"]=6,
|
["id"]=6,
|
||||||
["name"]="atk_purple"
|
["name"]="atk_purple"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,13 +1,13 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[1]={
|
[1]={
|
||||||
["_id"]=1,
|
["id"]=1,
|
||||||
["name"]="hurt",
|
["name"]="hurt",
|
||||||
["buff_type"]=3,
|
["buff_type"]=3,
|
||||||
["decr"]=3,
|
["decr"]=3,
|
||||||
["formula"]=1
|
["formula"]=1
|
||||||
},
|
},
|
||||||
[2]={
|
[2]={
|
||||||
["_id"]=2,
|
["id"]=2,
|
||||||
["name"]="hurt_red",
|
["name"]="hurt_red",
|
||||||
["buff_type"]=3,
|
["buff_type"]=3,
|
||||||
["position"]=1,
|
["position"]=1,
|
||||||
@ -15,7 +15,7 @@ local buff = {
|
|||||||
["formula"]=1
|
["formula"]=1
|
||||||
},
|
},
|
||||||
[3]={
|
[3]={
|
||||||
["_id"]=3,
|
["id"]=3,
|
||||||
["name"]="hurt_yellow",
|
["name"]="hurt_yellow",
|
||||||
["buff_type"]=3,
|
["buff_type"]=3,
|
||||||
["position"]=2,
|
["position"]=2,
|
||||||
@ -23,7 +23,7 @@ local buff = {
|
|||||||
["formula"]=1
|
["formula"]=1
|
||||||
},
|
},
|
||||||
[4]={
|
[4]={
|
||||||
["_id"]=4,
|
["id"]=4,
|
||||||
["name"]="hurt_green",
|
["name"]="hurt_green",
|
||||||
["buff_type"]=3,
|
["buff_type"]=3,
|
||||||
["position"]=3,
|
["position"]=3,
|
||||||
@ -31,7 +31,7 @@ local buff = {
|
|||||||
["formula"]=1
|
["formula"]=1
|
||||||
},
|
},
|
||||||
[5]={
|
[5]={
|
||||||
["_id"]=5,
|
["id"]=5,
|
||||||
["name"]="hurt_blue",
|
["name"]="hurt_blue",
|
||||||
["buff_type"]=3,
|
["buff_type"]=3,
|
||||||
["position"]=4,
|
["position"]=4,
|
||||||
@ -39,7 +39,7 @@ local buff = {
|
|||||||
["formula"]=1
|
["formula"]=1
|
||||||
},
|
},
|
||||||
[6]={
|
[6]={
|
||||||
["_id"]=6,
|
["id"]=6,
|
||||||
["name"]="hurt_purple",
|
["name"]="hurt_purple",
|
||||||
["buff_type"]=3,
|
["buff_type"]=3,
|
||||||
["position"]=5,
|
["position"]=5,
|
||||||
@ -47,7 +47,7 @@ local buff = {
|
|||||||
["formula"]=1
|
["formula"]=1
|
||||||
},
|
},
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add",
|
["name"]="dec_dmg_red_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -56,7 +56,7 @@ local buff = {
|
|||||||
["icon"]="dec_dmg_red_add"
|
["icon"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add",
|
["name"]="dec_dmg_yellow_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -65,7 +65,7 @@ local buff = {
|
|||||||
["icon"]="dec_dmg_yellow_add"
|
["icon"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add",
|
["name"]="dec_dmg_green_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -74,7 +74,7 @@ local buff = {
|
|||||||
["icon"]="dec_dmg_green_add"
|
["icon"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add",
|
["name"]="dec_dmg_blue_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -83,7 +83,7 @@ local buff = {
|
|||||||
["icon"]="dec_dmg_blue_add"
|
["icon"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add",
|
["name"]="dec_dmg_purple_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -92,7 +92,7 @@ local buff = {
|
|||||||
["icon"]="dec_dmg_purple_add"
|
["icon"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add",
|
["name"]="dec_dmg_all_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -100,7 +100,7 @@ local buff = {
|
|||||||
["icon"]="dec_dmg_all_add"
|
["icon"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[13]={
|
[13]={
|
||||||
["_id"]=13,
|
["id"]=13,
|
||||||
["name"]="weakness_red_add",
|
["name"]="weakness_red_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -108,7 +108,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[14]={
|
[14]={
|
||||||
["_id"]=14,
|
["id"]=14,
|
||||||
["name"]="weakness_yellow_add",
|
["name"]="weakness_yellow_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -116,7 +116,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[15]={
|
[15]={
|
||||||
["_id"]=15,
|
["id"]=15,
|
||||||
["name"]="weakness_green_add",
|
["name"]="weakness_green_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -124,7 +124,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[16]={
|
[16]={
|
||||||
["_id"]=16,
|
["id"]=16,
|
||||||
["name"]="weakness_blue_add",
|
["name"]="weakness_blue_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -132,7 +132,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[17]={
|
[17]={
|
||||||
["_id"]=17,
|
["id"]=17,
|
||||||
["name"]="weakness_purple_add",
|
["name"]="weakness_purple_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -140,14 +140,14 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[18]={
|
[18]={
|
||||||
["_id"]=18,
|
["id"]=18,
|
||||||
["name"]="weakness_all_add",
|
["name"]="weakness_all_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[19]={
|
[19]={
|
||||||
["_id"]=19,
|
["id"]=19,
|
||||||
["name"]="dmg_addition_red_add",
|
["name"]="dmg_addition_red_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -155,7 +155,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[20]={
|
[20]={
|
||||||
["_id"]=20,
|
["id"]=20,
|
||||||
["name"]="dmg_addition_yellow_add",
|
["name"]="dmg_addition_yellow_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -163,7 +163,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[21]={
|
[21]={
|
||||||
["_id"]=21,
|
["id"]=21,
|
||||||
["name"]="dmg_addition_green_add",
|
["name"]="dmg_addition_green_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -171,7 +171,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[22]={
|
[22]={
|
||||||
["_id"]=22,
|
["id"]=22,
|
||||||
["name"]="dmg_addition_blue_add",
|
["name"]="dmg_addition_blue_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -179,7 +179,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[23]={
|
[23]={
|
||||||
["_id"]=23,
|
["id"]=23,
|
||||||
["name"]="dmg_addition_purple_add",
|
["name"]="dmg_addition_purple_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -187,7 +187,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add",
|
["name"]="dmg_addition_all_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -195,14 +195,14 @@ local buff = {
|
|||||||
["icon"]="weakness_all_add"
|
["icon"]="weakness_all_add"
|
||||||
},
|
},
|
||||||
[25]={
|
[25]={
|
||||||
["_id"]=25,
|
["id"]=25,
|
||||||
["name"]="atkp_color_add",
|
["name"]="atkp_color_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[26]={
|
[26]={
|
||||||
["_id"]=26,
|
["id"]=26,
|
||||||
["name"]="atkp_red_add",
|
["name"]="atkp_red_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -210,7 +210,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[27]={
|
[27]={
|
||||||
["_id"]=27,
|
["id"]=27,
|
||||||
["name"]="atkp_yellow_add",
|
["name"]="atkp_yellow_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -218,7 +218,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[28]={
|
[28]={
|
||||||
["_id"]=28,
|
["id"]=28,
|
||||||
["name"]="atkp_green_add",
|
["name"]="atkp_green_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -226,7 +226,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[29]={
|
[29]={
|
||||||
["_id"]=29,
|
["id"]=29,
|
||||||
["name"]="atkp_blue_add",
|
["name"]="atkp_blue_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -234,7 +234,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[30]={
|
[30]={
|
||||||
["_id"]=30,
|
["id"]=30,
|
||||||
["name"]="atkp_purple_add",
|
["name"]="atkp_purple_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -242,7 +242,7 @@ local buff = {
|
|||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[31]={
|
[31]={
|
||||||
["_id"]=31,
|
["id"]=31,
|
||||||
["name"]="wavehealp",
|
["name"]="wavehealp",
|
||||||
["buff_type"]=5,
|
["buff_type"]=5,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -250,7 +250,7 @@ local buff = {
|
|||||||
["formula"]=2
|
["formula"]=2
|
||||||
},
|
},
|
||||||
[32]={
|
[32]={
|
||||||
["_id"]=32,
|
["id"]=32,
|
||||||
["name"]="heal",
|
["name"]="heal",
|
||||||
["buff_type"]=5,
|
["buff_type"]=5,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -261,7 +261,7 @@ local buff = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun",
|
["name"]="stun",
|
||||||
["buff_type"]=8,
|
["buff_type"]=8,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
@ -272,7 +272,7 @@ local buff = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield",
|
["name"]="shield",
|
||||||
["buff_type"]=2,
|
["buff_type"]=2,
|
||||||
["decr"]=3,
|
["decr"]=3,
|
||||||
@ -285,14 +285,14 @@ local buff = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
[35]={
|
[35]={
|
||||||
["_id"]=35,
|
["id"]=35,
|
||||||
["name"]="atkp_add",
|
["name"]="atkp_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec",
|
["name"]="normal_attack_dec",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
@ -302,7 +302,7 @@ local buff = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add",
|
["name"]="normal_attack_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -310,70 +310,70 @@ local buff = {
|
|||||||
["icon"]="high"
|
["icon"]="high"
|
||||||
},
|
},
|
||||||
[38]={
|
[38]={
|
||||||
["_id"]=38,
|
["id"]=38,
|
||||||
["name"]="block",
|
["name"]="block",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[39]={
|
[39]={
|
||||||
["_id"]=39,
|
["id"]=39,
|
||||||
["name"]="hpp_add",
|
["name"]="hpp_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[40]={
|
[40]={
|
||||||
["_id"]=40,
|
["id"]=40,
|
||||||
["name"]="crit_add",
|
["name"]="crit_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[41]={
|
[41]={
|
||||||
["_id"]=41,
|
["id"]=41,
|
||||||
["name"]="crit_time_add",
|
["name"]="crit_time_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[42]={
|
[42]={
|
||||||
["_id"]=42,
|
["id"]=42,
|
||||||
["name"]="exp_time_add",
|
["name"]="exp_time_add",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[43]={
|
[43]={
|
||||||
["_id"]=43,
|
["id"]=43,
|
||||||
["name"]="cured_add",
|
["name"]="cured_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[44]={
|
[44]={
|
||||||
["_id"]=44,
|
["id"]=44,
|
||||||
["name"]="cured_dec",
|
["name"]="cured_dec",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[45]={
|
[45]={
|
||||||
["_id"]=45,
|
["id"]=45,
|
||||||
["name"]="add_skill",
|
["name"]="add_skill",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=3
|
["decr"]=3
|
||||||
},
|
},
|
||||||
[46]={
|
[46]={
|
||||||
["_id"]=46,
|
["id"]=46,
|
||||||
["name"]="skill_fire_times",
|
["name"]="skill_fire_times",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=3
|
["decr"]=3
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200",
|
["name"]="shield_rebound_200",
|
||||||
["buff_type"]=2,
|
["buff_type"]=2,
|
||||||
["decr"]=3,
|
["decr"]=3,
|
||||||
@ -386,7 +386,7 @@ local buff = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn",
|
["name"]="burn",
|
||||||
["buff_type"]=4,
|
["buff_type"]=4,
|
||||||
["stack"]=1,
|
["stack"]=1,
|
||||||
@ -395,14 +395,14 @@ local buff = {
|
|||||||
["icon"]="burn"
|
["icon"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable",
|
["name"]="vulnerable",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
["icon"]="vulnerable"
|
["icon"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen",
|
["name"]="frozen",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
@ -410,7 +410,7 @@ local buff = {
|
|||||||
["control_priority"]=1
|
["control_priority"]=1
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison",
|
["name"]="poison",
|
||||||
["buff_type"]=4,
|
["buff_type"]=4,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -419,7 +419,7 @@ local buff = {
|
|||||||
["icon"]="poison"
|
["icon"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison",
|
["name"]="imprison",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
@ -427,14 +427,14 @@ local buff = {
|
|||||||
["control_priority"]=4
|
["control_priority"]=4
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt",
|
["name"]="corrupt",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
["icon"]="corrupt"
|
["icon"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed",
|
["name"]="bleed",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
@ -442,14 +442,14 @@ local buff = {
|
|||||||
["icon"]="bleed"
|
["icon"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken",
|
["name"]="weaken",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
["icon"]="weaken"
|
["icon"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy",
|
["name"]="lethargy",
|
||||||
["buff_type"]=8,
|
["buff_type"]=8,
|
||||||
["stack"]=1,
|
["stack"]=1,
|
||||||
@ -458,42 +458,42 @@ local buff = {
|
|||||||
["control_priority"]=3
|
["control_priority"]=3
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse",
|
["name"]="curse",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
["icon"]="curse"
|
["icon"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock",
|
["name"]="lock",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["decr"]=2,
|
["decr"]=2,
|
||||||
["icon"]="lock"
|
["icon"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand",
|
["name"]="first_hand",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=1,
|
["decr"]=1,
|
||||||
["icon"]="first_hand"
|
["icon"]="first_hand"
|
||||||
},
|
},
|
||||||
[60]={
|
[60]={
|
||||||
["_id"]=60,
|
["id"]=60,
|
||||||
["name"]="skill_hurt_add",
|
["name"]="skill_hurt_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=1
|
["decr"]=1
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead",
|
["name"]="undead",
|
||||||
["buff_type"]=7,
|
["buff_type"]=7,
|
||||||
["decr"]=1,
|
["decr"]=1,
|
||||||
["icon"]="undead"
|
["icon"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack",
|
["name"]="counterattack",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=1,
|
["stack"]=1,
|
||||||
@ -501,14 +501,14 @@ local buff = {
|
|||||||
["icon"]="counterattack"
|
["icon"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns",
|
["name"]="thorns",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=1,
|
["decr"]=1,
|
||||||
["icon"]="thorns"
|
["icon"]="thorns"
|
||||||
},
|
},
|
||||||
[64]={
|
[64]={
|
||||||
["_id"]=64,
|
["id"]=64,
|
||||||
["name"]="dmg_dec_red_add",
|
["name"]="dmg_dec_red_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -516,7 +516,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[65]={
|
[65]={
|
||||||
["_id"]=65,
|
["id"]=65,
|
||||||
["name"]="dmg_dec_yellow_add",
|
["name"]="dmg_dec_yellow_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -524,7 +524,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[66]={
|
[66]={
|
||||||
["_id"]=66,
|
["id"]=66,
|
||||||
["name"]="dmg_dec_green_add",
|
["name"]="dmg_dec_green_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -532,7 +532,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[67]={
|
[67]={
|
||||||
["_id"]=67,
|
["id"]=67,
|
||||||
["name"]="dmg_dec_blue_add",
|
["name"]="dmg_dec_blue_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -540,7 +540,7 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[68]={
|
[68]={
|
||||||
["_id"]=68,
|
["id"]=68,
|
||||||
["name"]="dmg_dec_purple_add",
|
["name"]="dmg_dec_purple_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
@ -548,32 +548,32 @@ local buff = {
|
|||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[69]={
|
[69]={
|
||||||
["_id"]=69,
|
["id"]=69,
|
||||||
["name"]="dmg_dec_all_add",
|
["name"]="dmg_dec_all_add",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["stack"]=2,
|
["stack"]=2,
|
||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[70]={
|
[70]={
|
||||||
["_id"]=70,
|
["id"]=70,
|
||||||
["name"]="be_sucked",
|
["name"]="be_sucked",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[71]={
|
[71]={
|
||||||
["_id"]=71,
|
["id"]=71,
|
||||||
["name"]="be_dmg_to_heal",
|
["name"]="be_dmg_to_heal",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=2
|
["decr"]=2
|
||||||
},
|
},
|
||||||
[72]={
|
[72]={
|
||||||
["_id"]=72,
|
["id"]=72,
|
||||||
["name"]="death_summon",
|
["name"]="death_summon",
|
||||||
["buff_type"]=1,
|
["buff_type"]=1,
|
||||||
["decr"]=3
|
["decr"]=3
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400",
|
["name"]="shield_rebound_400",
|
||||||
["buff_type"]=2,
|
["buff_type"]=2,
|
||||||
["decr"]=3,
|
["decr"]=3,
|
||||||
@ -586,7 +586,7 @@ local buff = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice",
|
["name"]="shield_ice",
|
||||||
["buff_type"]=2,
|
["buff_type"]=2,
|
||||||
["decr"]=3,
|
["decr"]=3,
|
||||||
@ -599,7 +599,7 @@ local buff = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400",
|
["name"]="shield_ice_rebound_400",
|
||||||
["buff_type"]=2,
|
["buff_type"]=2,
|
||||||
["decr"]=3,
|
["decr"]=3,
|
||||||
|
|||||||
191
lua/app/config/localization/localization_global_const.lua.bytes
Normal file
191
lua/app/config/localization/localization_global_const.lua.bytes
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
local LocalizationGlobalConst =
|
||||||
|
{
|
||||||
|
MAIN_BTN_1 = "MAIN_BTN_1",
|
||||||
|
QLT_DESC_1 = "QLT_DESC_1",
|
||||||
|
QLT_DESC_2 = "QLT_DESC_2",
|
||||||
|
QLT_DESC_3 = "QLT_DESC_3",
|
||||||
|
QLT_DESC_4 = "QLT_DESC_4",
|
||||||
|
QLT_DESC_5 = "QLT_DESC_5",
|
||||||
|
QLT_DESC_6 = "QLT_DESC_6",
|
||||||
|
MESSAGE_BOX_TITLE = "MESSAGE_BOX_TITLE",
|
||||||
|
BTN_TEXT_CANCEL = "BTN_TEXT_CANCEL",
|
||||||
|
BTN_TEXT_OK = "BTN_TEXT_OK",
|
||||||
|
BATTLE_DESC_1 = "BATTLE_DESC_1",
|
||||||
|
ITEM_NOT_ENOUGH = "ITEM_NOT_ENOUGH",
|
||||||
|
START_DESC = "START_DESC",
|
||||||
|
ELEMENT_NAME_1 = "ELEMENT_NAME_1",
|
||||||
|
ELEMENT_NAME_2 = "ELEMENT_NAME_2",
|
||||||
|
ELEMENT_NAME_3 = "ELEMENT_NAME_3",
|
||||||
|
ELEMENT_NAME_4 = "ELEMENT_NAME_4",
|
||||||
|
ELEMENT_NAME_5 = "ELEMENT_NAME_5",
|
||||||
|
HERO_DESC_1 = "HERO_DESC_1",
|
||||||
|
HERO_DESC_2 = "HERO_DESC_2",
|
||||||
|
HERO_DESC_3 = "HERO_DESC_3",
|
||||||
|
HERO_DESC_4 = "HERO_DESC_4",
|
||||||
|
HERO_DESC_5 = "HERO_DESC_5",
|
||||||
|
HERO_DESC_6 = "HERO_DESC_6",
|
||||||
|
HERO_DESC_7 = "HERO_DESC_7",
|
||||||
|
GET_REWARDS_DESC = "GET_REWARDS_DESC",
|
||||||
|
CLICK_CLOSE_DESC = "CLICK_CLOSE_DESC",
|
||||||
|
REWARD_DESC = "REWARD_DESC",
|
||||||
|
CONTINUE_DESC = "CONTINUE_DESC",
|
||||||
|
BATTLE_DESC_2 = "BATTLE_DESC_2",
|
||||||
|
BATTLE_DESC_3 = "BATTLE_DESC_3",
|
||||||
|
BATTLE_DESC_4 = "BATTLE_DESC_4",
|
||||||
|
BATTLE_DESC_5 = "BATTLE_DESC_5",
|
||||||
|
BATTLE_DESC_6 = "BATTLE_DESC_6",
|
||||||
|
BATTLE_DESC_7 = "BATTLE_DESC_7",
|
||||||
|
REWARD_PREVIEW_DESC = "REWARD_PREVIEW_DESC",
|
||||||
|
HERO_DESC_8 = "HERO_DESC_8",
|
||||||
|
HERO_DESC_9 = "HERO_DESC_9",
|
||||||
|
HERO_DESC_10 = "HERO_DESC_10",
|
||||||
|
BATTLE_DESC_8 = "BATTLE_DESC_8",
|
||||||
|
MAIN_BTN_2 = "MAIN_BTN_2",
|
||||||
|
MAIN_DESC_1 = "MAIN_DESC_1",
|
||||||
|
TIME_STR_DHM = "TIME_STR_DHM",
|
||||||
|
TIME_STR_M = "TIME_STR_M",
|
||||||
|
TIME_STR_MS = "TIME_STR_MS",
|
||||||
|
TIME_STR_S = "TIME_STR_S",
|
||||||
|
TIME_STR_DH = "TIME_STR_DH",
|
||||||
|
TIME_STR_HMS = "TIME_STR_HMS",
|
||||||
|
TIME_STR_HM = "TIME_STR_HM",
|
||||||
|
TIME_STR_D = "TIME_STR_D",
|
||||||
|
TIME_MS = "TIME_MS",
|
||||||
|
TIME_HMS = "TIME_HMS",
|
||||||
|
LOADING_DESC = "LOADING_DESC",
|
||||||
|
CLICK_COPY_ACOUNT_DESC = "CLICK_COPY_ACOUNT_DESC",
|
||||||
|
APP = "APP",
|
||||||
|
CHAPTER_DESC_1 = "CHAPTER_DESC_1",
|
||||||
|
SETTING_DESC = "SETTING_DESC",
|
||||||
|
SETTING_DESC_MUSIC = "SETTING_DESC_MUSIC",
|
||||||
|
SETTING_DESC_VOICE = "SETTING_DESC_VOICE",
|
||||||
|
SETTING_DESC_LANGUAGE = "SETTING_DESC_LANGUAGE",
|
||||||
|
SERVICE_DESC = "SERVICE_DESC",
|
||||||
|
PRIVACY_DESC = "PRIVACY_DESC",
|
||||||
|
CLIENT_VERSION = "CLIENT_VERSION",
|
||||||
|
BIND_ACCOUNT_DESC = "BIND_ACCOUNT_DESC",
|
||||||
|
CHANGE_ACCOUNT_DESC = "CHANGE_ACCOUNT_DESC",
|
||||||
|
DELETE_ACCOUNT_DESC = "DELETE_ACCOUNT_DESC",
|
||||||
|
SETTING_DESC_1 = "SETTING_DESC_1",
|
||||||
|
ACCOUNT_ALREADY_BINDED_DESC = "ACCOUNT_ALREADY_BINDED_DESC",
|
||||||
|
LANGUAGE_DESC = "LANGUAGE_DESC",
|
||||||
|
ACT_SEVENDAY_TITLE = "ACT_SEVENDAY_TITLE",
|
||||||
|
ACT_SEVENDAY_LEFTTIME = "ACT_SEVENDAY_LEFTTIME",
|
||||||
|
ACT_SEVENDAY_TASK = "ACT_SEVENDAY_TASK",
|
||||||
|
ACT_SEVENDAY_DESC = "ACT_SEVENDAY_DESC",
|
||||||
|
BTN_CLAIM = "BTN_CLAIM",
|
||||||
|
BTN_DONE = "BTN_DONE",
|
||||||
|
BOUNTY_BUY_LEVEL_TITLE = "BOUNTY_BUY_LEVEL_TITLE",
|
||||||
|
BOUNTY_BUY_LEVEL_COUNTENT = "BOUNTY_BUY_LEVEL_COUNTENT",
|
||||||
|
BOUNTY_PURCHASE_NAME = "BOUNTY_PURCHASE_NAME",
|
||||||
|
BOUNTY_DESC_1 = "BOUNTY_DESC_1",
|
||||||
|
BOUNTY_DESC_2 = "BOUNTY_DESC_2",
|
||||||
|
REWARD_BOX_DESC = "REWARD_BOX_DESC",
|
||||||
|
BOUNTY_DESC_3 = "BOUNTY_DESC_3",
|
||||||
|
STR_MAX = "STR_MAX",
|
||||||
|
ALREADY_ACTIVE = "ALREADY_ACTIVE",
|
||||||
|
ACTIVE_BOUNTY = "ACTIVE_BOUNTY",
|
||||||
|
BOUNTY_FREE_NAME = "BOUNTY_FREE_NAME",
|
||||||
|
CONFIRM_IGNORE = "CONFIRM_IGNORE",
|
||||||
|
MAIL_NAME = "MAIL_NAME",
|
||||||
|
COLLET_REWARDS = "COLLET_REWARDS",
|
||||||
|
TASK_NAME = "TASK_NAME",
|
||||||
|
TASK_DAILY = "TASK_DAILY",
|
||||||
|
TASK_CHALLENGE = "TASK_CHALLENGE",
|
||||||
|
TASK_HELP_1 = "TASK_HELP_1",
|
||||||
|
STR_REFRESH = "STR_REFRESH",
|
||||||
|
STR_UNLOCK = "STR_UNLOCK",
|
||||||
|
TASK_DESC_1 = "TASK_DESC_1",
|
||||||
|
STR_COMPLETED = "STR_COMPLETED",
|
||||||
|
HERO_CARD_TIPS_DESC = "HERO_CARD_TIPS_DESC",
|
||||||
|
HERO_CARD_DESC_QLT_2 = "HERO_CARD_DESC_QLT_2",
|
||||||
|
HERO_CARD_DESC_QLT_3 = "HERO_CARD_DESC_QLT_3",
|
||||||
|
HERO_CARD_DESC_QLT_4 = "HERO_CARD_DESC_QLT_4",
|
||||||
|
HERO_CARD_DESC_QLT_5 = "HERO_CARD_DESC_QLT_5",
|
||||||
|
HERO_CARD_DESC_QLT_6 = "HERO_CARD_DESC_QLT_6",
|
||||||
|
IDLE_DROP_REWARD = "IDLE_DROP_REWARD",
|
||||||
|
IDLE_DROP_DESC_1 = "IDLE_DROP_DESC_1",
|
||||||
|
PER_HOUR = "PER_HOUR",
|
||||||
|
IDLE_DROP_DESC_2 = "IDLE_DROP_DESC_2",
|
||||||
|
IDLE_QUICK = "IDLE_QUICK",
|
||||||
|
IDLE_DROP_DESC_3 = "IDLE_DROP_DESC_3",
|
||||||
|
STR_FREE = "STR_FREE",
|
||||||
|
TODAY_REMAIN_TIMES = "TODAY_REMAIN_TIMES",
|
||||||
|
BUY_ENERGY = "BUY_ENERGY",
|
||||||
|
MAIL_TITLE = "MAIL_TITLE",
|
||||||
|
BTN_DELETE_ALL_READ_MAIL = "BTN_DELETE_ALL_READ_MAIL",
|
||||||
|
BTN_CLAIM_ALL = "BTN_CLAIM_ALL",
|
||||||
|
BTN_READ = "BTN_READ",
|
||||||
|
BATTLE_DESC_9 = "BATTLE_DESC_9",
|
||||||
|
BATTLE_DESC_10 = "BATTLE_DESC_10",
|
||||||
|
BLOCK_DESC = "BLOCK_DESC",
|
||||||
|
COUNTER_ATTACK_DESC = "COUNTER_ATTACK_DESC",
|
||||||
|
EXPIRES_IN_HOURS = "EXPIRES_IN_HOURS",
|
||||||
|
EXTRA_REWARDS = "EXTRA_REWARDS",
|
||||||
|
PLAYER_LEVEL_UP_DESC = "PLAYER_LEVEL_UP_DESC",
|
||||||
|
LEVEL_UP_REWARD = "LEVEL_UP_REWARD",
|
||||||
|
CLICK_TO_CONTINUE = "CLICK_TO_CONTINUE",
|
||||||
|
BOUNTY_DESC_4 = "BOUNTY_DESC_4",
|
||||||
|
RELOGIN = "RELOGIN",
|
||||||
|
GOLD_PIG_CLOSE_DESC = "GOLD_PIG_CLOSE_DESC",
|
||||||
|
GOLD_PIG_TITLE = "GOLD_PIG_TITLE",
|
||||||
|
GOLD_PIG_DESC = "GOLD_PIG_DESC",
|
||||||
|
SIDE_BAR_FULL = "SIDE_BAR_FULL",
|
||||||
|
DAILY_CHALLENGE = "DAILY_CHALLENGE",
|
||||||
|
LEVEL_FUND_DESC_1 = "LEVEL_FUND_DESC_1",
|
||||||
|
BUFF_DESC = "BUFF_DESC",
|
||||||
|
DAILY_CHALLENGE_DESC_1 = "DAILY_CHALLENGE_DESC_1",
|
||||||
|
DISCONNECT_RELOGIN = "DISCONNECT_RELOGIN",
|
||||||
|
RECONNECT = "RECONNECT",
|
||||||
|
RELOGIN = "RELOGIN",
|
||||||
|
SEVEN_DAY_TITLE = "SEVEN_DAY_TITLE",
|
||||||
|
SEVEN_DAY_DESC_1 = "SEVEN_DAY_DESC_1",
|
||||||
|
DAY_X = "DAY_X",
|
||||||
|
DAY_X_UNLOCK = "DAY_X_UNLOCK",
|
||||||
|
SEVEN_DAY_DESC_2 = "SEVEN_DAY_DESC_2",
|
||||||
|
FUNC_UNLOCK = "FUNC_UNLOCK",
|
||||||
|
MAIN_BTN_3 = "MAIN_BTN_3",
|
||||||
|
SHOP_DESC_1 = "SHOP_DESC_1",
|
||||||
|
SHOP_DESC_2 = "SHOP_DESC_2",
|
||||||
|
SHOP_DESC_3 = "SHOP_DESC_3",
|
||||||
|
SHOP_DESC_4 = "SHOP_DESC_4",
|
||||||
|
SHOP_DESC_5 = "SHOP_DESC_5",
|
||||||
|
SHOP_DESC_6 = "SHOP_DESC_6",
|
||||||
|
SHOP_DESC_7 = "SHOP_DESC_7",
|
||||||
|
SHOP_DESC_8 = "SHOP_DESC_8",
|
||||||
|
SHOP_DESC_9 = "SHOP_DESC_9",
|
||||||
|
SHOP_DESC_10 = "SHOP_DESC_10",
|
||||||
|
SHOP_DESC_11 = "SHOP_DESC_11",
|
||||||
|
SHOP_DESC_12 = "SHOP_DESC_12",
|
||||||
|
SHOP_DESC_13 = "SHOP_DESC_13",
|
||||||
|
SHOP_DESC_14 = "SHOP_DESC_14",
|
||||||
|
SHOP_DESC_15 = "SHOP_DESC_15",
|
||||||
|
SHOP_DESC_16 = "SHOP_DESC_16",
|
||||||
|
SHOP_DESC_17 = "SHOP_DESC_17",
|
||||||
|
SHOP_DESC_18 = "SHOP_DESC_18",
|
||||||
|
SHOP_DESC_19 = "SHOP_DESC_19",
|
||||||
|
SHOP_DESC_20 = "SHOP_DESC_20",
|
||||||
|
SHOP_DESC_21 = "SHOP_DESC_21",
|
||||||
|
SHOP_DESC_22 = "SHOP_DESC_22",
|
||||||
|
SHOP_DESC_23 = "SHOP_DESC_23",
|
||||||
|
SHOP_DESC_24 = "SHOP_DESC_24",
|
||||||
|
SHOP_DESC_25 = "SHOP_DESC_25",
|
||||||
|
SHOP_DESC_26 = "SHOP_DESC_26",
|
||||||
|
SHOP_DESC_27 = "SHOP_DESC_27",
|
||||||
|
SHOP_DESC_28 = "SHOP_DESC_28",
|
||||||
|
SHOP_DESC_29 = "SHOP_DESC_29",
|
||||||
|
HERO_DESC_11 = "HERO_DESC_11",
|
||||||
|
SHOP_DESC_30 = "SHOP_DESC_30",
|
||||||
|
SHOP_DESC_31 = "SHOP_DESC_31",
|
||||||
|
SHOP_DESC_32 = "SHOP_DESC_32",
|
||||||
|
SHOP_DESC_33 = "SHOP_DESC_33",
|
||||||
|
SHOP_DESC_34 = "SHOP_DESC_34",
|
||||||
|
SHOP_DESC_35 = "SHOP_DESC_35",
|
||||||
|
SHOP_DESC_36 = "SHOP_DESC_36",
|
||||||
|
FUNC_OPEN_LEVEL = "FUNC_OPEN_LEVEL",
|
||||||
|
FUNC_OPEN_STAGE = "FUNC_OPEN_STAGE",
|
||||||
|
HERO_UNLOCK = "HERO_UNLOCK",
|
||||||
|
HERO_UNLOCK_DESC = "HERO_UNLOCK_DESC",
|
||||||
|
}
|
||||||
|
|
||||||
|
return LocalizationGlobalConst
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2d0a2a24dd235784a83de430212d6fb2
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,151 +1,151 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["desc"]="红色抗性:受到红色元素英雄的伤害降低{0}。",
|
["desc"]="红色抗性:受到红色元素英雄的伤害降低{0}。",
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["desc"]="黄色抗性:受到黄色元素英雄的伤害降低{0}。",
|
["desc"]="黄色抗性:受到黄色元素英雄的伤害降低{0}。",
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["desc"]="绿色抗性:受到绿色元素英雄的伤害降低{0}。",
|
["desc"]="绿色抗性:受到绿色元素英雄的伤害降低{0}。",
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["desc"]="蓝色抗性:受到蓝色元素英雄的伤害降低{0}。",
|
["desc"]="蓝色抗性:受到蓝色元素英雄的伤害降低{0}。",
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["desc"]="紫色抗性:受到紫色元素英雄的伤害降低{0}。",
|
["desc"]="紫色抗性:受到紫色元素英雄的伤害降低{0}。",
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["desc"]="极致抗性:受到所有英雄的伤害降低{0}。",
|
["desc"]="极致抗性:受到所有英雄的伤害降低{0}。",
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["desc"]="伤害提升:造成的伤害提升{0}。",
|
["desc"]="伤害提升:造成的伤害提升{0}。",
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["desc"]="眩晕:本回合无法行动。",
|
["desc"]="眩晕:本回合无法行动。",
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["desc"]="护盾:可承受最大生命值{0}的伤害。",
|
["desc"]="护盾:可承受最大生命值{0}的伤害。",
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["desc"]="冰霜:普攻次数-{0}。",
|
["desc"]="冰霜:普攻次数-{0}。",
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["desc"]="亢奋:普攻次数+{0}。",
|
["desc"]="亢奋:普攻次数+{0}。",
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["desc"]="反伤护盾:可承受最大生命值{0}的伤害,反弹200%对方伤害。",
|
["desc"]="反伤护盾:可承受最大生命值{0}的伤害,反弹200%对方伤害。",
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["desc"]="灼烧:回合结束时造成释放者攻击力{0}的伤害。",
|
["desc"]="灼烧:回合结束时造成释放者攻击力{0}的伤害。",
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["desc"]="易伤:受到所有伤害提升{0}。",
|
["desc"]="易伤:受到所有伤害提升{0}。",
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["desc"]="冻结:本回合无法行动,且增益效果不生效。",
|
["desc"]="冻结:本回合无法行动,且增益效果不生效。",
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["desc"]="中毒:回合结束时造成释放者攻击力{0}的伤害。",
|
["desc"]="中毒:回合结束时造成释放者攻击力{0}的伤害。",
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["desc"]="禁锢:本回合只可使用普攻,且技能进度不会增长。",
|
["desc"]="禁锢:本回合只可使用普攻,且技能进度不会增长。",
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["desc"]="腐败:生命恢复效果降低{0}。",
|
["desc"]="腐败:生命恢复效果降低{0}。",
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["desc"]="流血:受击时恢复攻击者生命,回合结束时造成释放者攻击力{0}的伤害。",
|
["desc"]="流血:受击时恢复攻击者生命,回合结束时造成释放者攻击力{0}的伤害。",
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["desc"]="虚弱:造成的伤害降低{0}。",
|
["desc"]="虚弱:造成的伤害降低{0}。",
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["desc"]="昏睡:本回合无法行动,受击会移除效果。",
|
["desc"]="昏睡:本回合无法行动,受击会移除效果。",
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["desc"]="诅咒:攻击不会造成伤害,而是治疗对方。",
|
["desc"]="诅咒:攻击不会造成伤害,而是治疗对方。",
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["desc"]="锁定:随机锁定棋盘上的一种颜色,无法选中。",
|
["desc"]="锁定:随机锁定棋盘上的一种颜色,无法选中。",
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["desc"]="先手:每回合都率先出手。",
|
["desc"]="先手:每回合都率先出手。",
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["desc"]="不死:受到致命伤害不会死亡。",
|
["desc"]="不死:受到致命伤害不会死亡。",
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["desc"]="反击:受到直接时有{0}的概率进行反击。",
|
["desc"]="反击:受到直接时有{0}的概率进行反击。",
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["desc"]="反伤:反弹{0}对方伤害。",
|
["desc"]="反伤:反弹{0}对方伤害。",
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["desc"]="反伤护盾:可承受最大生命值{0}的伤害,反弹400%对方伤害。",
|
["desc"]="反伤护盾:可承受最大生命值{0}的伤害,反弹400%对方伤害。",
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["desc"]="冰霜护盾:可承受最大生命值{0}的伤害。",
|
["desc"]="冰霜护盾:可承受最大生命值{0}的伤害。",
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["desc"]="冰霜护盾:可承受最大生命值{0}的伤害,反弹400%对方伤害。",
|
["desc"]="冰霜护盾:可承受最大生命值{0}的伤害,反弹400%对方伤害。",
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
|
|||||||
191
lua/app/config/strings/cn/global.lua.bytes
Normal file
191
lua/app/config/strings/cn/global.lua.bytes
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "战斗",
|
||||||
|
["QLT_DESC_1"] = "普通",
|
||||||
|
["QLT_DESC_2"] = "优秀",
|
||||||
|
["QLT_DESC_3"] = "稀有",
|
||||||
|
["QLT_DESC_4"] = "史诗",
|
||||||
|
["QLT_DESC_5"] = "传说",
|
||||||
|
["QLT_DESC_6"] = "神话",
|
||||||
|
["MESSAGE_BOX_TITLE"] = "提示",
|
||||||
|
["BTN_TEXT_CANCEL"] = "取消",
|
||||||
|
["BTN_TEXT_OK"] = "确定",
|
||||||
|
["BATTLE_DESC_1"] = "是否退出战斗",
|
||||||
|
["ITEM_NOT_ENOUGH"] = "{0}不足",
|
||||||
|
["START_DESC"] = "开始",
|
||||||
|
["ELEMENT_NAME_1"] = "红色元素",
|
||||||
|
["ELEMENT_NAME_2"] = "金色元素",
|
||||||
|
["ELEMENT_NAME_3"] = "绿色元素",
|
||||||
|
["ELEMENT_NAME_4"] = "蓝色元素",
|
||||||
|
["ELEMENT_NAME_5"] = "紫色元素",
|
||||||
|
["HERO_DESC_1"] = "等级{0}",
|
||||||
|
["HERO_DESC_2"] = "生命",
|
||||||
|
["HERO_DESC_3"] = "攻击力",
|
||||||
|
["HERO_DESC_4"] = "升级",
|
||||||
|
["HERO_DESC_5"] = "激活",
|
||||||
|
["HERO_DESC_6"] = "已解锁",
|
||||||
|
["HERO_DESC_7"] = "未解锁",
|
||||||
|
["GET_REWARDS_DESC"] = "获得奖励",
|
||||||
|
["CLICK_CLOSE_DESC"] = "点击关闭",
|
||||||
|
["REWARD_DESC"] = "奖励",
|
||||||
|
["CONTINUE_DESC"] = "继续",
|
||||||
|
["BATTLE_DESC_2"] = "暂停",
|
||||||
|
["BATTLE_DESC_3"] = "刷新",
|
||||||
|
["BATTLE_DESC_4"] = "达到",
|
||||||
|
["BATTLE_DESC_5"] = "胜利",
|
||||||
|
["BATTLE_DESC_6"] = "失败",
|
||||||
|
["BATTLE_DESC_7"] = "累计造成总伤害:<color=#89FF76>{0}</color>",
|
||||||
|
["REWARD_PREVIEW_DESC"] = "奖励预览",
|
||||||
|
["HERO_DESC_8"] = "使用",
|
||||||
|
["HERO_DESC_9"] = "信息",
|
||||||
|
["HERO_DESC_10"] = "通关章节{0}解锁",
|
||||||
|
["BATTLE_DESC_8"] = "还有可上阵英雄",
|
||||||
|
["MAIN_BTN_2"] = "英雄",
|
||||||
|
["MAIN_DESC_1"] = "第{0}章",
|
||||||
|
["TIME_STR_DHM"] = "{0}天{1}时{2}分",
|
||||||
|
["TIME_STR_M"] = "{0}分",
|
||||||
|
["TIME_STR_MS"] = "{0}分{1}秒",
|
||||||
|
["TIME_STR_S"] = "{0}秒",
|
||||||
|
["TIME_STR_DH"] = "{0}天{1}时",
|
||||||
|
["TIME_STR_HMS"] = "{0}时{1}分{2}秒",
|
||||||
|
["TIME_STR_HM"] = "{0}时{1}分",
|
||||||
|
["TIME_STR_D"] = "{0}天",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
["LOADING_DESC"] = "加载中.......",
|
||||||
|
["CLICK_COPY_ACOUNT_DESC"] = "点击复制用户ID",
|
||||||
|
["APP"] = "版本号:",
|
||||||
|
["CHAPTER_DESC_1"] = "最高纪录:{0}",
|
||||||
|
["SETTING_DESC"] = "设置",
|
||||||
|
["SETTING_DESC_MUSIC"] = "音乐",
|
||||||
|
["SETTING_DESC_VOICE"] = "音效",
|
||||||
|
["SETTING_DESC_LANGUAGE"] = "语言",
|
||||||
|
["SERVICE_DESC"] = "使用条款",
|
||||||
|
["PRIVACY_DESC"] = "隐私政策",
|
||||||
|
["CLIENT_VERSION"] = "当前版本:{0}",
|
||||||
|
["BIND_ACCOUNT_DESC"] = "绑定账号",
|
||||||
|
["CHANGE_ACCOUNT_DESC"] = "切换账号",
|
||||||
|
["DELETE_ACCOUNT_DESC"] = "删除账号",
|
||||||
|
["SETTING_DESC_1"] = "ID:{0}",
|
||||||
|
["ACCOUNT_ALREADY_BINDED_DESC"] = "已绑定",
|
||||||
|
["LANGUAGE_DESC"] = "语言",
|
||||||
|
["ACT_SEVENDAY_TITLE"] = "开服嘉年华",
|
||||||
|
["ACT_SEVENDAY_LEFTTIME"] = "剩余时间:{0}天{1}小时",
|
||||||
|
["ACT_SEVENDAY_TASK"] = "任务完成:{0}/{1}",
|
||||||
|
["ACT_SEVENDAY_DESC"] = "每日将开启新的任务。",
|
||||||
|
["BTN_CLAIM"] = "领取",
|
||||||
|
["BTN_DONE"] = "已领取",
|
||||||
|
["BOUNTY_BUY_LEVEL_TITLE"] = "确认解锁等级",
|
||||||
|
["BOUNTY_BUY_LEVEL_COUNTENT"] = "立即解锁当前等级\n等级奖励将立即解锁,你收集到的积分数量仍然相同",
|
||||||
|
["BOUNTY_PURCHASE_NAME"] = "黄金通行证",
|
||||||
|
["BOUNTY_DESC_1"] = "解锁奖励和奖励任务",
|
||||||
|
["BOUNTY_DESC_2"] = "获得高级通行证,+10级,立即获得更多奖励!",
|
||||||
|
["REWARD_BOX_DESC"] = "奖励宝箱",
|
||||||
|
["BOUNTY_DESC_3"] = "当你完成通行证的所有内容,每1000个积分可以获取一个奖励宝箱",
|
||||||
|
["STR_MAX"] = "MAX",
|
||||||
|
["ALREADY_ACTIVE"] = "已激活",
|
||||||
|
["ACTIVE_BOUNTY"] = "激活黄金通行证",
|
||||||
|
["BOUNTY_FREE_NAME"] = "免费通行证",
|
||||||
|
["CONFIRM_IGNORE"] = "今日不再提示",
|
||||||
|
["MAIL_NAME"] = "邮箱",
|
||||||
|
["COLLET_REWARDS"] = "收集奖励",
|
||||||
|
["TASK_NAME"] = "任务",
|
||||||
|
["TASK_DAILY"] = "日常",
|
||||||
|
["TASK_CHALLENGE"] = "挑战",
|
||||||
|
["TASK_HELP_1"] = "每日刷新,刷新后任务将重置,可以观看广告刷新任务",
|
||||||
|
["STR_REFRESH"] = "刷新",
|
||||||
|
["STR_UNLOCK"] = "解锁",
|
||||||
|
["TASK_DESC_1"] = "通行证专属任务",
|
||||||
|
["STR_COMPLETED"] = "已完成",
|
||||||
|
["HERO_CARD_TIPS_DESC"] = "可能获得以下英雄卡牌:",
|
||||||
|
["HERO_CARD_DESC_QLT_2"] = "优秀英雄",
|
||||||
|
["HERO_CARD_DESC_QLT_3"] = "稀有英雄",
|
||||||
|
["HERO_CARD_DESC_QLT_4"] = "史诗英雄",
|
||||||
|
["HERO_CARD_DESC_QLT_5"] = "传说英雄",
|
||||||
|
["HERO_CARD_DESC_QLT_6"] = "神话英雄",
|
||||||
|
["IDLE_DROP_REWARD"] = "挂机奖励",
|
||||||
|
["IDLE_DROP_DESC_1"] = "章节越高,收益越大",
|
||||||
|
["PER_HOUR"] = "{0}/小时",
|
||||||
|
["IDLE_DROP_DESC_2"] = "最长挂机{0}小时",
|
||||||
|
["IDLE_QUICK"] = "快速挂机",
|
||||||
|
["IDLE_DROP_DESC_3"] = "立刻获得{0}小时挂机奖励",
|
||||||
|
["STR_FREE"] = "免费",
|
||||||
|
["TODAY_REMAIN_TIMES"] = "今日剩余{0}次",
|
||||||
|
["BUY_ENERGY"] = "购买体力",
|
||||||
|
["MAIL_TITLE"] = "邮箱",
|
||||||
|
["BTN_DELETE_ALL_READ_MAIL"] = "删除已读邮件",
|
||||||
|
["BTN_CLAIM_ALL"] = "领取所有",
|
||||||
|
["BTN_READ"] = "读取",
|
||||||
|
["BATTLE_DESC_9"] = "{0}攻击力:<color=#ffffff>{1}</color>",
|
||||||
|
["BATTLE_DESC_10"] = "已激活效果",
|
||||||
|
["BLOCK_DESC"] = "格挡",
|
||||||
|
["COUNTER_ATTACK_DESC"] = "反击",
|
||||||
|
["EXPIRES_IN_HOURS"] = "{0}小时到期",
|
||||||
|
["EXTRA_REWARDS"] = "额外奖励",
|
||||||
|
["PLAYER_LEVEL_UP_DESC"] = "恭喜等级达到{0}级",
|
||||||
|
["LEVEL_UP_REWARD"] = "升级奖励",
|
||||||
|
["CLICK_TO_CONTINUE"] = "点击继续",
|
||||||
|
["BOUNTY_DESC_4"] = "购买此通行证会超过通行证等级上限,会造成损失,是否购买?",
|
||||||
|
["RELOGIN"] = "重新登录",
|
||||||
|
["GOLD_PIG_CLOSE_DESC"] = "金猪已到期,请珍惜下次机会",
|
||||||
|
["GOLD_PIG_TITLE"] = "超值金猪",
|
||||||
|
["GOLD_PIG_DESC"] = "挑战关卡并收集钻石,你就可以获得一笔划算的交易。",
|
||||||
|
["SIDE_BAR_FULL"] = "MAX",
|
||||||
|
["DAILY_CHALLENGE"] = "每日挑战",
|
||||||
|
["LEVEL_FUND_DESC_1"] = "购买成长基金{0}后,可通过提升等级获得钻石。\n多档基金可同时购买",
|
||||||
|
["BUFF_DESC"] = "BUFF",
|
||||||
|
["DAILY_CHALLENGE_DESC_1"] = "今日剩余挑战次数不足",
|
||||||
|
["DISCONNECT_RELOGIN"] = "网络连接已断开, 请重新登录",
|
||||||
|
["RECONNECT"] = "网络连接已断开,是否重连",
|
||||||
|
["RELOGIN"] = "重新登录",
|
||||||
|
["SEVEN_DAY_TITLE"] = "新手七天乐",
|
||||||
|
["SEVEN_DAY_DESC_1"] = "每天将开启新的任务",
|
||||||
|
["DAY_X"] = "第{0}天",
|
||||||
|
["DAY_X_UNLOCK"] = "第{0}天解锁",
|
||||||
|
["SEVEN_DAY_DESC_2"] = "已完成任务数:<color=#8DFF81>{0}</color>/{1}",
|
||||||
|
["FUNC_UNLOCK"] = "解锁新功能",
|
||||||
|
["MAIN_BTN_3"] = "商城",
|
||||||
|
["SHOP_DESC_1"] = "普通宝箱",
|
||||||
|
["SHOP_DESC_2"] = "精致宝箱",
|
||||||
|
["SHOP_DESC_3"] = "珍贵宝箱",
|
||||||
|
["SHOP_DESC_4"] = "无额外奖励加成",
|
||||||
|
["SHOP_DESC_5"] = "开宝箱提升等级,增加宝箱奖励",
|
||||||
|
["SHOP_DESC_6"] = "宝箱等级提升!",
|
||||||
|
["SHOP_DESC_7"] = "立即打开",
|
||||||
|
["SHOP_DESC_8"] = "恭喜获得",
|
||||||
|
["SHOP_DESC_9"] = "首充礼包",
|
||||||
|
["SHOP_DESC_10"] = "章节礼包",
|
||||||
|
["SHOP_DESC_11"] = "新手礼包",
|
||||||
|
["SHOP_DESC_12"] = "助力礼包",
|
||||||
|
["SHOP_DESC_13"] = "成长礼包",
|
||||||
|
["SHOP_DESC_14"] = "金币礼包",
|
||||||
|
["SHOP_DESC_15"] = "前往商店",
|
||||||
|
["SHOP_DESC_16"] = "特惠商品",
|
||||||
|
["SHOP_DESC_17"] = "主要商品",
|
||||||
|
["SHOP_DESC_18"] = "限购{0}次",
|
||||||
|
["SHOP_DESC_19"] = "第{0}章礼包",
|
||||||
|
["SHOP_DESC_20"] = "已购买",
|
||||||
|
["SHOP_DESC_21"] = "剩余次数:{0}",
|
||||||
|
["SHOP_DESC_22"] = "刷新时间:{0}",
|
||||||
|
["SHOP_DESC_23"] = "{0}级助力礼包",
|
||||||
|
["SHOP_DESC_24"] = "必出<color=#5fff57>普通</color>英雄",
|
||||||
|
["SHOP_DESC_25"] = "必出<color=#8aedff>稀有</color>英雄",
|
||||||
|
["SHOP_DESC_26"] = "必出<color=#ff8af0>史诗</color>英雄",
|
||||||
|
["SHOP_DESC_27"] = "宝箱",
|
||||||
|
["SHOP_DESC_28"] = "每日特惠",
|
||||||
|
["SHOP_DESC_29"] = "\"每日特惠\"将每日刷新,通过观看广告可以额外刷新",
|
||||||
|
["HERO_DESC_11"] = "活动获得",
|
||||||
|
["SHOP_DESC_30"] = "是否使用钻石刷新每日特惠?",
|
||||||
|
["SHOP_DESC_31"] = "确认购买",
|
||||||
|
["SHOP_DESC_32"] = "是否花费金币购买",
|
||||||
|
["SHOP_DESC_33"] = "是否花费钻石购买",
|
||||||
|
["SHOP_DESC_34"] = "首充豪礼",
|
||||||
|
["SHOP_DESC_35"] = "充值购买任意商品,即可获得如下奖励,仅此一次!",
|
||||||
|
["SHOP_DESC_36"] = "商店",
|
||||||
|
["FUNC_OPEN_LEVEL"] = "玩家等级{0}开启",
|
||||||
|
["FUNC_OPEN_STAGE"] = "通关章节{0}开启",
|
||||||
|
["HERO_UNLOCK"] = "英雄解锁",
|
||||||
|
["HERO_UNLOCK_DESC"] = "现在可从宝箱中获得",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/cn/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/cn/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 881a36f0253598b4caf271fcfe787d69
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
25
lua/app/config/strings/de/global.lua.bytes
Normal file
25
lua/app/config/strings/de/global.lua.bytes
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "Kampf",
|
||||||
|
["QLT_DESC_1"] = "Normal",
|
||||||
|
["QLT_DESC_2"] = "Elite",
|
||||||
|
["QLT_DESC_3"] = "Selten",
|
||||||
|
["QLT_DESC_4"] = "Episch",
|
||||||
|
["QLT_DESC_5"] = "Legendär",
|
||||||
|
["QLT_DESC_6"] = "Mythologisch",
|
||||||
|
["TIME_STR_DHM"] = "{0} Tag(e) {1} Stunde(n) {2} Minute(n)",
|
||||||
|
["TIME_STR_M"] = "{0} Minute(n)",
|
||||||
|
["TIME_STR_MS"] = "{0} Minute(n) {1} Sekunde(n)",
|
||||||
|
["TIME_STR_S"] = "{0} Sekunde(n)",
|
||||||
|
["TIME_STR_DH"] = "{0} Tag(e) {1} Stunde(n)",
|
||||||
|
["TIME_STR_HMS"] = "{0} Stunde(n) {1} Minute(n) {2} Sekunde(n)",
|
||||||
|
["TIME_STR_HM"] = "{0} Stunde(n) {1} Minute(n)",
|
||||||
|
["TIME_STR_D"] = "{0} Tag(e)",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
["LOADING_DESC"] = "Laden…",
|
||||||
|
["CLICK_COPY_ACOUNT_DESC"] = "Klicken Sie auf , um die Benutzer-ID zu kopieren",
|
||||||
|
["APP"] = "Versionsnummer:",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/de/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/de/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6f60533b14c331c41bd3dd7affae17e5
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
64
lua/app/config/strings/en/global.lua.bytes
Normal file
64
lua/app/config/strings/en/global.lua.bytes
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "Fight",
|
||||||
|
["QLT_DESC_1"] = "Normal",
|
||||||
|
["QLT_DESC_2"] = "Excellent",
|
||||||
|
["QLT_DESC_3"] = "Rare",
|
||||||
|
["QLT_DESC_4"] = "Epic",
|
||||||
|
["QLT_DESC_5"] = "Legendary",
|
||||||
|
["QLT_DESC_6"] = "Mythic",
|
||||||
|
["MESSAGE_BOX_TITLE"] = "Hint",
|
||||||
|
["BTN_TEXT_CANCEL"] = "Cancel",
|
||||||
|
["BTN_TEXT_OK"] = "Confirm",
|
||||||
|
["BATTLE_DESC_1"] = "Quit battle?",
|
||||||
|
["ITEM_NOT_ENOUGH"] = "Insufficient {0}",
|
||||||
|
["START_DESC"] = "Start",
|
||||||
|
["ELEMENT_NAME_1"] = "Red Elements",
|
||||||
|
["ELEMENT_NAME_2"] = "Golden Elements",
|
||||||
|
["ELEMENT_NAME_3"] = "Green Elements",
|
||||||
|
["ELEMENT_NAME_4"] = "Blue Elements",
|
||||||
|
["ELEMENT_NAME_5"] = "Purple Elements",
|
||||||
|
["HERO_DESC_1"] = "Lv.{0}",
|
||||||
|
["HERO_DESC_2"] = "HP",
|
||||||
|
["HERO_DESC_3"] = "Attack",
|
||||||
|
["HERO_DESC_4"] = "Upgrade",
|
||||||
|
["HERO_DESC_5"] = "Activate",
|
||||||
|
["HERO_DESC_6"] = "Unlocked",
|
||||||
|
["HERO_DESC_7"] = "Locked",
|
||||||
|
["GET_REWARDS_DESC"] = "Rewards Obtained",
|
||||||
|
["CLICK_CLOSE_DESC"] = "Tap to close",
|
||||||
|
["REWARD_DESC"] = "Rewards",
|
||||||
|
["CONTINUE_DESC"] = "Continue",
|
||||||
|
["BATTLE_DESC_2"] = "Pause",
|
||||||
|
["BATTLE_DESC_3"] = "Refresh",
|
||||||
|
["BATTLE_DESC_4"] = "Reach",
|
||||||
|
["BATTLE_DESC_5"] = "Victory",
|
||||||
|
["BATTLE_DESC_6"] = "Failed",
|
||||||
|
["BATTLE_DESC_7"] = "Total DMG Dealt: <color=#89FF76>{0}</color>",
|
||||||
|
["REWARD_PREVIEW_DESC"] = "Reward Overview",
|
||||||
|
["HERO_DESC_8"] = "Use",
|
||||||
|
["HERO_DESC_9"] = "Info",
|
||||||
|
["HERO_DESC_10"] = "Unlock after chapter {0}",
|
||||||
|
["BATTLE_DESC_8"] = "Additional heroes available for deploying",
|
||||||
|
["MAIN_BTN_2"] = "Hero",
|
||||||
|
["MAIN_DESC_1"] = "Chapter {0}",
|
||||||
|
["TIME_STR_DHM"] = "{0} d {1} h {2} min",
|
||||||
|
["TIME_STR_M"] = "{0} min",
|
||||||
|
["TIME_STR_MS"] = "{0} min {1} sec",
|
||||||
|
["TIME_STR_S"] = "{0} sec",
|
||||||
|
["TIME_STR_DH"] = "{0} d {1} h",
|
||||||
|
["TIME_STR_HMS"] = "{0} h {1} min {2} sec",
|
||||||
|
["TIME_STR_HM"] = "{0} h {1} min",
|
||||||
|
["TIME_STR_D"] = "{0} d",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
["LOADING_DESC"] = "Loading…",
|
||||||
|
["CLICK_COPY_ACOUNT_DESC"] = "Click to copy your PlayerID",
|
||||||
|
["APP"] = "Version:",
|
||||||
|
["CHAPTER_DESC_1"] = "The Best Record: {0}",
|
||||||
|
["ACT_SEVENDAY_TITLE"] = "HAPPY SEVENDAY",
|
||||||
|
["BTN_CLAIM"] = "CLAIM",
|
||||||
|
["BTN_DONE"] = "GOT",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/en/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/en/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 035fbd1061fb16646a2153b6f1bcb16d
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
25
lua/app/config/strings/fr/global.lua.bytes
Normal file
25
lua/app/config/strings/fr/global.lua.bytes
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "Combat",
|
||||||
|
["QLT_DESC_1"] = "N",
|
||||||
|
["QLT_DESC_2"] = "G",
|
||||||
|
["QLT_DESC_3"] = "R",
|
||||||
|
["QLT_DESC_4"] = "SR",
|
||||||
|
["QLT_DESC_5"] = "SSR",
|
||||||
|
["QLT_DESC_6"] = "UR",
|
||||||
|
["TIME_STR_DHM"] = "{0} jour(s) {1} h {2} sec",
|
||||||
|
["TIME_STR_M"] = "{0} min",
|
||||||
|
["TIME_STR_MS"] = "{0} min {1}sec",
|
||||||
|
["TIME_STR_S"] = "{0} sec",
|
||||||
|
["TIME_STR_DH"] = "{0} jour(s) {1} h",
|
||||||
|
["TIME_STR_HMS"] = "{0} h {1} min {2}sec",
|
||||||
|
["TIME_STR_HM"] = "{0} h {1} sec",
|
||||||
|
["TIME_STR_D"] = "{0} jour(s)",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
["LOADING_DESC"] = "Chargement…",
|
||||||
|
["CLICK_COPY_ACOUNT_DESC"] = "Cliquez pour copier l'identifiant de l'utilisateur",
|
||||||
|
["APP"] = "Numéro de version",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/fr/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/fr/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6d8f3802136196749aba2d1acb739f2d
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
22
lua/app/config/strings/id/global.lua.bytes
Normal file
22
lua/app/config/strings/id/global.lua.bytes
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "Bertempur",
|
||||||
|
["QLT_DESC_1"] = "Normal",
|
||||||
|
["QLT_DESC_2"] = "Good",
|
||||||
|
["QLT_DESC_3"] = "Rare",
|
||||||
|
["QLT_DESC_4"] = "Epic",
|
||||||
|
["QLT_DESC_5"] = "Legendary",
|
||||||
|
["QLT_DESC_6"] = "Myth",
|
||||||
|
["TIME_STR_DHM"] = "{0} Hari {1} Jam {2} Menit",
|
||||||
|
["TIME_STR_M"] = "{0} Menit",
|
||||||
|
["TIME_STR_MS"] = "{0} Menit {1} Detik",
|
||||||
|
["TIME_STR_S"] = "{0} Detik",
|
||||||
|
["TIME_STR_DH"] = "{0} Hari {1} Jam",
|
||||||
|
["TIME_STR_HMS"] = "{0} Jam {1} Menit {2} Detik",
|
||||||
|
["TIME_STR_HM"] = "{0} Jam {1} Menit",
|
||||||
|
["TIME_STR_D"] = "{0} Hari",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/id/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/id/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0425f6ed38d860340ba447ea3055555a
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
25
lua/app/config/strings/ja/global.lua.bytes
Normal file
25
lua/app/config/strings/ja/global.lua.bytes
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "戦闘",
|
||||||
|
["QLT_DESC_1"] = "普通",
|
||||||
|
["QLT_DESC_2"] = "優秀",
|
||||||
|
["QLT_DESC_3"] = "レア",
|
||||||
|
["QLT_DESC_4"] = "エピック",
|
||||||
|
["QLT_DESC_5"] = "レジェンド",
|
||||||
|
["QLT_DESC_6"] = "ミシック",
|
||||||
|
["TIME_STR_DHM"] = "{0}日{1}時{2}分",
|
||||||
|
["TIME_STR_M"] = "{0}分",
|
||||||
|
["TIME_STR_MS"] = "{0}分{1}秒",
|
||||||
|
["TIME_STR_S"] = "{0}秒",
|
||||||
|
["TIME_STR_DH"] = "{0}日{1}時",
|
||||||
|
["TIME_STR_HMS"] = "{0}時{1}分{2}秒",
|
||||||
|
["TIME_STR_HM"] = "{0}時{1}分",
|
||||||
|
["TIME_STR_D"] = "{0}日",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
["LOADING_DESC"] = "読み込み中…",
|
||||||
|
["CLICK_COPY_ACOUNT_DESC"] = "クリックするとユーザーIDがコピーされます",
|
||||||
|
["APP"] = "バージョン番号:",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/ja/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/ja/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bcd85e95812de2a4b874256e775b0ef3
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
25
lua/app/config/strings/ko/global.lua.bytes
Normal file
25
lua/app/config/strings/ko/global.lua.bytes
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "전투",
|
||||||
|
["QLT_DESC_1"] = "일반",
|
||||||
|
["QLT_DESC_2"] = "우수",
|
||||||
|
["QLT_DESC_3"] = "희귀",
|
||||||
|
["QLT_DESC_4"] = "에픽",
|
||||||
|
["QLT_DESC_5"] = "전설",
|
||||||
|
["QLT_DESC_6"] = "신화",
|
||||||
|
["TIME_STR_DHM"] = "{0}일 {1}시 {2}분",
|
||||||
|
["TIME_STR_M"] = "{0}분",
|
||||||
|
["TIME_STR_MS"] = "{0}분 {1}초",
|
||||||
|
["TIME_STR_S"] = "{0}초",
|
||||||
|
["TIME_STR_DH"] = "{0}일 {1}시",
|
||||||
|
["TIME_STR_HMS"] = "{0}시 {1}분 {2}초",
|
||||||
|
["TIME_STR_HM"] = "{0}시 {1}분",
|
||||||
|
["TIME_STR_D"] = "{0}일",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
["LOADING_DESC"] = "로딩 중…",
|
||||||
|
["CLICK_COPY_ACOUNT_DESC"] = "사용자 ID를 복사하려면 클릭합니다.",
|
||||||
|
["APP"] = "버전 번호:",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/ko/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/ko/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1cff87c7a1966c348a74ae0876477891
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
22
lua/app/config/strings/pt/global.lua.bytes
Normal file
22
lua/app/config/strings/pt/global.lua.bytes
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "Combate",
|
||||||
|
["QLT_DESC_1"] = "Comum",
|
||||||
|
["QLT_DESC_2"] = "Incomum",
|
||||||
|
["QLT_DESC_3"] = "Raro",
|
||||||
|
["QLT_DESC_4"] = "Épico",
|
||||||
|
["QLT_DESC_5"] = "Lendário",
|
||||||
|
["QLT_DESC_6"] = "Místico",
|
||||||
|
["TIME_STR_DHM"] = "{0} Dia(s) {1} Hora(s) {2} Minuto(s)",
|
||||||
|
["TIME_STR_M"] = "{0} Minuto(s)",
|
||||||
|
["TIME_STR_MS"] = "{0} Minuto(s) {1} Segundo(s)",
|
||||||
|
["TIME_STR_S"] = "{0} Segundo(s)",
|
||||||
|
["TIME_STR_DH"] = "{0} Dia(s) {1} Hora(s)",
|
||||||
|
["TIME_STR_HMS"] = "{0} Hora(s) {1} Minuto(s) {2} Segundo(s)",
|
||||||
|
["TIME_STR_HM"] = "{0} Hora(s) {1} Minuto(s)",
|
||||||
|
["TIME_STR_D"] = "{0} Dia(s)",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/pt/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/pt/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 34b1ed4a7b1947d4c82b894f3d29c317
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
5
lua/app/config/strings/ru/global.lua.bytes
Normal file
5
lua/app/config/strings/ru/global.lua.bytes
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/ru/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/ru/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e3599135e60d2ed4cb978abdef87f535
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
22
lua/app/config/strings/th/global.lua.bytes
Normal file
22
lua/app/config/strings/th/global.lua.bytes
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "รณ",
|
||||||
|
["QLT_DESC_1"] = "โดยทั่วไป",
|
||||||
|
["QLT_DESC_2"] = "โดดเด่น",
|
||||||
|
["QLT_DESC_3"] = "ซึ่งหายาก",
|
||||||
|
["QLT_DESC_4"] = "บทกวีเล่าเรื่อง",
|
||||||
|
["QLT_DESC_5"] = "มีชื่อเสียงมาก",
|
||||||
|
["QLT_DESC_6"] = "ตำนาน",
|
||||||
|
["TIME_STR_DHM"] = "{0}วัน{1}ชั่วโมง{2}นาที",
|
||||||
|
["TIME_STR_M"] = "{0} คะแนน",
|
||||||
|
["TIME_STR_MS"] = "{0} นาที {1} วินาที",
|
||||||
|
["TIME_STR_S"] = "{0} วินาที",
|
||||||
|
["TIME_STR_DH"] = "{0} วัน {1} ชั่วโมง",
|
||||||
|
["TIME_STR_HMS"] = "{0}ชั่วโมง{1}นาที{2}วินาที",
|
||||||
|
["TIME_STR_HM"] = "{0} ชั่วโมง {1} นาที",
|
||||||
|
["TIME_STR_D"] = "{0} วัน",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/th/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/th/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ab044086dbb71fb409cb6de0846881e4
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
22
lua/app/config/strings/vi/global.lua.bytes
Normal file
22
lua/app/config/strings/vi/global.lua.bytes
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "Chiến đấu",
|
||||||
|
["QLT_DESC_1"] = "Thường",
|
||||||
|
["QLT_DESC_2"] = "Ưu Tú",
|
||||||
|
["QLT_DESC_3"] = "Hiếm",
|
||||||
|
["QLT_DESC_4"] = "Sử Thi",
|
||||||
|
["QLT_DESC_5"] = "Truyền Thuyết",
|
||||||
|
["QLT_DESC_6"] = "Thần Thoại",
|
||||||
|
["TIME_STR_DHM"] = "{0}ngày{1}giờ{2}phút",
|
||||||
|
["TIME_STR_M"] = "{0}phút",
|
||||||
|
["TIME_STR_MS"] = "{0}phút{1}giây",
|
||||||
|
["TIME_STR_S"] = "{0}giây",
|
||||||
|
["TIME_STR_DH"] = "{0}ngày{1}giờ",
|
||||||
|
["TIME_STR_HMS"] = "{0}giờ{1}phút{2}giây",
|
||||||
|
["TIME_STR_HM"] = "{0}giờ{1}phút",
|
||||||
|
["TIME_STR_D"] = "{0}ngày",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/vi/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/vi/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 27cab61a3aae2134cb1d858fff34f41c
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1,122 +1,122 @@
|
|||||||
local buff = {
|
local buff = {
|
||||||
[7]={
|
[7]={
|
||||||
["_id"]=7,
|
["id"]=7,
|
||||||
["name"]="dec_dmg_red_add"
|
["name"]="dec_dmg_red_add"
|
||||||
},
|
},
|
||||||
[8]={
|
[8]={
|
||||||
["_id"]=8,
|
["id"]=8,
|
||||||
["name"]="dec_dmg_yellow_add"
|
["name"]="dec_dmg_yellow_add"
|
||||||
},
|
},
|
||||||
[9]={
|
[9]={
|
||||||
["_id"]=9,
|
["id"]=9,
|
||||||
["name"]="dec_dmg_green_add"
|
["name"]="dec_dmg_green_add"
|
||||||
},
|
},
|
||||||
[10]={
|
[10]={
|
||||||
["_id"]=10,
|
["id"]=10,
|
||||||
["name"]="dec_dmg_blue_add"
|
["name"]="dec_dmg_blue_add"
|
||||||
},
|
},
|
||||||
[11]={
|
[11]={
|
||||||
["_id"]=11,
|
["id"]=11,
|
||||||
["name"]="dec_dmg_purple_add"
|
["name"]="dec_dmg_purple_add"
|
||||||
},
|
},
|
||||||
[12]={
|
[12]={
|
||||||
["_id"]=12,
|
["id"]=12,
|
||||||
["name"]="dec_dmg_all_add"
|
["name"]="dec_dmg_all_add"
|
||||||
},
|
},
|
||||||
[24]={
|
[24]={
|
||||||
["_id"]=24,
|
["id"]=24,
|
||||||
["name"]="dmg_addition_all_add"
|
["name"]="dmg_addition_all_add"
|
||||||
},
|
},
|
||||||
[33]={
|
[33]={
|
||||||
["_id"]=33,
|
["id"]=33,
|
||||||
["name"]="stun"
|
["name"]="stun"
|
||||||
},
|
},
|
||||||
[34]={
|
[34]={
|
||||||
["_id"]=34,
|
["id"]=34,
|
||||||
["name"]="shield"
|
["name"]="shield"
|
||||||
},
|
},
|
||||||
[36]={
|
[36]={
|
||||||
["_id"]=36,
|
["id"]=36,
|
||||||
["name"]="normal_attack_dec"
|
["name"]="normal_attack_dec"
|
||||||
},
|
},
|
||||||
[37]={
|
[37]={
|
||||||
["_id"]=37,
|
["id"]=37,
|
||||||
["name"]="normal_attack_add"
|
["name"]="normal_attack_add"
|
||||||
},
|
},
|
||||||
[47]={
|
[47]={
|
||||||
["_id"]=47,
|
["id"]=47,
|
||||||
["name"]="shield_rebound_200"
|
["name"]="shield_rebound_200"
|
||||||
},
|
},
|
||||||
[48]={
|
[48]={
|
||||||
["_id"]=48,
|
["id"]=48,
|
||||||
["name"]="burn"
|
["name"]="burn"
|
||||||
},
|
},
|
||||||
[49]={
|
[49]={
|
||||||
["_id"]=49,
|
["id"]=49,
|
||||||
["name"]="vulnerable"
|
["name"]="vulnerable"
|
||||||
},
|
},
|
||||||
[50]={
|
[50]={
|
||||||
["_id"]=50,
|
["id"]=50,
|
||||||
["name"]="frozen"
|
["name"]="frozen"
|
||||||
},
|
},
|
||||||
[51]={
|
[51]={
|
||||||
["_id"]=51,
|
["id"]=51,
|
||||||
["name"]="poison"
|
["name"]="poison"
|
||||||
},
|
},
|
||||||
[52]={
|
[52]={
|
||||||
["_id"]=52,
|
["id"]=52,
|
||||||
["name"]="imprison"
|
["name"]="imprison"
|
||||||
},
|
},
|
||||||
[53]={
|
[53]={
|
||||||
["_id"]=53,
|
["id"]=53,
|
||||||
["name"]="corrupt"
|
["name"]="corrupt"
|
||||||
},
|
},
|
||||||
[54]={
|
[54]={
|
||||||
["_id"]=54,
|
["id"]=54,
|
||||||
["name"]="bleed"
|
["name"]="bleed"
|
||||||
},
|
},
|
||||||
[55]={
|
[55]={
|
||||||
["_id"]=55,
|
["id"]=55,
|
||||||
["name"]="weaken"
|
["name"]="weaken"
|
||||||
},
|
},
|
||||||
[56]={
|
[56]={
|
||||||
["_id"]=56,
|
["id"]=56,
|
||||||
["name"]="lethargy"
|
["name"]="lethargy"
|
||||||
},
|
},
|
||||||
[57]={
|
[57]={
|
||||||
["_id"]=57,
|
["id"]=57,
|
||||||
["name"]="curse"
|
["name"]="curse"
|
||||||
},
|
},
|
||||||
[58]={
|
[58]={
|
||||||
["_id"]=58,
|
["id"]=58,
|
||||||
["name"]="lock"
|
["name"]="lock"
|
||||||
},
|
},
|
||||||
[59]={
|
[59]={
|
||||||
["_id"]=59,
|
["id"]=59,
|
||||||
["name"]="first_hand"
|
["name"]="first_hand"
|
||||||
},
|
},
|
||||||
[61]={
|
[61]={
|
||||||
["_id"]=61,
|
["id"]=61,
|
||||||
["name"]="undead"
|
["name"]="undead"
|
||||||
},
|
},
|
||||||
[62]={
|
[62]={
|
||||||
["_id"]=62,
|
["id"]=62,
|
||||||
["name"]="counterattack"
|
["name"]="counterattack"
|
||||||
},
|
},
|
||||||
[63]={
|
[63]={
|
||||||
["_id"]=63,
|
["id"]=63,
|
||||||
["name"]="thorns"
|
["name"]="thorns"
|
||||||
},
|
},
|
||||||
[73]={
|
[73]={
|
||||||
["_id"]=73,
|
["id"]=73,
|
||||||
["name"]="shield_rebound_400"
|
["name"]="shield_rebound_400"
|
||||||
},
|
},
|
||||||
[74]={
|
[74]={
|
||||||
["_id"]=74,
|
["id"]=74,
|
||||||
["name"]="shield_ice"
|
["name"]="shield_ice"
|
||||||
},
|
},
|
||||||
[75]={
|
[75]={
|
||||||
["_id"]=75,
|
["id"]=75,
|
||||||
["name"]="shield_ice_rebound_400"
|
["name"]="shield_ice_rebound_400"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
61
lua/app/config/strings/zh/global.lua.bytes
Normal file
61
lua/app/config/strings/zh/global.lua.bytes
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
local localization_global =
|
||||||
|
{
|
||||||
|
["MAIN_BTN_1"] = "戰鬥",
|
||||||
|
["QLT_DESC_1"] = "普通",
|
||||||
|
["QLT_DESC_2"] = "優秀",
|
||||||
|
["QLT_DESC_3"] = "稀有",
|
||||||
|
["QLT_DESC_4"] = "史詩",
|
||||||
|
["QLT_DESC_5"] = "傳說",
|
||||||
|
["QLT_DESC_6"] = "神話",
|
||||||
|
["MESSAGE_BOX_TITLE"] = "提示",
|
||||||
|
["BTN_TEXT_CANCEL"] = "取消",
|
||||||
|
["BTN_TEXT_OK"] = "確定",
|
||||||
|
["BATTLE_DESC_1"] = "是否退出戰鬥",
|
||||||
|
["ITEM_NOT_ENOUGH"] = "{0}不足",
|
||||||
|
["START_DESC"] = "開始",
|
||||||
|
["ELEMENT_NAME_1"] = "紅色元素",
|
||||||
|
["ELEMENT_NAME_2"] = "金色元素",
|
||||||
|
["ELEMENT_NAME_3"] = "綠色元素",
|
||||||
|
["ELEMENT_NAME_4"] = "藍色元素",
|
||||||
|
["ELEMENT_NAME_5"] = "紫色元素",
|
||||||
|
["HERO_DESC_1"] = "等級{0}",
|
||||||
|
["HERO_DESC_2"] = "生命",
|
||||||
|
["HERO_DESC_3"] = "攻擊力",
|
||||||
|
["HERO_DESC_4"] = "升級",
|
||||||
|
["HERO_DESC_5"] = "啟動",
|
||||||
|
["HERO_DESC_6"] = "已解鎖",
|
||||||
|
["HERO_DESC_7"] = "未解鎖",
|
||||||
|
["GET_REWARDS_DESC"] = "獲得獎勵",
|
||||||
|
["CLICK_CLOSE_DESC"] = "點擊關閉",
|
||||||
|
["REWARD_DESC"] = "獎勵",
|
||||||
|
["CONTINUE_DESC"] = "繼續",
|
||||||
|
["BATTLE_DESC_2"] = "暫停",
|
||||||
|
["BATTLE_DESC_3"] = "刷新",
|
||||||
|
["BATTLE_DESC_4"] = "達到",
|
||||||
|
["BATTLE_DESC_5"] = "勝利",
|
||||||
|
["BATTLE_DESC_6"] = "失敗",
|
||||||
|
["BATTLE_DESC_7"] = "累計造成總傷害:<color=#89FF76>{0}</color>",
|
||||||
|
["REWARD_PREVIEW_DESC"] = "獎勵預覽",
|
||||||
|
["HERO_DESC_8"] = "使用",
|
||||||
|
["HERO_DESC_9"] = "資訊",
|
||||||
|
["HERO_DESC_10"] = "通關章節{0}解鎖",
|
||||||
|
["BATTLE_DESC_8"] = "還有可上陣英雄",
|
||||||
|
["MAIN_BTN_2"] = "英雄",
|
||||||
|
["MAIN_DESC_1"] = "第{0}章",
|
||||||
|
["TIME_STR_DHM"] = "{0}天{1}時{2}分",
|
||||||
|
["TIME_STR_M"] = "{0}分",
|
||||||
|
["TIME_STR_MS"] = "{0}分{1}秒",
|
||||||
|
["TIME_STR_S"] = "{0}秒",
|
||||||
|
["TIME_STR_DH"] = "{0}天{1}時",
|
||||||
|
["TIME_STR_HMS"] = "{0}時{1}分{2}秒",
|
||||||
|
["TIME_STR_HM"] = "{0}時{1}分",
|
||||||
|
["TIME_STR_D"] = "{0}天",
|
||||||
|
["TIME_MS"] = "{0}:{1}",
|
||||||
|
["TIME_HMS"] = "{0}:{1}:{2}",
|
||||||
|
["LOADING_DESC"] = "加載中.......",
|
||||||
|
["CLICK_COPY_ACOUNT_DESC"] = "點擊複製用戶ID",
|
||||||
|
["APP"] = "版本號:",
|
||||||
|
["CHAPTER_DESC_1"] = "最高紀錄:{0}",
|
||||||
|
}
|
||||||
|
|
||||||
|
return localization_global
|
||||||
7
lua/app/config/strings/zh/global.lua.bytes.meta
Normal file
7
lua/app/config/strings/zh/global.lua.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: e8f12fb4d64f03c45b9a2b2d90f5955a
|
||||||
|
TextScriptImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -15,7 +15,7 @@ local CacheVector2 = CS.UnityEngine.Vector2(0, 0)
|
|||||||
local CACHE_SKILL_POS_1 = {x = 10, y = 360}
|
local CACHE_SKILL_POS_1 = {x = 10, y = 360}
|
||||||
local CACHE_SKILL_POS_2 = {x = 10, y = 420}
|
local CACHE_SKILL_POS_2 = {x = 10, y = 420}
|
||||||
local BATTLE_COMMON_PATH = "assets/arts/textures/background/battle_common/%s.png"
|
local BATTLE_COMMON_PATH = "assets/arts/textures/background/battle_common/%s.png"
|
||||||
local BOARD_SFX_ORDER = 13
|
local BOARD_SFX_ORDER = GConst.UI_EFFECT_ORDER.LEVEL4 + 1
|
||||||
|
|
||||||
function BattleUI:getPrefabPath()
|
function BattleUI:getPrefabPath()
|
||||||
return "assets/prefabs/ui/battle/battle_ui.prefab"
|
return "assets/prefabs/ui/battle/battle_ui.prefab"
|
||||||
@ -1179,7 +1179,7 @@ function BattleUI:initGenerateSkillEffect()
|
|||||||
|
|
||||||
for _, obj in pairs(self.generateSkillSfxs) do
|
for _, obj in pairs(self.generateSkillSfxs) do
|
||||||
obj:setActive(true)
|
obj:setActive(true)
|
||||||
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL1)
|
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL5)
|
||||||
obj:setActive(false)
|
obj:setActive(false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -1530,7 +1530,7 @@ function BattleUI:refreshLv()
|
|||||||
local sfx = uiMap["battle_ui.bg_2.lv_node.icon.vfx_ui_battle_progress_light_b01"]
|
local sfx = uiMap["battle_ui.bg_2.lv_node.icon.vfx_ui_battle_progress_light_b01"]
|
||||||
if not self.lastLv then
|
if not self.lastLv then
|
||||||
sfx:setActive(true)
|
sfx:setActive(true)
|
||||||
sfx:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL1)
|
sfx:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL5)
|
||||||
sfx:setActive(false)
|
sfx:setActive(false)
|
||||||
elseif self.lastLv ~= lv then
|
elseif self.lastLv ~= lv then
|
||||||
sfx:setActive(true)
|
sfx:setActive(true)
|
||||||
@ -1611,7 +1611,7 @@ function BattleUI:getSfxGridBreak(breakSfxPath, index, func)
|
|||||||
self.root.gridBreakSfxObjs[breakSfxPath][index] = {
|
self.root.gridBreakSfxObjs[breakSfxPath][index] = {
|
||||||
isLoaded = true
|
isLoaded = true
|
||||||
}
|
}
|
||||||
EffectManager:loadUIEffectAsync(breakSfxPath, self, self.gridNode, GConst.UI_EFFECT_ORDER.LEVEL1, function(obj)
|
EffectManager:loadUIEffectAsync(breakSfxPath, self, self.gridNode, GConst.UI_EFFECT_ORDER.LEVEL5, function(obj)
|
||||||
self.root.gridBreakSfxObjs[breakSfxPath][index].obj = obj
|
self.root.gridBreakSfxObjs[breakSfxPath][index].obj = obj
|
||||||
if self.hidingAllSfxGridBreak then
|
if self.hidingAllSfxGridBreak then
|
||||||
obj:setActive(false)
|
obj:setActive(false)
|
||||||
@ -1718,13 +1718,13 @@ function BattleUI:initSkillLineSfx()
|
|||||||
|
|
||||||
for _, obj in pairs(self.skillLineSfxs) do
|
for _, obj in pairs(self.skillLineSfxs) do
|
||||||
obj:setActive(true)
|
obj:setActive(true)
|
||||||
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL2)
|
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL5)
|
||||||
obj:setActive(false)
|
obj:setActive(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, obj in pairs(self.skillLightSfxs) do
|
for _, obj in pairs(self.skillLightSfxs) do
|
||||||
obj:setActive(true)
|
obj:setActive(true)
|
||||||
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL2)
|
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL5)
|
||||||
obj:setActive(false)
|
obj:setActive(false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -1812,7 +1812,7 @@ function BattleUI:playChangeElementSfx(posId, index)
|
|||||||
self.root.changeElementSfxs[index] = {
|
self.root.changeElementSfxs[index] = {
|
||||||
isLoaded = true
|
isLoaded = true
|
||||||
}
|
}
|
||||||
EffectManager:loadUIEffectAsync(GConst.BattleConst.CHANGE_ELEMENT_SFX, self, self.gridNode, GConst.UI_EFFECT_ORDER.LEVEL2, function(obj)
|
EffectManager:loadUIEffectAsync(GConst.BattleConst.CHANGE_ELEMENT_SFX, self, self.gridNode, GConst.UI_EFFECT_ORDER.LEVEL5, function(obj)
|
||||||
self.root.changeElementSfxs[index].obj = obj
|
self.root.changeElementSfxs[index].obj = obj
|
||||||
obj:setAnchoredPosition(pos.x, pos.y)
|
obj:setAnchoredPosition(pos.x, pos.y)
|
||||||
obj:play()
|
obj:play()
|
||||||
@ -1833,7 +1833,7 @@ function BattleUI:initUISfxs()
|
|||||||
for index, info in pairs(map) do
|
for index, info in pairs(map) do
|
||||||
if info.obj then
|
if info.obj then
|
||||||
info.obj:setActive(true)
|
info.obj:setActive(true)
|
||||||
info.obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL1)
|
info.obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL5)
|
||||||
info.obj:setActive(false)
|
info.obj:setActive(false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -1864,7 +1864,7 @@ function BattleUI:initUISfxs()
|
|||||||
for index, info in pairs(self.root.changeElementSfxs) do
|
for index, info in pairs(self.root.changeElementSfxs) do
|
||||||
if info.obj then
|
if info.obj then
|
||||||
info.obj:setActive(true)
|
info.obj:setActive(true)
|
||||||
info.obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL2)
|
info.obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(self:getUIOrder(), GConst.UI_EFFECT_ORDER.LEVEL5)
|
||||||
info.obj:setActive(false)
|
info.obj:setActive(false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -208,11 +208,11 @@ function GridCell:setOrder(uiOder)
|
|||||||
local uiMap = self:getUIMap()
|
local uiMap = self:getUIMap()
|
||||||
for elementType, name in pairs(GConst.BattleConst.OUTLINE_SFX) do
|
for elementType, name in pairs(GConst.BattleConst.OUTLINE_SFX) do
|
||||||
local obj = uiMap["grid_cell.touch_node.ani_node.effect_node." .. name]
|
local obj = uiMap["grid_cell.touch_node.ani_node.effect_node." .. name]
|
||||||
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(uiOder, GConst.UI_EFFECT_ORDER.LEVEL_10)
|
obj:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(uiOder, GConst.UI_EFFECT_ORDER.LEVEL4 + 1)
|
||||||
obj:setActive(false)
|
obj:setActive(false)
|
||||||
end
|
end
|
||||||
local skillEffect = uiMap["grid_cell.touch_node.ani_node.effect_node.sfx_piece_qizi_b06"]
|
local skillEffect = uiMap["grid_cell.touch_node.ani_node.effect_node.sfx_piece_qizi_b06"]
|
||||||
skillEffect:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(uiOder, GConst.UI_EFFECT_ORDER.LEVEL_10)
|
skillEffect:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER):SetSortingOrder(uiOder, GConst.UI_EFFECT_ORDER.LEVEL4 + 1)
|
||||||
skillEffect:setActive(false)
|
skillEffect:setActive(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@ -33,15 +33,6 @@ end
|
|||||||
|
|
||||||
function BattleBuffEntity:getDesc()
|
function BattleBuffEntity:getDesc()
|
||||||
return GFunc.getBuffDesc(self:getName(), self:getEffectNum())
|
return GFunc.getBuffDesc(self:getName(), self:getEffectNum())
|
||||||
-- if self.desc == nil then
|
|
||||||
-- local buff18NInfo = I18N:getConfigWithOtherKey("buff", "name")[self.name]
|
|
||||||
-- if buff18NInfo then
|
|
||||||
-- self.desc = buff18NInfo.desc or GConst.EMPTY_STRING
|
|
||||||
-- else
|
|
||||||
-- self.desc = GConst.EMPTY_STRING
|
|
||||||
-- end
|
|
||||||
-- end
|
|
||||||
-- return self.desc
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function BattleBuffEntity:getBuffType()
|
function BattleBuffEntity:getBuffType()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user