Skip to content

Instantly share code, notes, and snippets.

@teamdandelion
Created May 16, 2013 07:56
Show Gist options
  • Save teamdandelion/5590134 to your computer and use it in GitHub Desktop.
Save teamdandelion/5590134 to your computer and use it in GitHub Desktop.
A mockup xml for a pokemon project
<pokemon>
<name>Bulbasaur</name>
<id>001</id>
<catchRate>45</catchRate>
<baseExp>64</baseExp>
<genderRatio>.875</genderRatio>
<experienceGroup>mediumSlow</experienceGroup>
<moves>
<move>
<moveName>Tackle</moveName>
<moveLevel>0</moveLevel>
</move>
...
</moves>
<types>
<type>Grass</type>
<type>Poison</type>
</types>
<baseStats>
<statVal stat="HP" val="45"/>
<statVal stat="ATTACK" val="49"/>
...
</baseStats>
<generation>1</generation>
<evolutions>
<evolution>
<type>levelEvolution</type>
<id>002</id>
<levelCondition>16</levelCondition>
</evolutions>
</pokemon>
<pokemon>
<name>Eevee</name>
...
<evolutions>
<evolution>
<type>stoneEvolution</type>
<id>134</id>
<stoneRequired>WATER_STONE</stoneRequired>
</evolution>
...
<evolution>
<type>friendshipEvolution</type>
<id>196</id>
<friendshipRequired>...</friendshipRequired>
</evolution>
...
</evolutions>
</pokemon>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment