Skip to content

Commit

Permalink
Merge pull request #482 from ChewyMoon/patch-1
Browse files Browse the repository at this point in the history
Updated Cassiopeia's E Damage
  • Loading branch information
legacy3 authored Jul 15, 2016
2 parents 90a1de8 + 49f6998 commit d98c128
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Damage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2416,8 +2416,10 @@ target is Obj_AI_Minion
Slot = SpellSlot.E, DamageType = DamageType.Magical,
Damage =
(source, target, level) =>
new double[] { 53, 57, 61, 65, 69, 73, 77, 81, 85, 89, 93, 97, 101, 105, 109, 113, 117, 121 }[(source as Obj_AI_Hero).Level - 1] //TODO: Check if this is correct
+ 0.1 * source.TotalMagicalDamage + (target.HasBuffOfType(BuffType.Poison) ? new double[] { 10, 40, 70, 100, 130 }[level] + 0.35 * source.TotalMagicalDamage : 0)
(48 + 4 * ((Obj_AI_Hero)source).Level) + 0.1 * source.TotalMagicalDamage
+ (target.HasBuffOfType(BuffType.Poison)
? new double[] { 10, 40, 70, 100, 130 }[level] + 0.35 * source.TotalMagicalDamage
: 0)
},
//R
new DamageSpell
Expand Down

0 comments on commit d98c128

Please sign in to comment.