mirror of
https://github.com/thornAvery/jep-hack.git
synced 2026-02-08 00:55:28 +13:00
First Commit
Upload literally everything from the pokecrystal16 expand-move-ID branch
This commit is contained in:
commit
2f8a41f833
4618 changed files with 480386 additions and 0 deletions
22
data/wild/probabilities.asm
Normal file
22
data/wild/probabilities.asm
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
MACRO mon_prob
|
||||
; percent, index
|
||||
db \1, \2 * 3
|
||||
ENDM
|
||||
|
||||
GrassMonProbTable:
|
||||
table_width 2, GrassMonProbTable
|
||||
mon_prob 30, 0 ; 30% chance
|
||||
mon_prob 60, 1 ; 30% chance
|
||||
mon_prob 80, 2 ; 20% chance
|
||||
mon_prob 90, 3 ; 10% chance
|
||||
mon_prob 95, 4 ; 5% chance
|
||||
mon_prob 99, 5 ; 4% chance
|
||||
mon_prob 100, 6 ; 1% chance
|
||||
assert_table_length NUM_GRASSMON
|
||||
|
||||
WaterMonProbTable:
|
||||
table_width 2, WaterMonProbTable
|
||||
mon_prob 60, 0 ; 60% chance
|
||||
mon_prob 90, 1 ; 30% chance
|
||||
mon_prob 100, 2 ; 10% chance
|
||||
assert_table_length NUM_WATERMON
|
||||
Loading…
Add table
Add a link
Reference in a new issue