Talk:Pokémon species data structure (Generation III): Difference between revisions

From Bulbapedia, the community-driven Pokémon encyclopedia.
Jump to navigationJump to search
No edit summary
 
(7 intermediate revisions by 5 users not shown)
Line 40: Line 40:


410 (Deoxsys)
410 (Deoxsys)
Also, I have made HexWorkshop bookmark and structures allowing to view the data if anyone cares.
=="Twigpi"==
Two points here:
# I haven't found out why the color byte contains extra info. The article says something about a '''MSB bit'''. What is an MSB bit?
:* The MSB is the {{wp|most significant bit}} - the bit with the highest place value. For example, in the byte "10011101", which represents the number 157, the most significant bit is the leftmost 1. [[User:Ztobor|Ztobor]] 01:41, 13 February 2010 (UTC)
# The information in this article was '''''extremely''''' useful (except for the ROM offsets). Thanks you so much. Using it, I was able to extract all the base stats info directly from Pokémon Leaf Green (English). (It was out of order at the end in the game storage - this must have something to do with extra evolutions not working until Pokédex upgrade. What a bugger.)
[[User:Twigpi|Twigpi]] 18:28, 26 October 2007 (UTC)
==Placeholder?==
I'm looking inside a Pokémon Emerald ROM right now, and where the Pokémon's base stats, etc. are, there are a bunch of placeholders between the Ndex and Hdex Pokémon with the following information:
Base stats:
HP, Defense, Special Defense are all 50
<br>Attack, Speed, and Special attack are all 150
<br>Pure Normal type (0, 0)
<br>Catch rate: 3
<br>Exp. yield: 1 (So a Level 7 Placeholder would give only 1 experience point)
<br>Effort yield: 2 in each of Special Defense, Special Attack, Attack, and HP, 0 in the others
<br>No items held
<br>Genderless, 120 egg cycles, Base Happiness of 0, 1,000,000 EXP. at Level 100
<br>Dragon egg-group type (unless "0f" actually means "no egg group" and the 03. entry in the egg groups was skipped unintentionally)
<br>No abilities
<br>No Safari Zone presence
<br>Colour 4
Mind telling me a bit about what this is? [[User:Ztobor|Ztobor]] 01:41, 13 February 2010 (UTC)
== Consistent, but confusing. ==
I've noticed in this and several other related articles, there's the convention that 2-byte structures are called words, while 4-byte structures are called dwords (double-words). This is kept consistent throughout Bulbapedia (as much as I can tell, anyway), however, it's not really correct. The hardware is 32-bit. A word should be 32-bits, and the 16-bit numbers should be hwords (half-words).
As long as it's consistent, it's not that big a deal, but for people who are using this as for documentation for hex editing or ASM, it'll probably throw them off.--[[User:Goukazaru|Gou]] ([[User talk:Goukazaru|talk]]) 18:47, 18 December 2014 (UTC)
:I'd agree with the sentiment, but I also don't quite care enough to change it myself... "Word" (and hword or any other such) are inherently rather ambiguous anyway; it'd honestly be best if there were an unambiguous term to replace them with. But still, if you want, you can go ahead. (Just try to touch all the data structures pages.)
:The one thing I'd definitely say, though, is, if "(h/d)word" is anywhere in "prose" (that is, not in a table or something), that should definitely be changed to an unambiguous description (like X bytes). [[User:Tiddlywinks|Tiddlywinks]] ([[User talk:Tiddlywinks|talk]]) 19:33, 18 December 2014 (UTC)

Revision as of 19:33, 18 December 2014

I noticed that the Color byte sometimes contains an extra bit of data...

Just wondered if anyone knew anything more about them?


Pokemon which feature it (National/GBA Index numbers)

60 (Polywag)

99 (Kingler)

125 (Electabuzz)

159 (Croconaw)

174 (Igglybuff)

186 (Politoed)

201 (Unown)

215 (Sneasel)

216 (Teddiursa)

239 (Elekid)


by GBA-game index numbers:

308 (Spinda)

363 (Roselia)

376 (Absol)

379 (Seviper)

380 (Zangoose)

410 (Deoxsys)

Also, I have made HexWorkshop bookmark and structures allowing to view the data if anyone cares.

"Twigpi"

Two points here:

  1. I haven't found out why the color byte contains extra info. The article says something about a MSB bit. What is an MSB bit?
  • The MSB is the most significant bit - the bit with the highest place value. For example, in the byte "10011101", which represents the number 157, the most significant bit is the leftmost 1. Ztobor 01:41, 13 February 2010 (UTC)
  1. The information in this article was extremely useful (except for the ROM offsets). Thanks you so much. Using it, I was able to extract all the base stats info directly from Pokémon Leaf Green (English). (It was out of order at the end in the game storage - this must have something to do with extra evolutions not working until Pokédex upgrade. What a bugger.)

Twigpi 18:28, 26 October 2007 (UTC)


Placeholder?

I'm looking inside a Pokémon Emerald ROM right now, and where the Pokémon's base stats, etc. are, there are a bunch of placeholders between the Ndex and Hdex Pokémon with the following information:

Base stats:

HP, Defense, Special Defense are all 50
Attack, Speed, and Special attack are all 150
Pure Normal type (0, 0)
Catch rate: 3
Exp. yield: 1 (So a Level 7 Placeholder would give only 1 experience point)
Effort yield: 2 in each of Special Defense, Special Attack, Attack, and HP, 0 in the others
No items held
Genderless, 120 egg cycles, Base Happiness of 0, 1,000,000 EXP. at Level 100
Dragon egg-group type (unless "0f" actually means "no egg group" and the 03. entry in the egg groups was skipped unintentionally)
No abilities
No Safari Zone presence
Colour 4

Mind telling me a bit about what this is? Ztobor 01:41, 13 February 2010 (UTC)

Consistent, but confusing.

I've noticed in this and several other related articles, there's the convention that 2-byte structures are called words, while 4-byte structures are called dwords (double-words). This is kept consistent throughout Bulbapedia (as much as I can tell, anyway), however, it's not really correct. The hardware is 32-bit. A word should be 32-bits, and the 16-bit numbers should be hwords (half-words).

As long as it's consistent, it's not that big a deal, but for people who are using this as for documentation for hex editing or ASM, it'll probably throw them off.--Gou (talk) 18:47, 18 December 2014 (UTC)

I'd agree with the sentiment, but I also don't quite care enough to change it myself... "Word" (and hword or any other such) are inherently rather ambiguous anyway; it'd honestly be best if there were an unambiguous term to replace them with. But still, if you want, you can go ahead. (Just try to touch all the data structures pages.)
The one thing I'd definitely say, though, is, if "(h/d)word" is anywhere in "prose" (that is, not in a table or something), that should definitely be changed to an unambiguous description (like X bytes). Tiddlywinks (talk) 19:33, 18 December 2014 (UTC)