You are not logged in.
Pages: 1
Do everyone know how to change the palette color of the pokemon GSC without change the original picture of the pokemon ?
Offline
GS: 0xad45, C: 0xad86 - table of palettes for 251 pokemon. Every pokemon has 8 bytes of data, for 2 colors in normal and shiny mode.
Offline
what program i need to use to change the palette color ?
Offline
a hex editor
You can try to hide yourself in this world of pretend; when the paper's crumpled up, it can't be perfect again.
Offline
i still don,t understand....
Can you explain how to to do it ?
Offline
a color is defined by values of red, green and blue.
each color is two bytes long. with 8 bits in a byte, we can only fit the three of them into 16 bits.
the nearest number divisible by 3 is 15, so we just ignore the last bit and use 5 bits for each one.
the max value for 5 bits is 32 (2^5). usually you will find rgb definitions in values out of 256 (2^8). you can just divide by 8 (2^3) to get it in 5 bits.
the color order goes from low to high, so you'd have:
0 bbbbb ggggg rrrrr
or
0bbbbbgg gggrrrrr
since the game boy reads palettes in little endian (low byte first), swap the bytes if you are editing the rom in a hex editor.
pokemon palettes only have two colors, since black and white are always used. the shiny palette comes right after the normal one. this goes on for each pokemon.
trainer palettes work the same way. they're right after the pokemon palettes in gold (0xb51d), and at 0xb0d2 in crystal.
also for crystal, pokemon palettes are at 0xa8d6, not 0xad86.
Offline
also for crystal, pokemon palettes are at 0xa8d6, not 0xad86.
Oh, my typo, good you've pointed that out.
Offline
i,m still not understand about hex editing because im beginner at it...
Can you give me step by step how to do it ?
Offline
I recommend you look at jwibagi's FAQ thread for help with hex editing.
Last edited by Munchulax (2013-03-06 23:51:59)
“To live is the rarest thing in the world. Most people exist, that is all.” ― Oscar Wilde
Offline
Okay...
But,Can you give me an example how you change the palette color and this time explain step by step because i still confused about hex editing
Offline
what program i need to use to change the palette color ?
PaletteED GB. And I recommend the Color Mixer from FroggestSpirit. I thought that Sawakita has also made one.
Hacks Gameboy 8-bit music in Pokémon Gen I & II, composes 8-bit music in LSDJ and FamiTracker.
“God created the Earth, but the Dutch created the Netherlands.”
Offline
I hope it help u
http://dc693.4shared.com/download/tuirH … 8-223062d3
u shouldn't judge people by their appereance (or) by ur own preconception
-Uchiha Itachi
Offline
Pages: 1