We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f76bda3 commit da2cf06Copy full SHA for da2cf06
items/epic.lua
@@ -1969,11 +1969,11 @@ local clockwork = { -- Steel Support: The Joker
1969
return { xmult = card.ability.extra.steelenhc }
1970
end
1971
end,
1972
- add_to_deck = function(self, card, from_debuff) -- TODO: round
1973
- pseudorandom("Clockwork1") * 1
1974
- pseudorandom("Clockwork2") * 2
1975
- pseudorandom("Clockwork3") * 4
1976
- pseudorandom("Clockwork4") * 6
+ add_to_deck = function(self, card, from_debuff)
+ math.floor(pseudorandom("Clockwork1") * 1 + 0.5)
+ math.floor(pseudorandom("Clockwork2") * 2 + 0.5)
+ math.floor(pseudorandom("Clockwork3") * 4 + 0.5)
+ math.floor(pseudorandom("Clockwork4") * 6 + 0.5)
1977
1978
cry_credits = {
1979
idea = {
0 commit comments