The PokéCommunity Forums  

Go Back   The PokéCommunity Forums > Fan Games > Binary ROM Hacking > Binary Hack Research & Development
Reload this Page Quick Research & Development Thread

Notices
For all updates, view the main page.

Binary Hack Research & Development Got a well-founded knack with your binary Pokémon hacks? Love reverse-engineering them? For the traditional Pokémon ROM hacker, this is the spot for polling and gathering your ideas, and then implementing them! Share your hypothesis, get ideas from others, and collaborate to create!

Ad Content
Reply
 
Thread Tools
  #1001   Link to this post, but load the entire thread.  
Old July 15th, 2017 (12:52 PM).
tkim's Avatar
tkim tkim is offline
 
Join Date: May 2011
Posts: 232
Quote:
Originally Posted by Sagiri View Post
Disable "The Pokemon Stopped Evolving." [FR]

FR has a feature that if you attempt to evolve a Pokemon into something not in the Kanto Dex (and you don't have the National Dex), it will mysteriously stop evolving. You could just give the player the National Dex at the beginning of the game, but if you don't want to do that, you can easily disable this.

Basically, this will turn some conditional jumps into unconditional jumps, and remove some checks. No free space required.

Spoiler:
Code:
.text
.align 2
.thumb
.thumb_func

@ trade item removal
.org 0x043156
b 0x04315E

@ all three
.org 0x0CE90A
b 0x0CE948

@ trade
.org 0x0CF566
b 0x0CF598

@ stone
.org 0x126C26
nop
nop
nop
nop

@ stone
.org 0x126C4C
b 0x126C60
Could you clarify, if I wanted to completely disable 'The Pokemon stopped evolving' due to not having the national dex, do I have to use all of the offsets provided, or just the '@ all three'?
Reply With Quote
  #1002   Link to this post, but load the entire thread.  
Old July 21st, 2017 (1:03 PM). Edited July 21st, 2017 by Sefuree.
Sefuree's Avatar
Sefuree Sefuree is offline
Canada Goose
 
Join Date: May 2014
Location: Canada
Age: 22
Gender: Male
Nature: Adamant
Posts: 3,183
After doing some research into the Emerald HP boxes, I've found a few useful offsets.
I haven't seen them documented anywhere else on the internet so I thought I'd share them here.

Player HP box - C1F1C8


Enemy HP box - C1F46C


The palette used for these two is located at C11B9C

I've also seen this palette in one of Jaizu's post where I found the other palette, C11BBC
It might be related to the other HP boxes I found below.
These could possibly be related to double battles. I haven't tested them so I'm not too sure.

C1F5E8

C1F76C

C1F8E8
__________________

:)
Reply With Quote
  #1003   Link to this post, but load the entire thread.  
Old July 28th, 2017 (7:48 AM).
Lunos's Avatar
Lunos Lunos is offline
Random Uruguayan User
 
Join Date: Oct 2008
Location: Montevideo (Uruguay)
Gender: Male
Nature: Lonely
Posts: 3,000
Quote:
Originally Posted by azurile13 View Post
-Snip-
Replaced "CHANGE THIS LINE" with 0x64 and tried again with 100 afterwards, but I always got the same error when trying to compile the routine.


This is how both tries looked like.
__________________
Reply With Quote
  #1004   Link to this post, but load the entire thread.  
Old August 2nd, 2017 (12:50 AM).
ShyGuy25 ShyGuy25 is offline
 
Join Date: Jun 2012
Gender: Male
Posts: 22
Anyone have the offsets for the Thick Club table?
Reply With Quote
  #1005   Link to this post, but load the entire thread.  
Old August 3rd, 2017 (4:55 PM).
tkim's Avatar
tkim tkim is offline
 
Join Date: May 2011
Posts: 232
FireRed:
If you ever opened a script from FireRed in XSE, you will quite often see these lines:
Code:
special 0x187
compare LASTRESULT 0x2
if 0x1 goto 0x81A7AE0
Most people think that that special is there as a safe switch or does nothing, but it's actually used for the flashbacks that occur when the player continues their save file. It's there to make sure the events play out properly in the flashback.
Reply With Quote
  #1006   Link to this post, but load the entire thread.  
