From f1dd328c38c8247b7e4e2bc405ca56a612f45a93 Mon Sep 17 00:00:00 2001 From: hide_d Date: Sun, 7 Apr 2019 19:51:19 +0900 Subject: [PATCH] =?UTF-8?q?[864b94f62a]=EB=B0=98=EA=B3=84=20=EC=83=81?= =?UTF-8?q?=ED=96=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/ActionSpecialWar/che_반계.php | 2 +- hwe/sammo/WarUnitGeneral.php | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/hwe/sammo/ActionSpecialWar/che_반계.php b/hwe/sammo/ActionSpecialWar/che_반계.php index 8e35fa06..fb1ac8c6 100644 --- a/hwe/sammo/ActionSpecialWar/che_반계.php +++ b/hwe/sammo/ActionSpecialWar/che_반계.php @@ -9,7 +9,7 @@ class che_반계 implements iAction{ static $id = 45; static $name = '반계'; - static $info = '[전투] 상대의 계략을 30% 확률로 되돌림, 반목 성공시 대미지 추가(+60% → +100%)'; + static $info = '[전투] 상대의 계략 성공 확률 -10%p, 상대의 계략을 40% 확률로 되돌림, 반목 성공시 대미지 추가(+60% → +100%)'; static $selectWeightType = SpecialityConst::WEIGHT_NORM; static $selectWeight = 1; diff --git a/hwe/sammo/WarUnitGeneral.php b/hwe/sammo/WarUnitGeneral.php index f406ebe9..80f7b4a6 100644 --- a/hwe/sammo/WarUnitGeneral.php +++ b/hwe/sammo/WarUnitGeneral.php @@ -524,6 +524,11 @@ class WarUnitGeneral extends WarUnit{ } yield true; + if($specialWar == 45){ + $oppose->activateSkill('계략약화'); + } + yield true; + if( $specialWar == 63 && $this->getPhase() == 0 && @@ -705,7 +710,7 @@ class WarUnitGeneral extends WarUnit{ if( $specialWar == 45 && $oppose->hasActivatedSkill('계략') && - Util::randBool(0.3) + Util::randBool(0.4) ){ $this->activateSkill('반계'); $oppose->deactivateSkill('계략');