Skip to content

Commit 445c300

Browse files
Minor Mask/Broken Mask Loc Fix (#432)
* Minor Mask/Broken Mask Loc Fix https://discord.com/channels/1264429948970733782/1343645567938723840/1344436218313834578 * Might as well do this too while i'm at it --------- Co-authored-by: Jevonnissocoolman <[email protected]>
1 parent 0763e63 commit 445c300

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

items/misc_joker.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6760,7 +6760,7 @@ local exposed = {
67606760
atlas = "atlastwo",
67616761
blueprint_compat = true,
67626762
loc_vars = function(self, info_queue, center)
6763-
return { vars = { center.ability.extra } }
6763+
return { vars = { math.min(40, center.ability.extra) } }
67646764
end,
67656765
update = function(self, card, dt)
67666766
if G.deck and card.added_to_deck then
@@ -6807,7 +6807,7 @@ local mask = {
68076807
order = 124,
68086808
blueprint_compat = true,
68096809
loc_vars = function(self, info_queue, center)
6810-
return { vars = { center.ability.extra } }
6810+
return { vars = { math.min(40, center.ability.extra) } }
68116811
end,
68126812
update = function(self, card, dt)
68136813
if G.deck and card.added_to_deck then

localization/en-us.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ return {
13651365
j_cry_exposed = {
13661366
name = "Exposed",
13671367
text = {
1368-
"Retrigger all non-{C:attention}face{} cards",
1368+
"Retrigger all scored non-{C:attention}face{} cards",
13691369
"{C:attention}#1#{} additional time#<s>1#",
13701370
"All {C:attention}face{} cards are debuffed",
13711371
},
@@ -1758,7 +1758,7 @@ return {
17581758
j_cry_mask = {
17591759
name = "Mask",
17601760
text = {
1761-
"Retrigger all {C:attention}face{} cards",
1761+
"Retrigger all scored {C:attention}face{} cards",
17621762
"{C:attention}#1#{} additional time#<s>1#",
17631763
"All non-{C:attention}face{} cards are debuffed",
17641764
},

0 commit comments

Comments
 (0)