Old August 6th, 2017 (10:37 AM).
tkim's Avatar
tkim tkim is offline
 
Join Date: May 2011
Posts: 232
Quote:
Originally Posted by Sagiri View Post
Pokemon Center Doesn't Count Eggs [FR]

When healing at a Pokemon Center, the healing machine will light up with the number of Pokemon in your party. Starting in DP, eggs don't count - if you have two Pokemon and an egg, in RSEFRLG, you get three lights, in DP, you get two.

To get this behavior in FR, just change:

Code:
0x08083B8E : 0xbd 0xf7 0x55 0xf8
to

Code:
0x08083B8E : 0x08 0xf0 0xd5 0xfa
Spoiler:
0x08083B8C is a function called as part of doanimation 0x19 (the healing machine). At 0x08083B8E, that function branch-links to call another function at 0x08083BD1, which itself counts the number of Pokemon in the party.

0x0808C13C is a built-in function to count Pokemon (and not eggs), so basically I just changed the target of the branch-link to this function.
Pokemon Center Doesn't Count Eggs [EM]

If you want this for Emerald, make the change at:

Code:
0x0B61A2 - B5 F7 CB F9

to
Code:
0x0B61A2 - 10 F0 31 FF
Reply With Quote
  #1007   Link to this post, but load the entire thread.  
Old August 9th, 2017 (12:16 PM). Edited August 14th, 2017 by AkameTheBulbasaur.
AkameTheBulbasaur's Avatar
AkameTheBulbasaur AkameTheBulbasaur is offline
Akame Marukawa of Iyotono
 
Join Date: May 2013
Location: A place :D
Age: 25
Gender: Male
Nature: Docile
Posts: 408
Environmental Moves In FireRed (with some Emerald Offsets)

Camoflouge

There is a table at 0x250888 (0x31C483 in Emerald). This table is what Camoflouge uses to determine the Type the user turns into. It has ten entries for ten different types of terrain.

This order is important, because all the environmental moves use this same order of terrain. The terrain bytes start at 0 and go through 9.

1. 0C = Grass Type used for short grass
2. 0C = Grass Type used for long grass
3. 04 = Ground Type used for sand
4. 0B = Water type used for Underwater
5. 0B = Water Type used for ponds
6. 0B = Water Type used for the sea
7. 05 = Rock Type used for craggy terrain
8. 05 = Rock Type used for caves
9. 00 = Normal Type used for indoors
10. 00 = Normal Type used for link battles

I tried expanding it but it didn't work. I didn't really focus all that much on expanding it though so it may be possible.

This table is useful for people who are using KarateKid's Battle Background hack to set specific backgrounds, as the terrain byte doesn't change just because the background does.

For people who are using that patch, you can make the terrain change with the background by using/modifying this routine:

Spoiler:

.text
.align 2
.thumb
.thumb_func

Main:
push {r0, r2}
ldr r0, =0x40F7 /*Check BG var*/
bl GetValue
ldrh r0, [r0]
cmp r0, #0x0
beq Normal
cmp r0, #0x1
beq Grass
.......
b Normal

This compares the value of var 0x40F7, which is what determines the battle background.If it's 0, it uses the default background. If anything else it uses that numbered entry in the table at 0xF10000. This is where you branch to the terrain you want. I only included one here as an example.

Grass:
ldr r1, =0x02022B50
mov r2, #0x0
strh r2, [r1]
b Normal

This sets the byte at 0x2022B50, which is the terrain byte, to the terrain desired. The number r2 is set to matches the entry in the Camouflage table. The idea is to set terrains that you won't use to a new type. For example, if you have a volcanic area, setting it to Fire Type.

Normal:
mov r1, r0
pop {r0, r2}
ldr r5, =0x08F0000B
bx r5

This just continues the Battle Background routine without setting a specific terrain. This is used for the default terrain when you don't set a specific background. This would really only be useful if you have more than one type of terrain (water and grass on the same map).

