You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Remove mom saving/spending coins (#1); add coins gained from a trainer battle to wCurLevelCoins (#30)
This commit is contained in:
@@ -11,9 +11,6 @@
|
||||
const ENGINE_DAY_CARE_MAN_HAS_MON
|
||||
; wDayCareLady
|
||||
const ENGINE_DAY_CARE_LADY_HAS_MON
|
||||
; wMomSavingCoins
|
||||
const ENGINE_MOM_SAVING_COINS
|
||||
const ENGINE_MOM_ACTIVE
|
||||
; wStatusFlags
|
||||
const ENGINE_POKEDEX
|
||||
const ENGINE_UNOWN_DEX
|
||||
|
@@ -36,7 +36,6 @@ DEF MAX_DAYS EQU 36 * 7 ; 252
|
||||
|
||||
; significant coins values
|
||||
DEF START_COINS EQU 100
|
||||
DEF MOM_COINS EQU 2300
|
||||
DEF MAX_COINS EQU 999999
|
||||
DEF MAX_LEVEL_COINS EQU 99999
|
||||
DEF MAX_DELTA_COINS_DIGITS EQU 5
|
||||
|
@@ -15,7 +15,6 @@ DEF STRING_BUFFER_LENGTH EQU 19
|
||||
const_def
|
||||
const YOUR_COINS ; 0
|
||||
const CUR_LEVEL_COINS ; 1
|
||||
const MOMS_COINS ; 2
|
||||
|
||||
; checkcoins/checkchips return values
|
||||
const_def
|
||||
|
@@ -218,14 +218,6 @@ DEF SCRIPT_RUNNING EQU 2
|
||||
const STATUSFLAGS2_REACHED_GOLDENROD_F ; 6
|
||||
const STATUSFLAGS2_ROCKETS_IN_MAHOGANY_F ; 7
|
||||
|
||||
; wMomSavingCoins::
|
||||
DEF MOM_SAVING_SOME_COINS_F EQU 0
|
||||
DEF MOM_SAVING_HALF_COINS_F EQU 1
|
||||
DEF MOM_SAVING_ALL_COINS_F EQU 2
|
||||
DEF MOM_ACTIVE_F EQU 7
|
||||
|
||||
DEF MOM_SAVING_COINS_MASK EQU (1 << MOM_SAVING_SOME_COINS_F) | (1 << MOM_SAVING_HALF_COINS_F) | (1 << MOM_SAVING_ALL_COINS_F)
|
||||
|
||||
; wJohtoBadges::
|
||||
const_def
|
||||
const ZEPHYRBADGE
|
||||
|
Reference in New Issue
Block a user