So, the idea is to modify the way editions and Baseball Card bonuses work by making it customizable with a custom function through the API.
Maybe something like
enhancement_function = function(card)
-- some logic here
return {chips = 50, x_chips=1.5, mult= 10, x_mult=1.5, dollars=3} -- this adds all these bonuses to "card"
end
So, the idea is to modify the way editions and Baseball Card bonuses work by making it customizable with a custom function through the API.
Maybe something like