Nerf exponential scaling

This commit is contained in:
Emik 2025-03-27 23:05:31 +01:00
parent 5c1cabb252
commit e21b95254f
Signed by untrusted user who does not match committer: emik
GPG key ID: 09CDFF9E5703688D
2 changed files with 3 additions and 3 deletions

View file

@ -12,5 +12,5 @@
"Bakery (>=0.1.26~*)"
],
"conflicts": ["Jen"],
"version": "0.1.5"
"version": "0.1.6"
}

View file

@ -434,9 +434,9 @@ local function attunement()
end
local cards = polygloss(G.playing_cards) + polygloss(G.jokers.cards) + polygloss(G.consumeables.cards)
local base = Cryptid and 1.00001 or 1.001
local base = Cryptid and 1.0001 or 1.01
local round = Cryptid and 10000 or 100
local expo = cards * 10
local expo = cards * 2 + 1
return math.floor(base ^ expo * round) / round
end