Add missing credit
This commit is contained in:
parent
96da4e9268
commit
347cdc80fc
2 changed files with 7 additions and 2 deletions
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue