@@ -1150,6 +1150,7 @@ local seed = {
11501150 + # G .hand .highlighted
11511151 + # G .consumeables .highlighted
11521152 + (G .pack_cards and # G .pack_cards .highlighted or 0 )
1153+ -- + (G.shop_cards and #G.shop_cards.highlighted or 0) TODO: this so you can use seed when it's in shop
11531154 == 2
11541155 end ,
11551156 loc_vars = function (self , info_queue , card )
@@ -2147,9 +2148,15 @@ local multiply = {
21472148 },
21482149 cost = 4 ,
21492150 can_use = function (self , card )
2150- return # G .jokers .highlighted == 1
2151- and not Card .no (G .jokers .highlighted [1 ], " immune_to_chemach" , true )
2152- and not Card .no (G .jokers .highlighted [1 ], " immutable" , true )
2151+ if not G .GAME .modifiers .cry_beta then
2152+ return # G .jokers .highlighted == 1 and not Card .no (G .jokers .highlighted [1 ], " immutable" , true )
2153+ else
2154+ return # G .jokers .highlighted == 2
2155+ and not (
2156+ Card .no (G .jokers .highlighted [1 ], " immutable" , true )
2157+ or Card .no (G .jokers .highlighted [2 ], " immutable" , true )
2158+ )
2159+ end
21532160 end ,
21542161 use = function (self , card , area , copier )
21552162 if not G .jokers .highlighted [1 ].config .cry_multiply then
0 commit comments