Add missing credit

This commit is contained in:
Emik 2026-05-24 16:37:22 +02:00
parent 96da4e9268
commit b040be6d38
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 7 additions and 2 deletions

View file

@ -6,7 +6,7 @@
"author": [
"Emik"
],
"version": "2.6.6",
"version": "2.6.7",
"badge_colour": "8BE9FD",
"main_file": "src/main.lua",
"badge_text_colour": "44475A",

View file

@ -7,13 +7,14 @@ SMODS.Atlas {
path = "tarot.png",
}
SMODS.Consumable {
local coolheaded = SMODS.Consumable {
key = "coolheaded",
pos = {x = 0, y = 0},
config = {extra = {amount = 1}},
cost = 3,
set = "Tarot",
atlas = "tarot",
artist = "Roland_aster",
attributes = {"editions", "modify_card", "spectral"},
loc_vars = function(_, info_queue, card)
table.insert(info_queue, G.P_CENTERS.e_Roland_frozen)
@ -35,3 +36,7 @@ SMODS.Consumable {
end)
end,
}
q(function()
Bakery_API.credit(coolheaded)
end)