Nerf exponential scaling
This commit is contained in:
parent
5c1cabb252
commit
e21b95254f
2 changed files with 3 additions and 3 deletions
|
|
@ -12,5 +12,5 @@
|
||||||
"Bakery (>=0.1.26~*)"
|
"Bakery (>=0.1.26~*)"
|
||||||
],
|
],
|
||||||
"conflicts": ["Jen"],
|
"conflicts": ["Jen"],
|
||||||
"version": "0.1.5"
|
"version": "0.1.6"
|
||||||
}
|
}
|
||||||
|
|
@ -434,9 +434,9 @@ local function attunement()
|
||||||
end
|
end
|
||||||
|
|
||||||
local cards = polygloss(G.playing_cards) + polygloss(G.jokers.cards) + polygloss(G.consumeables.cards)
|
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 round = Cryptid and 10000 or 100
|
||||||
local expo = cards * 10
|
local expo = cards * 2 + 1
|
||||||
return math.floor(base ^ expo * round) / round
|
return math.floor(base ^ expo * round) / round
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue