Skip to content

Commit e12336f

Browse files
committed
More fixes
- Fixed an issue where Gambler's Tag retriggered until creating Empowered Tag - Fixed a crash when selecting a sleeve while using Galdur and CardSleeves with Cryptid - Antimatter Deck description now matches effect in Modest and Mainline - Fixed an issue where Necromancer could create non-Jokers and put them in Joker slots
1 parent dd8a87c commit e12336f

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

items/deck.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,9 @@ local antimatter = {
472472
"set_cry_deck",
473473
},
474474
},
475+
loc_vars = function(self, info_queue, center)
476+
return { key = "b_cry_antimatter" .. (cry_get_gameset(G.P_CENTERS.b_cry_antimatter) == "madness" and "" or "_balanced") }
477+
end,
475478
name = "cry-Antimatter",
476479
order = 76,
477480
key = "antimatter",

items/enhanced.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,14 +363,14 @@ return {
363363
function Card:click()
364364
ccl(self)
365365
if
366-
Galdur
366+
Galdur and safe_get(Galdur, "run_setup", "current_page") == 1
367367
and (self.edeck_select or (self.area == safe_get(Galdur, "run_setup", "selected_deck_area") and safe_get(
368368
self,
369369
"config",
370370
"center",
371371
"edeck_type"
372372
)))
373-
or (
373+
or (not Galdur) and (
374374
safe_get(G.GAME, "viewed_back", "effect", "center", "edeck_type")
375375
and (self.back == "viewed_back" or self.edeck_select)
376376
)

items/tag.lua

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,6 @@ local gambler = {
252252
end)
253253
else
254254
tag:nope()
255-
for i = 1, #G.GAME.tags do
256-
if G.GAME.tags[i]:apply_to_run({ type = "new_blind_choice" }) then
257-
break
258-
end
259-
end
260255
end
261256
tag.triggered = true
262257
return true

localization/en-us.lua

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ return {
88
"of {C:attention}every{} deck",
99
},
1010
},
11+
b_cry_antimatter_balanced = {
12+
name = "Antimatter Deck",
13+
text = {
14+
"Applies the {C:legendary,E:1}upsides{}",
15+
"of {C:attention}every{} deck won",
16+
"with {C:gold}Gold Stake{}",
17+
},
18+
},
1119
b_cry_beige = {
1220
name = "Beige Deck",
1321
text = {

lovely/misc_joker.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if G.GAME.jokers_sold then
3333
if self.config.center.key == G.GAME.jokers_sold[i] then contained = true end
3434
end
3535
if not contained then table.insert(G.GAME.jokers_sold, self.config.center.key) end
36-
else
36+
elseif self.config.center.set == "Joker" then
3737
G.GAME.jokers_sold = {self.config.center.key}
3838
end
3939
'''

0 commit comments

Comments
 (0)