This commit is contained in:
Emik 2026-01-26 13:09:35 +01:00
parent 0771b41d52
commit 6ace22f122
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
5 changed files with 7 additions and 1 deletions

View file

@ -6,7 +6,7 @@
"author": [ "author": [
"Emik" "Emik"
], ],
"version": "1.4.6", "version": "1.4.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

@ -59,6 +59,7 @@ SMODS.Blind {
boss_colour = HEX("009966"), boss_colour = HEX("009966"),
atlas = "blind", atlas = "blind",
pos = {x = 0, y = 0}, pos = {x = 0, y = 0},
pronouns = "any_all",
mult = 2, mult = 2,
dollars = 5, dollars = 5,
defeat = disable_improbable, defeat = disable_improbable,
@ -74,6 +75,7 @@ SMODS.Blind {
boss_colour = HEX("0291fb"), boss_colour = HEX("0291fb"),
atlas = "blind", atlas = "blind",
pos = {x = 0, y = 1}, pos = {x = 0, y = 1},
pronouns = "she_her",
mult = 2, mult = 2,
dollars = 5, dollars = 5,
defeat = function(self) defeat = function(self)

View file

@ -4,6 +4,7 @@ SMODS.Challenge {
key = "Jokerful", key = "Jokerful",
rules = {custom = {{id = "Roland_Jokerful"}}}, rules = {custom = {{id = "Roland_Jokerful"}}},
restrictions = jokerful, restrictions = jokerful,
pronouns = "he_him",
} }
G.E_MANAGER:add_event(Event { G.E_MANAGER:add_event(Event {

View file

@ -41,6 +41,7 @@ SMODS.Atlas {
SMODS.Joker { SMODS.Joker {
key = "escapey", key = "escapey",
atlas = "escapey", atlas = "escapey",
pronouns = "they_them",
pos = {x = 0, y = 0}, pos = {x = 0, y = 0},
sinis = {x = 2, y = 0}, sinis = {x = 2, y = 0},
soul_pos = {x = 1, y = 0}, soul_pos = {x = 1, y = 0},

View file

@ -29,6 +29,7 @@ SMODS.Consumable {
pos = {x = 0, y = 0}, pos = {x = 0, y = 0},
cost = 6, cost = 6,
atlas = "afterimage", atlas = "afterimage",
pronouns = "he_they",
config = {extra = {amount = 1, hand = -1}}, config = {extra = {amount = 1, hand = -1}},
loc_vars = function(_, _, card) loc_vars = function(_, _, card)
return {vars = {card.ability.extra.amount, card.ability.extra.hand}} return {vars = {card.ability.extra.amount, card.ability.extra.hand}}
@ -68,6 +69,7 @@ SMODS.Consumable {
atlas = "void", atlas = "void",
soul_rate = 0.003, soul_rate = 0.003,
soul_set = "Spectral", soul_set = "Spectral",
pronouns = "she_they",
config = {extra = {amount = 2}}, config = {extra = {amount = 2}},
loc_vars = function(_, _, card) loc_vars = function(_, _, card)
return {vars = {card.ability.extra.amount}} return {vars = {card.ability.extra.amount}}