Skip to content

Commit e3827ae

Browse files
committed
2 parents a7aea59 + 8de4147 commit e3827ae

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

items/misc_joker.lua

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10435,7 +10435,7 @@ local fading_joker = { -- +1 to all listed probabilities for the highest cat tag
1043510435
order = 143,
1043610436
demicoloncompat = true,
1043710437
blueprint_compat = true,
10438-
config = { extra = {xmult = 1, xmult_mod = 1} },
10438+
config = { extra = { xmult = 1, xmult_mod = 1 } },
1043910439
loc_vars = function(self, info_queue, card)
1044010440
return { vars = { number_format(card.ability.extra.xmult_mod), number_format(card.ability.extra.xmult) } }
1044110441
end,
@@ -10471,11 +10471,11 @@ local fading_joker = { -- +1 to all listed probabilities for the highest cat tag
1047110471
local calcuate_parishable_ref = Card.calculate_perishable
1047210472
function Card:calculate_perishable(...)
1047310473
if self.ability.perish_tally == 1 then
10474-
SMODS.calculate_context({perishable_debuffed = true, other_card = self, cardarea = self.area})
10474+
SMODS.calculate_context({ perishable_debuffed = true, other_card = self, cardarea = self.area })
1047510475
end
1047610476
return calcuate_parishable_ref(self, ...)
1047710477
end
10478-
end
10478+
end,
1047910479
}
1048010480

1048110481
local poor_joker = { -- +1 to all listed probabilities for the highest cat tag level
@@ -10505,7 +10505,7 @@ local poor_joker = { -- +1 to all listed probabilities for the highest cat tag l
1050510505
order = 144,
1050610506
demicoloncompat = true,
1050710507
blueprint_compat = true,
10508-
config = { extra = {mult = 0, mult_mod = 4} },
10508+
config = { extra = { mult = 0, mult_mod = 4 } },
1050910509
loc_vars = function(self, info_queue, card)
1051010510
return { vars = { number_format(card.ability.extra.mult_mod), number_format(card.ability.extra.mult) } }
1051110511
end,
@@ -10541,10 +10541,10 @@ local poor_joker = { -- +1 to all listed probabilities for the highest cat tag l
1054110541
local calcuate_rental_ref = Card.calculate_rental
1054210542
function Card:calculate_rental(...)
1054310543
local ret = calcuate_rental_ref(self, ...)
10544-
SMODS.calculate_context({rental = true, other_card = self, cardarea = self.area})
10544+
SMODS.calculate_context({ rental = true, other_card = self, cardarea = self.area })
1054510545
return ret
1054610546
end
10547-
end
10547+
end,
1054810548
}
1054910549

1055010550
local miscitems = {
@@ -10677,7 +10677,7 @@ local miscitems = {
1067710677
pizza_slice,
1067810678
paved_joker,
1067910679
fading_joker,
10680-
poor_joker
10680+
poor_joker,
1068110681
}
1068210682

1068310683
return {

localization/en-us.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2726,7 +2726,7 @@ return {
27262726
"This Joker Gains",
27272727
"{X:mult,C:white}X#1#{} Mult whenever",
27282728
"a {C:attention}Perishable{} card is debuffed",
2729-
"{C:inactive}(Currently{} {X:mult,C:white}X#2#{} {C:inactive}Mult){}"
2729+
"{C:inactive}(Currently{} {X:mult,C:white}X#2#{} {C:inactive}Mult){}",
27302730
},
27312731
},
27322732
j_cry_poor_joker = {
@@ -2735,7 +2735,7 @@ return {
27352735
"This Joker Gains",
27362736
"{C:mult}+#1#{} Mult whenever",
27372737
"a {C:attention}Rental{} card takes money",
2738-
"{C:inactive}(Currently{} {C:mult}+#2#{} {C:inactive}Mult){}"
2738+
"{C:inactive}(Currently{} {C:mult}+#2#{} {C:inactive}Mult){}",
27392739
},
27402740
},
27412741
j_cry_spaceglobe = {

0 commit comments

Comments
 (0)