You should add a compare/branch if equal for each battle background you have in the table.


You would replace the pointer at 0xf00020 with the pointer to this new routine.

Secret Power

Secret Power is known for having different secondary effects depending on the terrain byte. This leads to the same problem with the Battle Background hack as with camouflage, where you can have Secret Power animations or effects that don't match terrain.

You can use the following Battle Script to edit the effects even if you don't have the Battle Background hack.

Spoiler:

//You may have to go back to the beginning
//And repoint the jumpifhalfwords
//Because for me it just rerouted to Main

#dynamic 0x180000
#freespacebyte 0xFF

#org @Main
jumpifhalfword 0x4 0x02022B50 0x0 @Grass
jumpifhalfword 0x4 0x02022B50 0x1 @Ghost
jumpifhalfword 0x4 0x02022B50 0x2 @Ground
jumpifhalfword 0x4 0x02022B50 0x3 @Fire
jumpifhalfword 0x4 0x02022B50 0x4 @Fairy
jumpifhalfword 0x4 0x02022B50 0x5 @Water
jumpifhalfword 0x4 0x02022B50 0x6 @Rock
jumpifhalfword 0x4 0x02022B50 0x7 @Dragon
jumpifhalfword 0x4 0x02022B50 0x8 @Steel
jumpifhalfword 0x4 0x02022B50 0x9 @Ice
goto 0x81D6900

This compares the terrain byte to each of the possible values. Feel free to change the branch names to the names/types you want.

#org @Grass
setbyte 0x2023E85 0x1
goto 0x81D6900

This is an example of a terrain effect. This sets the effect to "sleep", then goes to the normal damaging script.

#org @Fire
jumpiftype 0x0 0xA 0x81D6900
setbyte 0x2023E85 0x3
goto 0x81D6900

For this example, this sets the effect to "burn." If you want Fire Type Pokemon to be immune to burn from Secret Power, then put that "jumpiftype" command to the type you want to have immunity (A = Fire) and make it branch to the regular damaging script.

0x2023E85 is the byte that stores additional effects, like burn, poison, etc.


I'd do a version for Emerald, but I don't know where the RAM for the terrain is in Emerald yet. If you know where it is, tell me! Porting that script to Emerald is as easy as replacing all the offsets with their Emerald equivalents.

Secret Power's animation in FireRed (and also in Emerald) is basically just a compilation of pointers to other move's animations. The animation it uses once again depends on the terrain byte.

FireRed (at 0x1D4CBA)
Spoiler:

03 f1 bd 0b 08 05 00
21 00 00 00 13 c5 1c 08 @This is the offset to the animation used when terrain byte = 0
21 00 01 00 9d 12 1d 08
21 00 02 00 d1 a6 1c 08
21 00 03 00 f5 7a 1c 08
21 00 04 00 40 cb ac 08
21 00 05 00 01 fa 1c 08
21 00 06 00 ff 9a 1c 08
21 00 07 00 68 e0 1c 08
21 00 08 00 64 10 1d 08
13 3f e4 1c 08


Emerald (at 0x2D6FD0)
Spoiler:

03 25 7C 11 08 05 00
21 00 00 00 2F E9 2C 08
21 00 01 00 83 71 2D 08
21 00 02 00 0D 56 2D 08
21 00 03 00 21 B0 2C 08
21 00 04 00 CA 1D 2D 08
21 00 05 00 73 C1 2C 08
21 00 06 00 5F BF 2C 08
21 00 07 00 55 05 2D 08
21 00 08 00 62 98 2C 08
13 09 AF 2C 08


Nature Power

It was already posted somewhere here, but I'll just put the offset at the end so all the environmental moves are in the same place.

FireRed: 0x25081C
Emerald: 0x31C414

Editing the table is as easy as putting the index number of the move you want in the correct location in the table depending on the terrain you want it to go with.
__________________
"The human sacrificed himself, to save the Pokemon. I pitted them against each other, but not until they set aside their differences did I see the true power they all share deep inside. I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are." -Mewtwo
Reply With Quote
  #1008   Link to this post, but load the entire thread.  
