Add missing credit

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

View file

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

View file

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