Compare commits

..

No commits in common. "main" and "1.3.1" have entirely different histories.
main ... 1.3.1

14 changed files with 36 additions and 113 deletions

View file

@ -20,11 +20,11 @@ continuation_indent = 4
# this mean utf8 length , if this is 'unset' then the line width is no longer checked # this mean utf8 length , if this is 'unset' then the line width is no longer checked
# this option decides when to chopdown the code # this option decides when to chopdown the code
max_line_length = 120 max_line_length = lf
# optional crlf/lf/cr/auto, if it is 'auto', in windows it is crlf other platforms are lf # optional crlf/lf/cr/auto, if it is 'auto', in windows it is crlf other platforms are lf
# in neovim the value 'auto' is not a valid option, please use 'unset' # in neovim the value 'auto' is not a valid option, please use 'unset'
end_of_line = lf end_of_line = auto
# none/ comma / semicolon / only_kv_colon # none/ comma / semicolon / only_kv_colon
table_separator_style = none table_separator_style = none

6
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"Lua.diagnostics.globals": [
"Jen",
"Jane"
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -14,7 +14,7 @@ return {
j_Roland_escapey = { j_Roland_escapey = {
name = "Escapey", name = "Escapey",
text = { text = {
"Destroy {C:attention}tags{} or {C:attention}non-selected", "Destroy {C:attention}tags{} and {C:attention}non-selected",
"{C:attention}consumables{} on use. Level up", "{C:attention}consumables{} on use. Level up",
"the {C:planet}most played hand{} by {C:planet}#1#{}", "the {C:planet}most played hand{} by {C:planet}#1#{}",
"for each destroyed object", "for each destroyed object",
@ -23,7 +23,7 @@ return {
"#3#{C:inactive,s:0.75,E:1}#4#{C:red,s:1.5,E:1}#5#", "#3#{C:inactive,s:0.75,E:1}#4#{C:red,s:1.5,E:1}#5#",
"#6#{C:blue,E:1}#7#{}#8#{C:inactive,s:0.75,E:1}#9#{C:red,s:1.5,E:1}#10#", "#6#{C:blue,E:1}#7#{}#8#{C:inactive,s:0.75,E:1}#9#{C:red,s:1.5,E:1}#10#",
}, },
merge = {"Since no objects apply, fuse", "with other ", " jokers"}, merge = {"Since no objects apply, merge", "with other ", " jokers"},
quotes = { quotes = {
marble = {{"there is no escape..."}}, marble = {{"there is no escape..."}},
normal = { normal = {
@ -44,14 +44,6 @@ return {
}, },
}, },
Spectral = { Spectral = {
c_Roland_afterimage = {
name = "Afterimage",
text = {
"Add {C:dark_edition}Negative {}to {C:attention}#1#",
"selected card in hand",
"{C:red}#2#{} hand size",
},
},
c_Roland_void = { c_Roland_void = {
name = "Void", name = "Void",
text = { text = {
@ -62,12 +54,4 @@ return {
}, },
}, },
}, },
misc = {
challenge_names = {
c_Roland_Jokerful = "Jokerful",
},
v_text = {
ch_c_Roland_Jokerful = {"Only the {C:common}default Joker{} can appear in shops"},
},
},
} }

View file

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

@ -1 +1 @@
Subproject commit 4f3eae046476664b720a96f91b0e04f388709bbb Subproject commit 5954713389e218b093dafd6121828de978af1dc2

View file

@ -52,19 +52,16 @@ SMODS.Joker {
blueprint_compat = false, blueprint_compat = false,
loc_vars = function(_, _, card) loc_vars = function(_, _, card)
local loc_self = G.localization.descriptions.Joker.j_Roland_escapey local loc_self = G.localization.descriptions.Joker.j_Roland_escapey
---@diagnostic disable-next-line: undefined-global
local sinister = (Jen or {}).sinister or G.escapey_sinister
local quotes = loc_self.quotes local quotes = loc_self.quotes
local merge = G.jokers local merge = G.jokers
and F.count(F.filter(G.jokers.cards, is_mergeable_with(card))) > 0 and F.count(F.filter(G.jokers.cards, is_mergeable_with(card))) > 0
and loc_self.merge or {} and loc_self.merge or {}
local normal = (merge[1] or sinister) and {} or local normal = (merge[1] or (Jen or Jane or {}).sinister) and {} or
pseudorandom_element(quotes.normal, pseudoseed("EscapeyQuotes")) or {} pseudorandom_element(quotes.normal, pseudoseed("EscapeyQuotes")) or {}
local scared = (merge[1] or not sinister) and {} or local scared = (merge[1] or not (Jen or Jane or {}).sinister) and {} or
pseudorandom_element(quotes.scared, pseudoseed("EscapeyQuotes")) or {} pseudorandom_element(quotes.scared, pseudoseed("EscapeyQuotes")) or {}
return { return {
@ -87,7 +84,6 @@ SMODS.Joker {
G.escapey_debugger(F.reduce(context, "", function(acc, _, next) return acc .. ", " .. next end, pairs):sub(2)) G.escapey_debugger(F.reduce(context, "", function(acc, _, next) return acc .. ", " .. next end, pairs):sub(2))
end end
end, end,
---@param card Card
Bakery_can_use = function(_, card) Bakery_can_use = function(_, card)
return not card.debuff and can_use() and ( return not card.debuff and can_use() and (
#G.GAME.tags ~= 0 or #G.GAME.tags ~= 0 or
@ -95,40 +91,27 @@ SMODS.Joker {
F.any(F.filter(G.jokers.cards, is_mergeable_with(card))) F.any(F.filter(G.jokers.cards, is_mergeable_with(card)))
) )
end, end,
---@param card Card
Bakery_use_button_text = function(_, card) Bakery_use_button_text = function(_, card)
if card.debuff then return card.debuff and "DEBUFFED" or
return "DEBUFFED" ((#G.GAME.tags == 0 and not
end F.any(G.consumeables.cards, destructible) and
F.any(F.filter(G.jokers.cards, is_mergeable_with(card)))) and "MERGE" or "ESCAPE")
return #G.GAME.tags == 0 and F.count(G.consumeables.cards, destructible) == 0 and
F.any(F.filter(G.jokers.cards, is_mergeable_with(card))) and "FUSE" or "ESCAPE"
end, end,
---@param card Card
Bakery_use_joker = function(_, card) Bakery_use_joker = function(_, card)
if card.debuff then local hand, object_count = common_hand(), F.count(F.filter(G.consumeables.cards, destructible)) + #G.GAME.tags
return
end
local consumables = F.filter(G.consumeables.cards, destructible)
local consumable_count = F.count(consumables)
local object_count = consumable_count + #G.GAME.tags
if object_count == 0 then if object_count == 0 then
local level_sum, sell_sum = 0, 0 local sum = 0
F.foreach( F.foreach(
F.filter(G.jokers.cards, is_mergeable_with(card)), F.filter(G.jokers.cards, is_mergeable_with(card)),
function(v) function(v)
level_sum = level_sum + v.ability.extra.level_up_by * (v.getEvalQty and v:getEvalQty() or 1) sum = sum + v.ability.extra.level_up_by * (v.getEvalQty and v:getEvalQty() or 1)
sell_sum = sell_sum + v.sell_cost * (v.getEvalQty and v:getEvalQty() or 1)
v:start_dissolve({HEX("57ecab")}, nil, 1.6) v:start_dissolve({HEX("57ecab")}, nil, 1.6)
end end
) )
card.ability.extra.level_up_by = card.ability.extra.level_up_by + level_sum card.ability.extra.level_up_by = card.ability.extra.level_up_by + sum
card.sell_cost = card.sell_cost + sell_sum
return
end end
local function update(name, chip, mul, lv, notif, snd, vol, pit, de) local function update(name, chip, mul, lv, notif, snd, vol, pit, de)
@ -165,8 +148,6 @@ SMODS.Joker {
end end
end end
local hand = common_hand()
if hand == "all" or hand == "allhands" or hand == "all_hands" then if hand == "all" or hand == "allhands" or hand == "all_hands" then
update(localize("k_all_hands"), "...", "...", "") update(localize("k_all_hands"), "...", "...", "")
elseif G.GAME.hands[hand or "NO_HAND_SPECIFIED"] then elseif G.GAME.hands[hand or "NO_HAND_SPECIFIED"] then
@ -178,24 +159,19 @@ SMODS.Joker {
) )
end end
if consumable_count == 0 then
local trigger = #G.GAME.tags >= 30 and "immediate" or "before"
local delay = #G.GAME.tags >= 30 and 0 or 1 / #G.GAME.tags
F.foreach( F.foreach(
G.GAME.tags, F.filter(G.consumeables.cards, destructible),
function(v)
G.E_MANAGER:add_event(Event {trigger = trigger, blocking = #G.GAME.tags < 30, delay = delay, func = fast_delete(v)})
end
)
else
F.foreach(
consumables,
function(v) function(v)
v:start_dissolve({HEX("57ecab")}, nil, 1.6) v:start_dissolve({HEX("57ecab")}, nil, 1.6)
end end
) )
F.foreach(
G.GAME.tags,
function(v)
G.E_MANAGER:add_event(Event({trigger = "immediate", func = fast_delete(v)}))
end end
)
level_up_hand(card, hand, nil, object_count * card.ability.extra.level_up_by) level_up_hand(card, hand, nil, object_count * card.ability.extra.level_up_by)

View file

@ -1,3 +1,5 @@
SMODS.Sound({key = "void", path = "void.ogg"})
local function can_use() local function can_use()
return not ((G.play and #G.play.cards > 0 or return not ((G.play and #G.play.cards > 0 or
G.CONTROLLER.locked or G.CONTROLLER.locked or
@ -7,15 +9,6 @@ local function can_use()
G.STATE ~= G.STATES.PLAY_TAROT) G.STATE ~= G.STATES.PLAY_TAROT)
end end
SMODS.Sound({key = "void", path = "void.ogg"})
SMODS.Atlas {
px = 71,
py = 95,
key = "afterimage",
path = "afterimage.png",
}
SMODS.Atlas { SMODS.Atlas {
px = 71, px = 71,
py = 95, py = 95,
@ -23,42 +16,6 @@ SMODS.Atlas {
path = "void.png", path = "void.png",
} }
SMODS.Consumable {
key = "afterimage",
set = "Spectral",
pos = {x = 0, y = 0},
cost = 6,
atlas = "afterimage",
config = {extra = {amount = 1, hand = -1}},
loc_vars = function(_, _, card)
return {vars = {card.ability.extra.amount, card.ability.extra.hand}}
end,
can_use = function(_, card)
return can_use() and card.ability.extra.amount == #Bakery_API.get_highlighted()
end,
use = function(_, card, _, _)
for _, v in ipairs(Bakery_API.get_highlighted()) do
G.E_MANAGER:add_event(Event {
delay = 0.1,
func = function()
v:set_edition({negative = true})
v:juice_up(0.5, 0.5)
return true
end,
})
end
G.E_MANAGER:add_event(Event {
delay = 0.1,
func = function()
G.hand:change_size(card.ability.extra.hand)
Bakery_API.unhighlight_all()
return true
end,
})
end,
}
SMODS.Consumable { SMODS.Consumable {
key = "void", key = "void",
set = "Spectral", set = "Spectral",