Old August 9th, 2017 (7:28 PM).
AkameTheBulbasaur's Avatar
AkameTheBulbasaur AkameTheBulbasaur is offline
Akame Marukawa of Iyotono
 
Join Date: May 2013
Location: A place :D
Age: 25
Gender: Male
Nature: Docile
Posts: 408
RAM Offsets for Player's and Opponent's Pokemon

These contain information such as current HP and level for all six of your Pokemon, and all six of your opponent's Pokemon.

The RAM Offsets for FireRed are already documented (I'll put them here for convenience's sake).

Yours:
1st: 0x02024284
2nd: 0x020242E8
3rd: 0x0202434C
4th: 0x020243B0
5th: 0x02024414
6th: 0x02024478

Theirs:
1st: 0x0202402C
2nd: 0x02024090
3rd: 0x020240F4
4th: 0x02024158
5th: 0x020241BC
6th: 0x02024220

But I'm not sure if the ones for Emerald are documented but I couldn't find them, so here they are:

Yours:
1st: 0x020244EC
2nd: 0x02024550
3rd: 0x020245B4
4th: 0x02024618
5th: 0x0202467C
6th: 0x020246E0

Theirs:
1st: 0x02024744
2nd: 0x020247A8
3rd: 0x0202480C
4th: 0x02024870
5th: 0x020248D4
6th: 0x02024938
__________________
"The human sacrificed himself, to save the Pokemon. I pitted them against each other, but not until they set aside their differences did I see the true power they all share deep inside. I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are." -Mewtwo
Reply With Quote
  #1009   Link to this post, but load the entire thread.  
Old August 10th, 2017 (9:25 PM).
tkim's Avatar
tkim tkim is offline
 
Join Date: May 2011
Posts: 232
Does anybody know the var, flag, or special that activates swarming in Emerald?
Reply With Quote
  #1010   Link to this post, but load the entire thread.  
Old August 12th, 2017 (7:31 AM).
Lunos's Avatar
Lunos Lunos is offline
Random Uruguayan User
 
Join Date: Oct 2008
Location: Montevideo (Uruguay)
Gender: Male
Nature: Lonely
Posts: 3,000
Quote:
Originally Posted by tkim View Post
Does anybody know the var, flag, or special that activates swarming in Emerald?
I made the question somewhere and BluRose found this post.
__________________
Reply With Quote
  #1011   Link to this post, but load the entire thread.  
Old August 14th, 2017 (5:26 AM).
Bladecraft's Avatar
Bladecraft Bladecraft is offline
It's written "Bladecraft" on my forehead.
 
Join Date: Feb 2017
Gender: Male
Nature: Calm
Posts: 83
How to change the spawn location of the player after beating the Pokemon League in Emerald:

After some research I've found that the spawn location of the player after beating the Pokemon League is tied to the Flying position [04] tile (in map 1.1 or 1.3 in the coordinates 4/2).

It is possible to change the location of that tile (including the map it's in) in HxD, in the offset 59F53C.

Code:
01 01 04 00 02 00
are the bytes that will be there by default.

01 - map bank
01 - map number
04 - X
00 - X
02 - Y
00 - Y

Note that the rom reads the X's and Y's backwards. For example, if for any reason you'd want it to be in the X 125, you'd put in 05 12 in the X's spots.

If you can choose a gender in your game, you must also edit the female's Flying position [04] tile, which is in the offset 59F544.

Code:
01 03 04 00 02 00
these are the bytes there by default, if you see this you're in the right place.

__________________
Rule #0: Always Make a Backup




Reply With Quote
  #1012   Link to this post, but load the entire thread.  
Old August 14th, 2017 (9:22 AM).
Wobb's Avatar
Wobb Wobb is offline
Wynaut
 
Join Date: Dec 2012
Location: behind you
Gender: Male
Posts: 330
Secret Base Decoration Sprites (Emerald)
The sprites for the Secret Base decorations (The sprites you see when buying them at the Department Store) in Emerald start at 0x5A6C00. It ends at 0x5A6FAF with the Registeel Doll.
It looks like the decorations are in groups (like all the dolls are together) and there are a lot of 00s between them.
The first four bytes are the image pointer, and the next four are the palette. :)
__________________
Pokémon Cosmos

