Created
October 15, 2013 04:12
-
-
Save eevee/6986361 to your computer and use it in GitHub Desktop.
Figuring out a new document-like Pokédex schema from scratch.
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
bulbasaur: | |
red-blue: | |
level: | |
- 1: tackle | |
- 1: growl | |
- 7: leech-seed | |
machine: | |
- substitute | |
- swords-dance | |
- cute |
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
- id: bulbasaur | |
introduced-in: generation-i | |
types: [grass, poison] | |
stats: | |
hp: 45 | |
attack: 49 | |
defense: 49 | |
special-attack: 65 | |
special-defense: 65 | |
speed: 45 | |
effort-yield: | |
special-attack: 1 | |
exp-yield: 64 | |
growth-rate: medium-slow | |
abilities: | |
1: overgrow | |
hidden: chlorophyll | |
evolution: | |
from: bulbasaur | |
trigger: level | |
minimum-level: 16 | |
egg-groups: [ground] |
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
- how does this format interact with side games? | |
- where do names and flavor text go: inline in this file, or in separate files? should there be a separate file per language? | |
- once and for all, WHAT ABOUT FORMS? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment