diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-05-07 11:09:41 -0400 |
|---|---|---|
| committer | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-05-07 14:21:24 -0400 |
| commit | 5f197c53f47e19b860df7c92bd1971f2a73f1156 (patch) | |
| tree | b76c2bfa4c7845c4597cdd2748e26ce44aa00218 /data/battle | |
| parent | 8c51de1aba87743013feba24f8b0957b108be215 (diff) | |
Clean up some percentage values
Diffstat (limited to 'data/battle')
| -rw-r--r-- | data/battle/critical_hit_chances.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/data/battle/critical_hit_chances.asm b/data/battle/critical_hit_chances.asm index 0128f1a1e..bb1ce9ab4 100644 --- a/data/battle/critical_hit_chances.asm +++ b/data/battle/critical_hit_chances.asm @@ -1,8 +1,8 @@ CriticalHitChances: - db 7 percent ; 0 - db 12 percent + 2 ; +1 - db 25 percent + 1 ; +2 - db 33 percent + 1 ; +3 - db 50 percent + 1 ; +4 - db 50 percent + 1 ; +5 - db 50 percent + 1 ; +6 + db 1 out_of 15 ; 0 + db 1 out_of 8 ; +1 + db 1 out_of 4 ; +2 + db 1 out_of 3 ; +3 + db 1 out_of 2 ; +4 + db 1 out_of 2 ; +5 + db 1 out_of 2 ; +6 |
