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/events | |
| parent | 8c51de1aba87743013feba24f8b0957b108be215 (diff) | |
Clean up some percentage values
Diffstat (limited to 'data/events')
| -rw-r--r-- | data/events/happiness_probabilities.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/data/events/happiness_probabilities.asm b/data/events/happiness_probabilities.asm index fe4392aa6..f67db07f3 100644 --- a/data/events/happiness_probabilities.asm +++ b/data/events/happiness_probabilities.asm @@ -1,12 +1,12 @@ HappinessData_OlderHaircutBrother: - db $4c, 2, HAPPINESS_OLDERCUT1 ; 30% chance - db $80, 3, HAPPINESS_OLDERCUT2 ; 50% chance - db $ff, 4, HAPPINESS_OLDERCUT3 ; 20% chance + db 30 percent, 2, HAPPINESS_OLDERCUT1 ; 30% chance + db 50 percent + 1, 3, HAPPINESS_OLDERCUT2 ; 50% chance + db 100 percent, 4, HAPPINESS_OLDERCUT3 ; 20% chance HappinessData_YoungerHaircutBrother: - db $9a, 2, HAPPINESS_YOUNGCUT1 ; 60% chance - db $4c, 3, HAPPINESS_YOUNGCUT2 ; 30% chance - db $ff, 4, HAPPINESS_YOUNGCUT3 ; 10% chance + db 60 percent + 1, 2, HAPPINESS_YOUNGCUT1 ; 60% chance + db 30 percent, 3, HAPPINESS_YOUNGCUT2 ; 30% chance + db 100 percent, 4, HAPPINESS_YOUNGCUT3 ; 10% chance HappinessData_DaisysGrooming: - db $ff, 2, HAPPINESS_GROOMING ; 99.6% chance + db 100 percent, 2, HAPPINESS_GROOMING ; 99.6% chance |
