@@ -1031,18 +1031,27 @@ local double_scale = {
10311031 immutable = true ,
10321032 atlas = " atlasepic" ,
10331033 calc_scaling = function (self , card , other , current_scaling , current_scalar , args )
1034- if not G .GAME .cryptid_base_scales then G .GAME .cryptid_base_scales = {} end
1035- if not G .GAME .cryptid_base_scales [other .config .center .key ] then G .GAME .cryptid_base_scales [other .config .center .key ] = {} end
1036- if not G .GAME .cryptid_base_scales [other .config .center .key ][args .scalar_value ] then G .GAME .cryptid_base_scales [other .config .center .key ][args .scalar_value ] = current_scalar end
1034+ if not G .GAME .cryptid_base_scales then
1035+ G .GAME .cryptid_base_scales = {}
1036+ end
1037+ if not G .GAME .cryptid_base_scales [other .config .center .key ] then
1038+ G .GAME .cryptid_base_scales [other .config .center .key ] = {}
1039+ end
1040+ if not G .GAME .cryptid_base_scales [other .config .center .key ][args .scalar_value ] then
1041+ G .GAME .cryptid_base_scales [other .config .center .key ][args .scalar_value ] = current_scalar
1042+ end
10371043 local true_base = G .GAME .cryptid_base_scales [other .config .center .key ][args .scalar_value ]
10381044 local orig_scale_scale = current_scaling
10391045 if Cryptid .gameset (self ) == " exp_modest" then
10401046 return {
10411047 scalar_value = lenient_bignum (to_big (true_base ) * 2 ),
1042- message = localize (" k_upgrade_ex" )
1048+ message = localize (" k_upgrade_ex" ),
10431049 }
10441050 end
1045- return {scalar_value = lenient_bignum (orig_scale_scale + to_big (true_base )), message = localize (" k_upgrade_ex" )}
1051+ return {
1052+ scalar_value = lenient_bignum (orig_scale_scale + to_big (true_base )),
1053+ message = localize (" k_upgrade_ex" ),
1054+ }
10461055 end ,
10471056 cry_credits = {
10481057 idea = {
0 commit comments