File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -215,6 +215,11 @@ class LOE_116:
215
215
LOE_009e = buff (+ 4 , + 4 )
216
216
217
217
218
+ # Animated Armor
219
+ class LOE_119 :
220
+ update = Refresh (FRIENDLY_HERO , {GameTag .HEAVILY_ARMORED : True })
221
+
222
+
218
223
##
219
224
# Spells
220
225
Original file line number Diff line number Diff line change @@ -16,6 +16,16 @@ def test_ancient_shade():
16
16
assert game .player1 .hero .health == 30 - 7
17
17
18
18
19
+ def test_animated_armor ():
20
+ game = prepare_game ()
21
+ armor = game .player1 .give ("LOE_119" )
22
+ armor .play ()
23
+ game .player1 .give (MOONFIRE ).play (target = game .player1 .hero )
24
+ assert game .player1 .hero .damage == 1
25
+ game .player1 .give (DAMAGE_5 ).play (target = game .player1 .hero )
26
+ assert game .player1 .hero .damage == 1 + 1
27
+
28
+
19
29
def test_anubisath_sentinel ():
20
30
game = prepare_game ()
21
31
wisp = game .player2 .summon (WISP )
You can’t perform that action at this time.
0 commit comments