- 79
- Posts
- 9
- Years
- Seen Jan 12, 2024
So, in Pokebattle_Move, under def pbIsCritical?
I'm assuming the 16,8,2,1 means the crit stages are 1/16, 1/8, 1/2 and 100%, however, I want the first stage to be a 0% chance (This means that non crit moves like tackle will never crit unless things like Focus Energy or Scope lens are used). How would I go about doing this? I don't want to break the universe by dividing by 0
Thanks!
Code:
ratios=(USENEWBATTLEMECHANICS) ? [16,8,2,1,1] : [16,8,4,3,2]
Thanks!