Explorar o código

把行军式伤害修改为起手式的20%

HY-LSZNWIN10\Administrator hai 2 semanas
pai
achega
9c70325297
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      ActionTowerDefense/Assets/Scripts/Characters/Demonic.cs

+ 1 - 1
ActionTowerDefense/Assets/Scripts/Characters/Demonic.cs

@@ -900,7 +900,7 @@ public class Demonic : MoveCharacter
         for (int i = 0; i < attackController.attackMethod_march.Length; i++)
         {
             AttackInfo attackInfo = attackController.attackMethod_march[i].attackInfo;
-            attackInfo.damage = (int)(attackController.attackMethod_summon[i].attackInfo.damage/10f);
+            attackInfo.damage = (int)(attackController.attackMethod_summon[i].attackInfo.damage/5f);
             if (attackInfo.damage < 1) attackInfo.damage = 1;
         }
     }