Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ return {
["override_glitched"] = true,
["omega_aleph"] = false,
["inversion_queues"] = 2,
["curses_enabled"] = true
}
1 change: 1 addition & 0 deletions items/misc/stakes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ Entropy.curses = {
}

function Entropy.get_curse_rate()
if not Entropy.config.curses_enabled then return 0 end
if to_big(G.GAME.round_resets.ante) <= to_big(G.GAME.win_ante or 8) then return 0 end
local key = G.GAME.selected_back and G.GAME.selected_back.effect.center.original_key
local wins = G.PROFILES and G.SETTINGS.profile and G.PROFILES[G.SETTINGS.profile].deck_usage and G.PROFILES[G.SETTINGS.profile].deck_usage[key] and G.PROFILES[G.SETTINGS.profile].deck_usage[key].wins or {}
Expand Down
6 changes: 6 additions & 0 deletions lib/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ local entrConfigTab = function()
ref_value = "family_mode",
callback = Cryptid.reload_localization,
})
entr_nodes[#entr_nodes + 1] = create_toggle({
label = localize("curses_enabled"),
active_colour = HEX("40c76d"),
ref_table = Entropy.config,
ref_value = "curses_enabled",
})
if SMODS.Mods["Cryptid"] and SMODS.Mods["Cryptid"].can_load then
entr_nodes[#entr_nodes + 1] = create_toggle({
label = localize("k_entr_faster_ante_scaling"),
Expand Down
1 change: 1 addition & 0 deletions localization/en-us.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5523,6 +5523,7 @@ local decs = {
flipside_full = 'Full',

flipside_info = 'Inversion display when holding Flipside',
curses_enabled = "Enable Curses outside of Obsidian Stake",

b_stat_CBlind = "Blind Token",
b_stat_Fraud = "Fraud",
Expand Down