mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-01-23 09:16:20 -08:00
Use -1 for terminating happiness probability data
This commit is contained in:
parent
187b120007
commit
753ed7186c
@ -1,12 +1,12 @@
|
|||||||
HappinessData_OlderHaircutBrother:
|
HappinessData_OlderHaircutBrother:
|
||||||
db 30 percent, 2, HAPPINESS_OLDERCUT1 ; 30% chance
|
db 30 percent, 2, HAPPINESS_OLDERCUT1 ; 30% chance
|
||||||
db 50 percent + 1, 3, HAPPINESS_OLDERCUT2 ; 50% chance
|
db 50 percent + 1, 3, HAPPINESS_OLDERCUT2 ; 50% chance
|
||||||
db 100 percent, 4, HAPPINESS_OLDERCUT3 ; 20% chance
|
db -1, 4, HAPPINESS_OLDERCUT3 ; 20% chance
|
||||||
|
|
||||||
HappinessData_YoungerHaircutBrother:
|
HappinessData_YoungerHaircutBrother:
|
||||||
db 60 percent + 1, 2, HAPPINESS_YOUNGCUT1 ; 60% chance
|
db 60 percent + 1, 2, HAPPINESS_YOUNGCUT1 ; 60% chance
|
||||||
db 30 percent, 3, HAPPINESS_YOUNGCUT2 ; 30% chance
|
db 30 percent, 3, HAPPINESS_YOUNGCUT2 ; 30% chance
|
||||||
db 100 percent, 4, HAPPINESS_YOUNGCUT3 ; 10% chance
|
db -1, 4, HAPPINESS_YOUNGCUT3 ; 10% chance
|
||||||
|
|
||||||
HappinessData_DaisysGrooming:
|
HappinessData_DaisysGrooming:
|
||||||
db 100 percent, 2, HAPPINESS_GROOMING ; 99.6% chance
|
db -1, 2, HAPPINESS_GROOMING ; 99.6% chance
|
||||||
|
@ -1990,9 +1990,9 @@ CopyPokemonName_Buffer1_Buffer3:
|
|||||||
|
|
||||||
```diff
|
```diff
|
||||||
HappinessData_DaisysGrooming:
|
HappinessData_DaisysGrooming:
|
||||||
- db 100 percent, 2, HAPPINESS_GROOMING ; 99.6% chance
|
- db -1, 2, HAPPINESS_GROOMING ; 99.6% chance
|
||||||
+ db 50 percent + 1, 2, HAPPINESS_GROOMING ; 50% chance
|
+ db 50 percent, 2, HAPPINESS_GROOMING ; 50% chance
|
||||||
+ db 100 percent, 2, HAPPINESS_GROOMING ; 50% chance
|
+ db -1, 2, HAPPINESS_GROOMING ; 50% chance
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user