@@ -879,27 +879,27 @@ elseif eval_type == 'hyper_chips' then
879879elseif eval_type == 'e_mult' then
880880 sound = 'talisman_emult'
881881 amt = amt
882- text = '^' .. amt .. ' Mult'
882+ text = '^' .. amt .. ' ' .. localize('k_mult')
883883 colour = G.C.MULT
884884 config.type = 'fade'
885885 config.scale = 0.7
886886elseif eval_type == 'ee_mult' then
887887 sound = 'talisman_eemult'
888888 amt = amt
889- text = '^^' .. amt .. ' Mult'
889+ text = '^^' .. amt .. ' ' .. localize('k_mult')
890890 colour = G.C.MULT
891891 config.type = 'fade'
892892 config.scale = 0.7
893893elseif eval_type == 'eee_mult' then
894894 sound = 'talisman_eeemult'
895895 amt = amt
896- text = '^^^' .. amt .. ' Mult'
896+ text = '^^^' .. amt .. ' ' .. localize('k_mult')
897897 colour = G.C.MULT
898898 config.type = 'fade'
899899 config.scale = 0.7
900900elseif eval_type == 'hyper_mult' then
901901 sound = 'talisman_eeemult'
902- text = (amt[1] > 5 and ('{' .. tostring(amt[1]) .. '}') or string.rep('^', amt[1])) .. tostring(amt[2]) .. ' Mult'
902+ text = (amt[1] > 5 and ('{' .. tostring(amt[1]) .. '}') or string.rep('^', amt[1])) .. tostring(amt[2]) .. ' ' .. localize('k_mult')
903903 amt = amt[2]
904904 colour = G.C.MULT
905905 config.type = 'fade'
@@ -1108,31 +1108,31 @@ if scoring_hand and scoring_hand[i] and scoring_hand[i].edition then
11081108 mult = mod_mult(mult ^ edi.e_mult)
11091109 update_hand_text({delay = 0}, {mult = mult})
11101110 card_eval_status_text(trg, 'extra', nil, percent, nil,
1111- {message = '^'.. edi.e_mult ..' Mult' ,
1111+ {message = '^'.. edi.e_mult ..' ' .. localize('k_mult') ,
11121112 edition = true,
11131113 e_mult = true})
11141114 end
11151115 if edi.ee_mult then
11161116 mult = mod_mult(mult:arrow(2, edi.ee_mult))
11171117 update_hand_text({delay = 0}, {mult = mult})
11181118 card_eval_status_text(trg, 'extra', nil, percent, nil,
1119- {message = '^^'.. edi.ee_mult ..' Mult' ,
1119+ {message = '^^'.. edi.ee_mult ..' ' .. localize('k_mult') ,
11201120 edition = true,
11211121 ee_mult = true})
11221122 end
11231123 if edi.eee_mult then
11241124 mult = mod_mult(mult:arrow(3, edi.eee_mult))
11251125 update_hand_text({delay = 0}, {mult = mult})
11261126 card_eval_status_text(trg, 'extra', nil, percent, nil,
1127- {message = '^^^'.. edi.eee_mult ..' Mult' ,
1127+ {message = '^^^'.. edi.eee_mult ..' ' .. localize('k_mult') ,
11281128 edition = true,
11291129 eee_mult = true})
11301130 end
11311131 if edi.hyper_mult and type(edi.hyper_mult) == 'table' then
11321132 mult = mod_mult(mult:arrow(edi.hyper_mult[1], edi.hyper_mult[2]))
11331133 update_hand_text({delay = 0}, {mult = mult})
11341134 card_eval_status_text(trg, 'extra', nil, percent, nil,
1135- {message = (edi.hyper_mult[1] > 5 and ('{' .. edi.hyper_mult[1] .. '}') or string.rep('^', edi.hyper_mult[1])) .. edi.hyper_mult[2] ..' Mult' ,
1135+ {message = (edi.hyper_mult[1] > 5 and ('{' .. edi.hyper_mult[1] .. '}') or string.rep('^', edi.hyper_mult[1])) .. edi.hyper_mult[2] ..' ' .. localize('k_mult') ,
11361136 edition = true,
11371137 hyper_mult = true})
11381138 end
@@ -1203,31 +1203,31 @@ if G.jokers.cards and G.jokers.cards[i] and G.jokers.cards[i].edition then
12031203 mult = mod_mult(mult ^ edi.e_mult)
12041204 update_hand_text({delay = 0}, {mult = mult})
12051205 card_eval_status_text(trg, 'extra', nil, percent, nil,
1206- {message = '^'.. edi.e_mult ..' Mult' ,
1206+ {message = '^'.. edi.e_mult ..' ' .. localize('k_mult') ,
12071207 edition = true,
12081208 e_mult = true})
12091209 end
12101210 if edi.ee_mult then
12111211 mult = mod_mult(mult:arrow(2, edi.ee_mult))
12121212 update_hand_text({delay = 0}, {mult = mult})
12131213 card_eval_status_text(trg, 'extra', nil, percent, nil,
1214- {message = '^^'.. edi.ee_mult ..' Mult' ,
1214+ {message = '^^'.. edi.ee_mult ..' ' .. localize('k_mult') ,
12151215 edition = true,
12161216 ee_mult = true})
12171217 end
12181218 if edi.eee_mult then
12191219 mult = mod_mult(mult:arrow(3, edi.eee_mult))
12201220 update_hand_text({delay = 0}, {mult = mult})
12211221 card_eval_status_text(trg, 'extra', nil, percent, nil,
1222- {message = '^^^'.. edi.eee_mult ..' Mult' ,
1222+ {message = '^^^'.. edi.eee_mult ..' ' .. localize('k_mult') ,
12231223 edition = true,
12241224 eee_mult = true})
12251225 end
12261226 if edi.hyper_mult and type(edi.hyper_mult) == 'table' then
12271227 mult = mod_mult(mult:arrow(edi.hyper_mult[1], edi.hyper_mult[2]))
12281228 update_hand_text({delay = 0}, {mult = mult})
12291229 card_eval_status_text(trg, 'extra', nil, percent, nil,
1230- {message = (edi.hyper_mult[1] > 5 and ('{' .. edi.hyper_mult[1] .. '}') or string.rep('^', edi.hyper_mult[1])) .. edi.hyper_mult[2] ..' Mult' ,
1230+ {message = (edi.hyper_mult[1] > 5 and ('{' .. edi.hyper_mult[1] .. '}') or string.rep('^', edi.hyper_mult[1])) .. edi.hyper_mult[2] ..' ' .. localize('k_mult') ,
12311231 edition = true,
12321232 hyper_mult = true})
12331233 end
0 commit comments