Pokemon Cosmos Discord Server: https://discord.gg/t9zBhaK

Find me on Discord or whatever. @Wobb#2777
Reply With Quote
  #1013   Link to this post, but load the entire thread.  
Old August 14th, 2017 (10:12 AM).
tkim's Avatar
tkim tkim is offline
 
Join Date: May 2011
Posts: 232
Quote:
Originally Posted by Bladecraft View Post
How to change the spawn location of the player after beating the Pokemon League in Emerald:

Spoiler:
After some research I've found that the spawn location of the player after beating the Pokemon League is tied to the Flying position [04] tile (in map 1.1 or 1.3 in the coordinates 4/2).

It is possible to change the location of that tile (including the map it's in) in HxD, in the offset 59F53C.

Code:
01 01 04 00 02 00
are the bytes that will be there by default.

01 - map bank
01 - map number
04 - X
00 - X
02 - Y
00 - Y

Note that the rom reads the X's and Y's backwards. For example, if for any reason you'd want it to be in the X 125, you'd put in 05 12 in the X's spots.

If you can choose a gender in your game, you must also edit the female's Flying position [04] tile, which is in the offset 59F544.

Code:
01 03 04 00 02 00
these are the bytes there by default, if you see this you're in the right place.

Thanks, I've been looking for that! 0x3EEBF8 is the offset for FireRed.
Default bytes:
Code:
03 00 06 00 08 00
Reply With Quote
  #1014   Link to this post, but load the entire thread.  
Old August 14th, 2017 (10:37 AM).
ghoulslash's Avatar
ghoulslash ghoulslash is offline
 
Join Date: Mar 2016
Gender: Male
Posts: 238
Add Thick Club boost for Alolan Marowak [FR]

The simplest method would be to give Alolan Marowak species ID 0x6A, then change 0x3F02E (0x90BE22 in MrDS's rombase with updated light ball check) from 01 to 02

Otherwise you'll have to hook a routine in this area to compare against another species ID.
Reply With Quote
  #1015   Link to this post, but load the entire thread.  
Old August 30th, 2017 (6:58 PM).
Enn's Avatar
Enn Enn is offline
 
Join Date: Jan 2017
Gender: Male
Posts: 185
Quote:
Originally Posted by Sagiri View Post
Class-based Poke Balls [FR]

In Sun and Moon, NPC trainers started using different types of Poke Balls. Specifically, it's tied to their trainer class - for example, Elite Four members and Ace Trainers keep their Pokemon in Ultra Balls. Prior to this, NPC trainers only ever used basic Poke Balls.

I ported this to Fire Red. The repo is here, and I've also added it as an attachment. The readme explains how to use it.
What if I expand pokeballs from DaniiS's method?
Reply With Quote
  #1016   Link to this post, but load the entire thread.  
Old August 30th, 2017 (10:40 PM).
BluRose BluRose is offline
blu rass
 
Join Date: Apr 2014
Location: michigan tech
Age: 22
Gender: Male
Nature: Timid
Posts: 812
Quote:
Originally Posted by Nisarg View Post
What if I expand pokeballs from DaniiS's method?
from the readme
"If you've added custom Poké Balls, you'll need to add definitions for them in src/balls.h. Note that these are not the same as their item numbers; vanilla Poké Balls have the same item and ball number, but custom Poké Balls won't unless you overwrite the item numbers after the vanilla Poké Balls."
__________________
heyo check out my github:

BluRosie
highlights:
battle engine for heartgold
various feature branches in heart gold (fairy type, odd egg, mud slopes)

i'm a big part of the development team of pokemon firegold! all the code that i develop for that hack is also on my github

also on discord: BluRose#0412
Reply With Quote
  #1017   Link to this post, but load the entire thread.  
Old September 9th, 2017 (9:49 AM). Edited September 12th, 2017 by FamiliaWerneck.
FamiliaWerneck's Avatar
FamiliaWerneck FamiliaWerneck is offline
 
Join Date: May 2015
Location: São Paulo, Brasil
Gender: Male
Posts: 275
Quote:
Originally Posted by mbcn10ww View Post


I'm using your routine but when I'm fishing when I catch the Pokémon my rod disappears, but it only happens at the Safari Zone. Do you know how to fix it?

EDIT: I think it's caused by your "deleteball" routine, because it removes the last item used from the Bag, but the Safari Balls isn't on the Bag and the reusable function isn't working on them.
I made a fix for that routine, and will test it on Monday.
I sent you the solution, if you don't mind testing it too.
I'll post it as soon as I confirm it's fixed.

EDIT:
Link to the post with the routine:
https://www.pokecommunity.com/showthread.php?p=8896448#post8896448
If anyone could help confirm that Safari won't be screwed with this new hack, it would be highly appreciated. =D
__________________
My Main Team:


Reply With Quote
  #1018   Link to this post, but load the entire thread.  
Old September 11th, 2017 (5:59 PM).
Panda Face's Avatar
Panda Face Panda Face is offline
Pokemon Ultra Snowy White
 
Join Date: Jan 2017
Gender: Female
Posts: 127
How to disable paralyze in Electricity type Pokemon in Emerald?
__________________

Pokemon Snowy White
Community Link: https://www.pokecommunity.com/showthread.php?p=9569056#post9569056
Download Link: https://pan.baidu.com/s/1eLFJ8KRm0hlB5bHshyin8w
Download Password:27q9
Reply With Quote
  #1019   Link to this post, but load the entire thread.  
Old September 11th, 2017 (6:10 PM).
Panda Face's Avatar
Panda Face Panda Face is offline
Pokemon Ultra Snowy White
 
Join Date: Jan 2017
Gender: Female
Posts: 127
Who does know all of the image, raw and palette offset?
__________________

Pokemon Snowy White
Community Link: https://www.pokecommunity.com/showthread.php?p=9569056#post9569056
Download Link: https://pan.baidu.com/s/1eLFJ8KRm0hlB5bHshyin8w
Download Password:27q9
Reply With Quote
  #1020   Link to this post, but load the entire thread.  
Old September 16th, 2017 (5:21 AM).
Panda Face's Avatar
Panda Face Panda Face is offline
Pokemon Ultra Snowy White
 
Join Date: Jan 2017
Gender: Female
Posts: 127
Quote:
Originally Posted by BluRose View Post
from the readme
"If you've added custom Poké Balls, you'll need to add definitions for them in src/balls.h. Note that these are not the same as their item numbers; vanilla Poké Balls have the same item and ball number, but custom Poké Balls won't unless you overwrite the item numbers after the vanilla Poké Balls."
How to change the weather abilities from infinity turns to 5 turns?
__________________

Pokemon Snowy White
Community Link: https://www.pokecommunity.com/showthread.php?p=9569056#post9569056
Download Link: https://pan.baidu.com/s/1eLFJ8KRm0hlB5bHshyin8w
Download Password:27q9
Reply With Quote
  #1021   Link to this post, but load the entire thread.  
Old September 17th, 2017 (3:14 AM).
mbcn10ww mbcn10ww is offline
 
Join Date: Oct 2016
Posts: 352
Quote:
Originally Posted by FamiliaWerneck View Post
I made a fix for that routine, and will test it on Monday.
I sent you the solution, if you don't mind testing it too.
I'll post it as soon as I confirm it's fixed.

EDIT:
Link to the post with the routine:
https://www.pokecommunity.com/showthread.php?p=8896448#post8896448
If anyone could help confirm that Safari won't be screwed with this new hack, it would be highly appreciated. =D
Good. I ended my ROM hacking cause I lost my flash drive with all my work.
Reply With Quote
  #1022   Link to this post, but load the entire thread.  
Old September 17th, 2017 (11:43 PM). Edited September 19th, 2017 by Artemis64.
Artemis64 Artemis64 is offline
 
Join Date: Mar 2014
Location: Singapore
Gender: Male
Nature: Hasty
Posts: 89
So you know the animations for end-of-turn events or animations that aren't exactly move animations (e.g. poisoned, sleeping, burn, Leech Seed absorb, Future Sight attack etc)? In Emerald, they're stored in a table at the end of the regular move animations table (so it starts at 2C92F8), which I have gone through and summarised as follows:
Spoiler:
Data below is formatted as (Animation description: Offset)
Tackle? (Tackle hit particle on opponent): 2DEF76
Poisoned (purple, shaking): 2D7D5A
Confusion: 2D7D85
Burn: 2D7D8E
Infatuation: 2D7DBE
Sleeping: 2D7DF3
Paralysis: 2D7E1F
Frozen: 2D7E39
Curse (Ghost type affliction): 2D7E54
Curse but with Lovely Kiss sprite?: 2D7E79
Transform (pixelate then change sprite): 2D7E9E
Regular damage (blink of sprite + regular effective SFX): 2D7ED4
Sky Attack? (user sprite fades to white then disappears, then reappears by sliding in from left): 2D7EDD
Substitute (user sprite disappears similar to Teleport, Substitute sprite drops in): 2D7F1A
Unknown (user sprite is replaced with a red-pink box?): 2D7F22
Knock Off item lost (item bag bounces away from opponent): 2D7F6A
Bind: 2D7F75
Using held item animation (user sprite tilts downwards, sparkles appear then circle expands out): 2D8108
Unknown (clouds appear on user, then user disappears): 2D817C
Focus Band survived with 1 HP animation: 2D8258
Raining animation: 2D82A5
Strong sunlight animation: 2D82EE
Sandstorm animation: 2D82F8
Hail animation: 2D82FD
Pound? (Tackle hit particle on opponent, Pound SFX): 2D830B
Unknown (Item bag bounces up from user sprite then drops down): 2D833C
Volt Tackle movement (user sprite shakes, opponent quickly slides right then reappears on user side of screen, slides left, then reappears in normal position): 2D8361
Future Sight (attack animation, after 2 turns): 2D83BF
Doom Desire attack animation: 2D841E
Bide? Endure? (Focus energy particles + user sprite turns red): 2D84E3
Leech Seed HP absorb animation: 2D8523
Wish healing animation? (screen darkens, sparkles appear around user and health regain animation plays, with Recover SFX): 2D8566
In-battle level up animation (health bar glows blue): 2D85E3
Return to Pokéball animation: 2D8604
Return to Pokéball animation: 2D8615
Throwing Pokéball animation: 2D8626
Unknown (replaces user sprite with Pokéball sprite, freezes game): 2D867A
Unknown (user sprite slides left then slides right back to original position): 2D8693
Substitute? (user sprite slides left and a Substitute sprite slides right into user original position): 2D869D

This could be helpful for anyone who wants to edit the status animations or include some of these animations as part of move animations; they can (mostly) be called with 0E XX XX XX 08.
Reply With Quote
  #1023   Link to this post, but load the entire thread.  
Old September 20th, 2017 (10:40 AM). Edited September 20th, 2017 by Megax Rocker.
Megax Rocker's Avatar
Megax Rocker Megax Rocker is offline
 
Join Date: Jan 2016
Posts: 112
Quote:
Originally Posted by Artemis64 View Post
So you know the animations for end-of-turn events or animations that aren't exactly move animations (e.g. poisoned, sleeping, burn, Leech Seed absorb, Future Sight attack etc)? In Emerald, they're stored in a table at the end of the regular move animations table (so it starts at 2C92F8), which I have gone through and summarised as follows:
Spoiler:
Data below is formatted as (Animation description: Offset)
Tackle? (Tackle hit particle on opponent): 2DEF76
Poisoned (purple, shaking): 2D7D5A
Confusion: 2D7D85
Burn: 2D7D8E
Infatuation: 2D7DBE
Sleeping: 2D7DF3
Paralysis: 2D7E1F
Frozen: 2D7E39
Curse (Ghost type affliction): 2D7E54
Curse but with Lovely Kiss sprite?: 2D7E79
Transform (pixelate then change sprite): 2D7E9E
Regular damage (blink of sprite + regular effective SFX): 2D7ED4
Sky Attack? (user sprite fades to white then disappears, then reappears by sliding in from left): 2D7EDD
Substitute (user sprite disappears similar to Teleport, Substitute sprite drops in): 2D7F1A
Unknown (user sprite is replaced with a red-pink box?): 2D7F22
Knock Off item lost (item bag bounces away from opponent): 2D7F6A
Bind: 2D7F75
Using held item animation (user sprite tilts downwards, sparkles appear then circle expands out): 2D8108
Unknown (clouds appear on user, then user disappears): 2D817C
Focus Band survived with 1 HP animation: 2D8258
Raining animation: 2D82A5
Strong sunlight animation: 2D82EE
Sandstorm animation: 2D82F8
Hail animation: 2D82FD
Pound? (Tackle hit particle on opponent, Pound SFX): 2D830B
Unknown (Item bag bounces up from user sprite then drops down): 2D833C
Volt Tackle movement (user sprite shakes, opponent quickly slides right then reappears on user side of screen, slides left, then reappears in normal position): 2D8361
Future Sight (attack animation, after 2 turns): 2D83BF
Doom Desire attack animation: 2D841E
Bide? Endure? (Focus energy particles + user sprite turns red): 2D84E3
Leech Seed HP absorb animation: 2D8523
Wish healing animation? (screen darkens, sparkles appear around user and health regain animation plays, with Recover SFX): 2D8566
In-battle level up animation (health bar glows blue): 2D85E3
Return to Pokéball animation: 2D8604
Return to Pokéball animation: 2D8615
Throwing Pokéball animation: 2D8626
Unknown (replaces user sprite with Pokéball sprite, freezes game): 2D867A
Unknown (user sprite slides left then slides right back to original position): 2D8693
Substitute? (user sprite slides left and a Substitute sprite slides right into user original position): 2D869D

This could be helpful for anyone who wants to edit the status animations or include some of these animations as part of move animations; they can (mostly) be called with 0E XX XX XX 08.
Hi there nice find, I was wondering if you stumbled upon more of those animations?

There's the return/frustration animation changes, ice Ball, solar beam and some others...
Reply With Quote
  #1024   Link to this post, but load the entire thread.  
Old September 28th, 2017 (8:47 AM).
Konekodemon's Avatar
Konekodemon Konekodemon is offline
The Master of Pokemon Breeding
 
Join Date: Mar 2007
Location: NC
Age: 38
Gender: Female
Nature: Gentle
Posts: 2,061
I have been wondering something. The 3DS has been out for awhile now. Has anyone figured out how to hack 3DS games yet?
__________________

Please check out my InuYasha fanfiction and tell me what you think.
Sign up for the Tokyo Crate and get tons of Japanese Snacks delivered straight to your door monthly, mostly Pokemon snacks: http://fbuy.me/mc6Yk
Reply With Quote
  #1025   Link to this post, but load the entire thread.  
Old October 10th, 2017 (7:38 AM). Edited October 13th, 2017 by Delta231.
Delta231's Avatar
Delta231 Delta231 is offline
A noob
 
Join Date: May 2016
Location: India
Gender: Male
Nature: Bold
Posts: 682
To match Generation 7th mechanism

Burn Damage Update [FR]
0x01856A - 00 09

Paralysis Speed Drop Update [FR]
0x014E60 - 40 08
0x014F40 - 7F 08
__________________
HGSS OWs in FR Style
Fire Red NSE Bookmarks


A supporter of


Reply With Quote
Reply

Quick Reply

Join the conversation!

Create an account to post a reply in this thread, participate in other discussions, and more!

Create a PokéCommunity Account
Ad Content
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 8:53 AM.