From b040be6d38a696f84a4d53e8373a9864fd3c643c Mon Sep 17 00:00:00 2001 From: Emik Date: Sun, 24 May 2026 16:37:22 +0200 Subject: [PATCH] Add missing credit --- manifest.json | 2 +- src/tarot.lua | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index eba2e58..c3b8ed2 100644 --- a/manifest.json +++ b/manifest.json @@ -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", diff --git a/src/tarot.lua b/src/tarot.lua index 3952e43..a3d30c5 100644 --- a/src/tarot.lua +++ b/src/tarot.lua @@ -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)