Skip to content

Instantly share code, notes, and snippets.

@agarie
Created May 3, 2012 13:29
Show Gist options
  • Save agarie/2585600 to your computer and use it in GitHub Desktop.
Save agarie/2585600 to your computer and use it in GitHub Desktop.
All the natures from the Pokémon series, with the corresponding increasing/decreasing stats names.
{
hardy: {
increase: "none",
decrease: "none"
},
docile: {
increase: "none",
decrease: "none"
},
serious: {
increase: "none",
decrease: "none"
},
bashful: {
increase: "none",
decrease: "none"
},
quirky: {
increase: "none",
decrease: "none"
},
lonely: {
increase: "atk",
decrease: "def"
},
adamant: {
increase: "atk",
decrease: "spatk"
},
naughty: {
increase: "atk",
decrease: "spdef"
},
brave: {
increase: "atk",
decrease: "spd"
},
bold: {
increase: "def",
decrease: "atk"
},
impish: {
increase: "def",
decrease: "spatk"
},
lax: {
increase: "def",
decrease: "spdef"
},
relaxed: {
increase: "def",
decrease: "spd"
},
timid: {
increase: "spd",
decrease: "atk"
},
hasty {
increase: "spd",
decrease: "def"
},
jolly {
increase: "spd",
decrease: "spatk"
},
naive: {
increase: "spd",
decrease: "spdef"
},
modest: {
increase: "spatk",
decrease: "atk"
},
mild: {
increase: "spatk",
decrease: "def"
},
rash: {
increase: "spatk",
decrease: "spdef"
},
quiet: {
increase: "spatk",
decrease: "spd"
},
calm: {
increase: "spdef",
decrease: "atk"
},
gentle: {
increase: "spdef",
decrease: "def"
},
careful: {
increase: "spdef",
decrease: "spatk"
},
sassy: {
increase: "spdef",
decrease: "spd"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment