Adjust blind money and mult
This commit is contained in:
parent
e3de4a761a
commit
7a99059b7e
2 changed files with 7 additions and 5 deletions
|
|
@ -70,8 +70,7 @@ SMODS.Blind {
|
||||||
atlas = "janeblinds",
|
atlas = "janeblinds",
|
||||||
pos = {x = 0, y = 0},
|
pos = {x = 0, y = 0},
|
||||||
vars = {},
|
vars = {},
|
||||||
dollars = 15,
|
dollars = 6,
|
||||||
mult = Cryptid and 0.5 or 0.25,
|
|
||||||
defeat = function(_)
|
defeat = function(_)
|
||||||
if not Cryptid then
|
if not Cryptid then
|
||||||
G.GAME.operator = 2
|
G.GAME.operator = 2
|
||||||
|
|
@ -79,7 +78,7 @@ SMODS.Blind {
|
||||||
offset_operator(1)
|
offset_operator(1)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
disable = function(self)
|
disable = function(_)
|
||||||
offset_operator(1)
|
offset_operator(1)
|
||||||
end,
|
end,
|
||||||
drawn_to_hand = function(_)
|
drawn_to_hand = function(_)
|
||||||
|
|
@ -105,7 +104,7 @@ SMODS.Blind {
|
||||||
atlas = "janeblinds",
|
atlas = "janeblinds",
|
||||||
pos = {x = 0, y = 9},
|
pos = {x = 0, y = 9},
|
||||||
vars = {},
|
vars = {},
|
||||||
dollars = 7,
|
dollars = 5,
|
||||||
mult = 2,
|
mult = 2,
|
||||||
debuff_hand = function(_, cards, _, _, _)
|
debuff_hand = function(_, cards, _, _, _)
|
||||||
local numsuits = 0
|
local numsuits = 0
|
||||||
|
|
@ -137,7 +136,6 @@ SMODS.Blind {
|
||||||
pos = {x = 0, y = 3},
|
pos = {x = 0, y = 3},
|
||||||
vars = {},
|
vars = {},
|
||||||
dollars = 2,
|
dollars = 2,
|
||||||
mult = 22 / 300,
|
|
||||||
debuff_hand = function(_, cards, _, _, _)
|
debuff_hand = function(_, cards, _, _, _)
|
||||||
for _, v in ipairs(cards) do
|
for _, v in ipairs(cards) do
|
||||||
if v:norank() or v:get_id() ~= 2 then
|
if v:norank() or v:get_id() ~= 2 then
|
||||||
|
|
|
||||||
|
|
@ -310,6 +310,10 @@ function Game:update(dt)
|
||||||
|
|
||||||
orig_update(self, dt)
|
orig_update(self, dt)
|
||||||
|
|
||||||
|
local blind = get_blind_amount(G.GAME.round_resets.ante)
|
||||||
|
G.P_BLINDS["bl_jane_wee"].mult = 22 / blind
|
||||||
|
G.P_BLINDS["bl_jane_descending"].mult = math.floor(8 * math.sqrt(blind)) / blind
|
||||||
|
|
||||||
if not Jane.bans_done then
|
if not Jane.bans_done then
|
||||||
delete_hardbans()
|
delete_hardbans()
|
||||||
Jane.bans_done = true
|
Jane.bans_done = true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue