-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nerf Kenchukuo, disable Contest Moves
- Loading branch information
Showing
5 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.expfunc @get_evolution_offset(_species, _n), (0x8203b68 + 8 * ((_species * 5) + _n)) | ||
|
||
.macro @set_evolution_method, _species, _n, _method | ||
.org @get_evolution_offset(_species, _n) | ||
.halfword _method | ||
.endmacro | ||
|
||
.macro @set_evolution_param, _species, _n, _param | ||
.org @get_evolution_offset(_species, _n) + 2 | ||
.halfword _param | ||
.endmacro | ||
|
||
.macro @set_evolution_target, _species, _n, _target | ||
.org @get_evolution_offset(_species, _n) + 4 | ||
.halfword _target | ||
.endmacro | ||
|
||
.if EVOLUTION_CHANGES | ||
|
||
@set_evolution_param SPECIES_KOFFING, 0, 24 | ||
@set_evolution_param SPECIES_BALTOY, 0, 24 | ||
|
||
.endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
0x081fec18 | ||
|
||
.expfunc @get_stat_offset(_species), (0x081fec18 + _species * 28) | ||
|
||
.macro @set_pokestat_hp, _species, _hp | ||
.org @get_stat_offset(_species) | ||
.byte _hp | ||
|
||
.macro @set_pokestat_atk, _species, _atk | ||
.org @get_stat_offset(_species) + 1 | ||
.byte _atk | ||
|
||
.macro @set_pokestat_def, _species, _def | ||
.org @get_stat_offset(_species) + 2 | ||
.byte _def | ||
|
||
.macro @set_pokestat_spd, _species, _spd | ||
.org @get_stat_offset(_species) + 3 | ||
.byte _spd | ||
|
||
.macro @set_pokestat_spatk, _species, _spdef | ||
.org @get_stat_offset(_species) + 4 | ||
.byte _spdef | ||
|
||
.macro @set_pokestat_spdef, _species, _spatk | ||
.org @get_stat_offset(_species) + 5 | ||
.byte _spatk | ||
|
||
@set_pokestat_hp SPECIES_KENCHUKUO, 85 | ||
@set_pokestat_atk SPECIES_KENCHUKUO, 120 | ||
@set_pokestat_def SPECIES_KENCHUKUO, 85 | ||
@set_pokestat_spatk SPECIES_KENCHUKUO, 85 | ||
@set_pokestat_spdef SPECIES_KENCHUKUO, 85 | ||
@set_pokestat_spd SPECIES_KENCHUKUO, 100 |