From ef374b841a8d3e6368b3e9769c993d67e8ba389a Mon Sep 17 00:00:00 2001 From: wangzhenxing Date: Fri, 2 Apr 2021 15:02:14 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=88=98=E6=96=97]=3D=3D=3D=3D=3D=3D=E7=A0=B4?= =?UTF-8?q?=E7=9B=BE=EF=BC=8C=E6=B8=85=E9=99=A4=E6=8F=90=E7=A4=BA=E6=96=87?= =?UTF-8?q?=E5=AD=97=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/ManagedResources/~Lua/Common/Language.lua | 2 ++ Assets/ManagedResources/~Lua/Modules/Battle/BattleManager.lua | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Assets/ManagedResources/~Lua/Common/Language.lua b/Assets/ManagedResources/~Lua/Common/Language.lua index 5bdd05a8fb..6c4ff4baa7 100644 --- a/Assets/ManagedResources/~Lua/Common/Language.lua +++ b/Assets/ManagedResources/~Lua/Common/Language.lua @@ -2277,4 +2277,6 @@ [12276] = GetLanguageStrById("灵兽篇"), [12277] = GetLanguageStrById("激活属性:"), [12278] = GetLanguageStrById("激活成功,获得%s%s"), + [12279] = GetLanguageStrById("破盾"), + [12280] = GetLanguageStrById("清除"), } diff --git a/Assets/ManagedResources/~Lua/Modules/Battle/BattleManager.lua b/Assets/ManagedResources/~Lua/Modules/Battle/BattleManager.lua index 7dadfe9122..9de455dd07 100644 --- a/Assets/ManagedResources/~Lua/Modules/Battle/BattleManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Battle/BattleManager.lua @@ -978,9 +978,9 @@ function this.GetArtFontConfig(_ArtFontType) if _ArtFontType == BattleArtFontType.Immune then return {type = 2, content = Language[10203]} elseif _ArtFontType == BattleArtFontType.Shield then - return {type = 2, content = Language[12236]} + return {type = 2, content = Language[12279]} elseif _ArtFontType == BattleArtFontType.clear then - return {type = 2, content = Language[12237]} + return {type = 2, content = Language[12280]} end end