Allow highlighting multiple consumeables

This commit is contained in:
Emik 2026-02-11 01:36:03 +01:00
parent 5aca45367f
commit 40f8934215
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF

View file

@ -1,5 +1,19 @@
local _, q = unpack(... or require "src.functional")
SMODS.Joker:take_ownership("joker", {cost = 1}, true) SMODS.Joker:take_ownership("joker", {cost = 1}, true)
local orig_can_highlight = CardArea.can_highlight
local orig_set_debuff = Card.set_debuff local orig_set_debuff = Card.set_debuff
local orig_highlight = Card.highlight
---@diagnostic disable-next-line: duplicate-set-field
function CardArea:can_highlight(...)
if self ~= G.consumeables then
return orig_can_highlight(self, ...)
end
self.config.highlighted_limit = 1 / 0
return true
end
---@diagnostic disable-next-line: duplicate-set-field ---@diagnostic disable-next-line: duplicate-set-field
function Card:set_debuff(...) function Card:set_debuff(...)
@ -9,3 +23,21 @@ function Card:set_debuff(...)
orig_set_debuff(self, ...) orig_set_debuff(self, ...)
end end
end end
---@diagnostic disable-next-line: duplicate-set-field
function Card:highlight(is_highlighted, ...)
self.highlighted = is_highlighted
if not G.CONTROLLER.HID.controller then
return orig_highlight(self, is_highlighted, ...)
end
end
q(function()
local orig_can_highlight_area = Bakery_API.can_highlight_area
---@diagnostic disable-next-line: duplicate-set-field
function Bakery_API.can_highlight_area(area, ...)
return area == G.consumeables or orig_can_highlight_area(area, ...)
end
end)