更新配置
This commit is contained in:
parent
afe62c49bc
commit
e95f512ac4
@ -107,37 +107,31 @@ local buff = {
|
||||
[19]={
|
||||
["name"]="dmg_addition_red_add",
|
||||
["buff_type"]=1,
|
||||
["position"]=1,
|
||||
["icon"]="dmg_addition_red_add"
|
||||
["position"]=1
|
||||
},
|
||||
[20]={
|
||||
["name"]="dmg_addition_yellow_add",
|
||||
["buff_type"]=1,
|
||||
["position"]=2,
|
||||
["icon"]="dmg_addition_yellow_add"
|
||||
["position"]=2
|
||||
},
|
||||
[21]={
|
||||
["name"]="dmg_addition_green_add",
|
||||
["buff_type"]=1,
|
||||
["position"]=3,
|
||||
["icon"]="dmg_addition_green_add"
|
||||
["position"]=3
|
||||
},
|
||||
[22]={
|
||||
["name"]="dmg_addition_blue_add",
|
||||
["buff_type"]=1,
|
||||
["position"]=4,
|
||||
["icon"]="dmg_addition_blue_add"
|
||||
["position"]=4
|
||||
},
|
||||
[23]={
|
||||
["name"]="dmg_addition_purple_add",
|
||||
["buff_type"]=1,
|
||||
["position"]=5,
|
||||
["icon"]="dmg_addition_purple_add"
|
||||
["position"]=5
|
||||
},
|
||||
[24]={
|
||||
["name"]="dmg_addition_all_add",
|
||||
["buff_type"]=1,
|
||||
["icon"]="dmg_addition_all_add"
|
||||
["buff_type"]=1
|
||||
},
|
||||
[25]={
|
||||
["name"]="atkp_color_add",
|
||||
@ -192,6 +186,7 @@ local buff = {
|
||||
[34]={
|
||||
["name"]="shield",
|
||||
["buff_type"]=2,
|
||||
["icon"]="shield",
|
||||
["fx_continued"]={
|
||||
4001
|
||||
}
|
||||
@ -203,6 +198,7 @@ local buff = {
|
||||
[36]={
|
||||
["name"]="normal_attack_dec",
|
||||
["buff_type"]=1,
|
||||
["icon"]="normal_attack_dec",
|
||||
["fx_continued"]={
|
||||
4001
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -35,6 +35,9 @@ local LocalizationGlobalConst =
|
||||
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",
|
||||
}
|
||||
|
||||
return LocalizationGlobalConst
|
||||
@ -35,6 +35,9 @@ local localization_global =
|
||||
["BATTLE_DESC_5"] = "胜利",
|
||||
["BATTLE_DESC_6"] = "失败",
|
||||
["BATTLE_DESC_7"] = "累计造成总伤害:<color=#89FF76>{0}</color>",
|
||||
["REWARD_PREVIEW_DESC"] = "奖励预览",
|
||||
["HERO_DESC_8"] = "使用",
|
||||
["HERO_DESC_9"] = "信息",
|
||||
}
|
||||
|
||||
return localization_global
|
||||
72
lua/app/config/strings/de/buff.lua
Normal file
72
lua/app/config/strings/de/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/de/buff.lua.meta
Normal file
10
lua/app/config/strings/de/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 015aec3f0de88854a8d7458371968c60
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/en/buff.lua
Normal file
72
lua/app/config/strings/en/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/en/buff.lua.meta
Normal file
10
lua/app/config/strings/en/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 311567efa63265f41ba659612b4ac163
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/fr/buff.lua
Normal file
72
lua/app/config/strings/fr/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/fr/buff.lua.meta
Normal file
10
lua/app/config/strings/fr/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 24574e95c4014984cbe99bf827f04968
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/id/buff.lua
Normal file
72
lua/app/config/strings/id/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/id/buff.lua.meta
Normal file
10
lua/app/config/strings/id/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3757b3ef912396a4dae9ac69bdb312b7
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/ja/buff.lua
Normal file
72
lua/app/config/strings/ja/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/ja/buff.lua.meta
Normal file
10
lua/app/config/strings/ja/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b0914b29670bf924083a1552038d4773
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/ko/buff.lua
Normal file
72
lua/app/config/strings/ko/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/ko/buff.lua.meta
Normal file
10
lua/app/config/strings/ko/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bef18049794c152489413b67d6603154
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/pt/buff.lua
Normal file
72
lua/app/config/strings/pt/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/pt/buff.lua.meta
Normal file
10
lua/app/config/strings/pt/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e90450bed1b16e347b0f8aa984418acf
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/ru/buff.lua
Normal file
72
lua/app/config/strings/ru/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/ru/buff.lua.meta
Normal file
10
lua/app/config/strings/ru/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4416cf758a27092458d08798dc910944
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/th/buff.lua
Normal file
72
lua/app/config/strings/th/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/th/buff.lua.meta
Normal file
10
lua/app/config/strings/th/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ca9c1c5f93ad9a4da0a63b4ef2c9eaf
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/vi/buff.lua
Normal file
72
lua/app/config/strings/vi/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/vi/buff.lua.meta
Normal file
10
lua/app/config/strings/vi/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 47b419bc63493be45be288ce06f349ed
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
72
lua/app/config/strings/zh/buff.lua
Normal file
72
lua/app/config/strings/zh/buff.lua
Normal file
@ -0,0 +1,72 @@
|
||||
local buff = {
|
||||
[7]={
|
||||
["name"]="dec_dmg_red_add"
|
||||
},
|
||||
[8]={
|
||||
["name"]="dec_dmg_yellow_add"
|
||||
},
|
||||
[9]={
|
||||
["name"]="dec_dmg_green_add"
|
||||
},
|
||||
[10]={
|
||||
["name"]="dec_dmg_blue_add"
|
||||
},
|
||||
[11]={
|
||||
["name"]="dec_dmg_purple_add"
|
||||
},
|
||||
[12]={
|
||||
["name"]="dec_dmg_all_add"
|
||||
},
|
||||
[13]={
|
||||
["name"]="weakness_red_add"
|
||||
},
|
||||
[14]={
|
||||
["name"]="weakness_yellow_add"
|
||||
},
|
||||
[15]={
|
||||
["name"]="weakness_green_add"
|
||||
},
|
||||
[16]={
|
||||
["name"]="weakness_blue_add"
|
||||
},
|
||||
[17]={
|
||||
["name"]="weakness_purple_add"
|
||||
},
|
||||
[18]={
|
||||
["name"]="weakness_all_add"
|
||||
},
|
||||
[33]={
|
||||
["name"]="stun"
|
||||
},
|
||||
[34]={
|
||||
["name"]="shield"
|
||||
},
|
||||
[36]={
|
||||
["name"]="normal_attack_dec"
|
||||
}
|
||||
}
|
||||
local keys = {
|
||||
name = {
|
||||
["dec_dmg_red_add"]=buff[7],
|
||||
["dec_dmg_yellow_add"]=buff[8],
|
||||
["dec_dmg_green_add"]=buff[9],
|
||||
["dec_dmg_blue_add"]=buff[10],
|
||||
["dec_dmg_purple_add"]=buff[11],
|
||||
["dec_dmg_all_add"]=buff[12],
|
||||
["weakness_red_add"]=buff[13],
|
||||
["weakness_yellow_add"]=buff[14],
|
||||
["weakness_green_add"]=buff[15],
|
||||
["weakness_blue_add"]=buff[16],
|
||||
["weakness_purple_add"]=buff[17],
|
||||
["weakness_all_add"]=buff[18],
|
||||
["stun"]=buff[33],
|
||||
["shield"]=buff[34],
|
||||
["normal_attack_dec"]=buff[36]
|
||||
}
|
||||
}
|
||||
local config = {
|
||||
data=buff,
|
||||
keys=keys,
|
||||
count=15
|
||||
}
|
||||
return config
|
||||
10
lua/app/config/strings/zh/buff.lua.meta
Normal file
10
lua/app/config/strings/zh/buff.lua.meta
Normal file
@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3c7f56bfe006c4047aab502782c50336
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
|
||||
Loading…
x
Reference in New Issue
Block a user