diff --git "a/Battle System/\346\212\200\350\203\275\345\244\232\346\256\265\344\274\244\345\256\263.rb" "b/Battle System/\346\212\200\350\203\275\345\244\232\346\256\265\344\274\244\345\256\263.rb" index 59d919e..30ebc3c 100644 --- "a/Battle System/\346\212\200\350\203\275\345\244\232\346\256\265\344\274\244\345\256\263.rb" +++ "b/Battle System/\346\212\200\350\203\275\345\244\232\346\256\265\344\274\244\345\256\263.rb" @@ -1,7 +1,7 @@ #============================================================================== # ■ 技能多段伤害 by 老鹰(http://oneeyedeagle.lofter.com/) #============================================================================== -# - 2019.11.15.16 +# - 2019.11.24.17 兼容 YEA-BattleCore #============================================================================== $imported ||= {} $imported["EAGLE-SkillDamageEX"] = true @@ -181,7 +181,11 @@ def apply_item_effects(frame) #-------------------------------------------------------------------------- def end_apply_item_effects @object.remove_state(EAGLE::SkillDamage_EX::STATE_IMMUNE_DIE) # 移除不死 - @object.refresh unless $imported["YEA-BattleEngine"] + if $imported["YEA-BattleEngine"] + SceneManager.scene.perform_collapse_check(@object) + else + @object.refresh + end clear end end diff --git "a/Message System/\350\257\273\345\217\226\345\212\240\345\257\206\346\241\243\346\241\210\344\270\255\347\232\204TXT.rb" "b/Message System/\347\273\204\344\273\266-\350\257\273\345\217\226\345\212\240\345\257\206\346\241\243\346\241\210\344\270\255\347\232\204TXT.rb" similarity index 94% rename from "Message System/\350\257\273\345\217\226\345\212\240\345\257\206\346\241\243\346\241\210\344\270\255\347\232\204TXT.rb" rename to "Message System/\347\273\204\344\273\266-\350\257\273\345\217\226\345\212\240\345\257\206\346\241\243\346\241\210\344\270\255\347\232\204TXT.rb" index 2c4c833..16a563a 100644 --- "a/Message System/\350\257\273\345\217\226\345\212\240\345\257\206\346\241\243\346\241\210\344\270\255\347\232\204TXT.rb" +++ "b/Message System/\347\273\204\344\273\266-\350\257\273\345\217\226\345\212\240\345\257\206\346\241\243\346\241\210\344\270\255\347\232\204TXT.rb" @@ -1,7 +1,7 @@ #============================================================================== -# ■ 读取加密档案中的TXT by 老鹰(http://oneeyedeagle.lofter.com/) +# ■ 组件-读取加密档案中的TXT by 老鹰(http://oneeyedeagle.lofter.com/) #============================================================================== -# - 2019.9.18.15 +# - 2019.12.10.14 #============================================================================== # - 本插件覆盖了 EAGLE.load_text 方法, # 使其能够读取加密档案中的 TXT 文件(UTF-8编码)