File tree 6 files changed +11
-11
lines changed
6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class BRMC_92:
57
57
58
58
# Golemagg
59
59
class BRMC_95 :
60
- cost = lambda self , i : i - self . controller . hero . damage
60
+ cost_mod = - Attr ( FRIENDLY_HERO , GameTag . DAMAGE )
61
61
62
62
63
63
# High Justice Grimstone
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class BRM_008:
26
26
27
27
# Volcanic Lumberer
28
28
class BRM_009 :
29
- cost = lambda self , i : i - len ( self . game . minions_killed_this_turn )
29
+ cost_mod = - Attr ( GAME , GameTag . NUM_MINIONS_KILLED_THIS_TURN )
30
30
31
31
32
32
# Druid of the Flame (Firecat Form)
@@ -84,7 +84,7 @@ class BRM_024:
84
84
85
85
# Volcanic Drake
86
86
class BRM_025 :
87
- cost = lambda self , i : i - len ( self . game . minions_killed_this_turn )
87
+ cost_mod = - Attr ( GAME , GameTag . NUM_MINIONS_KILLED_THIS_TURN )
88
88
89
89
90
90
# Hungry Dragon
@@ -136,7 +136,7 @@ class BRM_034:
136
136
# Solemn Vigil
137
137
class BRM_001 :
138
138
play = Draw (CONTROLLER ) * 2
139
- cost = lambda self , i : i - len ( self . game . minions_killed_this_turn )
139
+ cost_mod = - Attr ( GAME , GameTag . NUM_MINIONS_KILLED_THIS_TURN )
140
140
141
141
142
142
# Melt (Unused)
@@ -147,7 +147,7 @@ class BRM_001e:
147
147
# Dragon's Breath
148
148
class BRM_003 :
149
149
play = Hit (TARGET , 4 )
150
- cost = lambda self , i : i - len ( self . game . minions_killed_this_turn )
150
+ cost_mod = - Attr ( GAME , GameTag . NUM_MINIONS_KILLED_THIS_TURN )
151
151
152
152
153
153
# Demonwrath
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class EX1_005:
8
8
9
9
# Mountain Giant
10
10
class EX1_105 :
11
- cost = lambda self , i : i - ( len ( self . controller . hand ) - 1 )
11
+ cost_mod = - Count ( CONTROLLER_HAND - SELF )
12
12
13
13
14
14
# Murloc Warleader
@@ -23,7 +23,7 @@ class EX1_564:
23
23
24
24
# Sea Giant
25
25
class EX1_586 :
26
- cost = lambda self , i : i - len ( self . game . board )
26
+ cost_mod = - Count ( ALL_MINIONS )
27
27
28
28
29
29
# Blood Knight
@@ -36,7 +36,7 @@ class EX1_590:
36
36
37
37
# Molten Giant
38
38
class EX1_620 :
39
- cost = lambda self , i : i - self . controller . hero . damage
39
+ cost_mod = - Attr ( FRIENDLY_HERO , GameTag . DAMAGE )
40
40
41
41
42
42
# Captain's Parrot
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class GVG_108:
39
39
40
40
# Clockwork Giant
41
41
class GVG_121 :
42
- cost = lambda self , i : i - len ( self . controller . opponent . hand )
42
+ cost_mod = - Count ( OPPONENT_HAND )
43
43
44
44
45
45
# Wee Spellstopper
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class AT_118:
36
36
37
37
# Frost Giant
38
38
class AT_120 :
39
- cost = lambda self , i : i - self . controller . times_hero_power_used_this_game
39
+ cost_mod = - Attr ( CONTROLLER , GameTag . NUM_TIMES_HERO_POWER_USED_THIS_GAME )
40
40
41
41
42
42
# Crowd Favorite
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class AT_018:
11
11
12
12
# Skycap'n Kragg
13
13
class AT_070 :
14
- cost = lambda self , i : i - len ( self . controller . field . filter ( race = Race . PIRATE ) )
14
+ cost_mod = - Count ( FRIENDLY_MINIONS + PIRATE )
15
15
16
16
17
17
# Gormok the Impaler
You can’t perform that action at this time.
0 commit comments