Skip to content
Open
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
5 changes: 3 additions & 2 deletions Bunco.lua
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ function BUNCOMOD.content.config_tab()
G.localization.misc.dictionary.bunc_default_false,
'',
G.localization.misc.dictionary.bunc_jokerlike_consumable_editions_desc,
G.localization.misc.dictionary.bunc_jokerlike_consumable_editions_desc_2
G.localization.misc.dictionary.bunc_jokerlike_consumable_editions_desc_2,
G.localization.misc.dictionary.bunc_jokerlike_consumable_editions_desc_3
},
ref_table = BUNCOMOD.content.config,
ref_value = 'jokerlike_consumable_editions',
Expand Down Expand Up @@ -8005,7 +8006,7 @@ for i = 1, 4 do -- Blind
loc_vars = function(self, info_queue, card)
return {key = 'p_bunc_blind', vars = {self.config.extra}}
end,
config = {extra = 3, choose = 1},
config = {extra = 3},

cost = 8,
weight = 1,
Expand Down
12 changes: 6 additions & 6 deletions config.lua
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
return {

colorful_finishers = true; -- Makes the finisher blinds (such as Verdant Leaf) have their own colors
colorful_finishers = true, -- Makes the finisher blinds (such as Verdant Leaf) have their own colors
-- Values: true/false (default: true)

high_quality_shaders = true; -- Makes some things like the background render at a higher quality
high_quality_shaders = true, -- Makes some things like the background render at a higher quality
-- Values: true/false (default: true)

jokerlike_consumable_editions = false; -- Enabling this will revert vanilla behaviour of editions on consumables - they will always affect card calculation
jokerlike_consumable_editions = false, -- Enabling this will revert vanilla behaviour of editions on consumables - they will always affect card calculation
-- Values: true/false (default: false)

fixed_badges = false; -- Changes how badges on the planets work - "Planet" for every non-hidden planet and "Planet?" for secret poker hand planets
fixed_badges = false, -- Changes how badges on the planets work - "Planet" for every non-hidden planet and "Planet?" for secret poker hand planets
-- Values: true/false (default: false)

fixed_sprites = true; -- Fixes some stray pixels and various weirdness
fixed_sprites = true, -- Fixes some stray pixels and various weirdness
-- Values: true/false (default: true)

gameplay_reworks = true; -- Reworks some of the vanilla features
gameplay_reworks = true, -- Reworks some of the vanilla features
-- Values: true/false (default: true)

}
Loading