mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-08 16:45:28 +13:00
Clean up some data, using macros for multiline list entries
This commit is contained in:
parent
aa97e196dd
commit
f37cf959c9
298 changed files with 5274 additions and 5646 deletions
|
|
@ -3,13 +3,13 @@ WildMonEncounterSlotChances:
|
|||
; those 10 slots is. A random number is generated and then the first byte of each pair in this
|
||||
; table is compared against that random number. If the random number is less than or equal
|
||||
; to the first byte, then that slot is chosen. The second byte is double the slot number.
|
||||
db $32, $00 ; 51/256 = 19.9% chance of slot 0
|
||||
db $65, $02 ; 51/256 = 19.9% chance of slot 1
|
||||
db $8C, $04 ; 39/256 = 15.2% chance of slot 2
|
||||
db $A5, $06 ; 25/256 = 9.8% chance of slot 3
|
||||
db $BE, $08 ; 25/256 = 9.8% chance of slot 4
|
||||
db $D7, $0A ; 25/256 = 9.8% chance of slot 5
|
||||
db $E4, $0C ; 13/256 = 5.1% chance of slot 6
|
||||
db $F1, $0E ; 13/256 = 5.1% chance of slot 7
|
||||
db $FC, $10 ; 11/256 = 4.3% chance of slot 8
|
||||
db $FF, $12 ; 3/256 = 1.2% chance of slot 9
|
||||
db 50, $00 ; 51/256 = 19.9% chance of slot 0
|
||||
db 101, $02 ; 51/256 = 19.9% chance of slot 1
|
||||
db 140, $04 ; 39/256 = 15.2% chance of slot 2
|
||||
db 165, $06 ; 25/256 = 9.8% chance of slot 3
|
||||
db 190, $08 ; 25/256 = 9.8% chance of slot 4
|
||||
db 215, $0A ; 25/256 = 9.8% chance of slot 5
|
||||
db 228, $0C ; 13/256 = 5.1% chance of slot 6
|
||||
db 241, $0E ; 13/256 = 5.1% chance of slot 7
|
||||
db 252, $10 ; 11/256 = 4.3% chance of slot 8
|
||||
db 255, $12 ; 3/256 = 1.2% chance of slot 9
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue