Update - 1.3.0.69

EN: 1.3.0.69
CN: 1.3.0.70
JP: 1.3.0.72
KR: 1.3.0.76
This commit is contained in:
SL1900
2025-12-14 22:30:00 +09:00
parent 5e0d58cfad
commit 5f417fbe9d
603 changed files with 1017024 additions and 5253 deletions
@@ -107,11 +107,51 @@ function MiningGridCellCtrl:UpdateEffect(nEffectType)
self:UpdateDigEffect()
elseif nEffectType == GameEnum.miningSupportEffect.NeighborDestroyed then
elseif nEffectType == GameEnum.miningSupportEffect.AreaDamageOnDig then
WwiseAudioMgr:PostEvent("mode_digging2_transform")
self._mapNode.effect_Transform:SetActive(true)
timer = self:AddTimer(1, 1, function()
self._mapNode.effect_Transform:SetActive(false)
local index = table.indexof(self.tbTimer, timer)
if 0 < index then
table.remove(self.tbTimer, index)
end
end, true, true, true, nil)
table.insert(self.tbTimer, timer)
elseif nEffectType == GameEnum.miningSupportEffect.ConsumePreserver then
self.bNextIsUnUse = true
elseif nEffectType == GameEnum.miningSupportEffect.ConverterOnEnterLayer then
WwiseAudioMgr:PostEvent("mode_digging2_transform")
self._mapNode.effect_Transform:SetActive(true)
timer = self:AddTimer(1, 1, function()
self._mapNode.effect_Transform:SetActive(false)
local index = table.indexof(self.tbTimer, timer)
if 0 < index then
table.remove(self.tbTimer, index)
end
end, true, true, true, nil)
table.insert(self.tbTimer, timer)
elseif nEffectType == GameEnum.miningSupportEffect.ConverterOnReceiveTreasure then
WwiseAudioMgr:PostEvent("mode_digging2_transform")
self._mapNode.effect_Transform:SetActive(true)
timer = self:AddTimer(1, 1, function()
self._mapNode.effect_Transform:SetActive(false)
local index = table.indexof(self.tbTimer, timer)
if 0 < index then
table.remove(self.tbTimer, index)
end
end, true, true, true, nil)
table.insert(self.tbTimer, timer)
elseif nEffectType == GameEnum.miningSupportEffect.ConverterOnGridDestroyed then
WwiseAudioMgr:PostEvent("mode_digging2_transform")
self._mapNode.effect_Transform:SetActive(true)
timer = self:AddTimer(1, 1, function()
self._mapNode.effect_Transform:SetActive(false)
local index = table.indexof(self.tbTimer, timer)
if 0 < index then
table.remove(self.tbTimer, index)
end
end, true, true, true, nil)
table.insert(self.tbTimer, timer)
elseif nEffectType == GameEnum.miningSupportEffect.CriticalDamage then
self.bNextIsCritical = true
elseif nEffectType == GameEnum.miningSupportEffect.TreasureMarkerOnGridDestroyed then