|  | @@ -62,7 +62,8 @@ namespace GameLogic.Hero
 | 
	
		
			
				|  |  |                          int index = skillConfig.intensifierIndex[i] - 1;
 | 
	
		
			
				|  |  |                          if (index >= 0 && index < effectValue.Length)
 | 
	
		
			
				|  |  |                          {
 | 
	
		
			
				|  |  | -                            effectValue[index] = effectValue[index] * SkillPowerupConfig.SkillPower1 * 0.01f;
 | 
	
		
			
				|  |  | +                           float value = 100+(SkillPowerupConfig.SkillPower1 - 100) * skillConfig.effectUpK * 0.01f;
 | 
	
		
			
				|  |  | +                            effectValue[index] = effectValue[index] * value * 0.01f;
 | 
	
		
			
				|  |  |                          }
 | 
	
		
			
				|  |  |                      }
 | 
	
		
			
				|  |  |                  }
 |