Created
July 28, 2019 13:12
-
-
Save zer0tonin/cbfa48f09a29cae7a8935e22279ac9d0 to your computer and use it in GitHub Desktop.
pokemon stuff
This file contains hidden or 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
{ | |
"pikachu": { | |
"type": "electric", | |
"abilities": ["static", "lightning rod"] | |
}, | |
"eevee": { | |
"type": "normal", | |
"abilities": ["run away", "adaptability", "anticipation"] | |
}, | |
"grimer": { | |
"type": "poison", | |
"abilities": ["stench", "sticky hold", "poison touch"] | |
}, | |
"voltorb": { | |
"type": "electric", | |
"abilities": ["soundproof", "static", "aftermath"] | |
}, | |
"goomy": { | |
"type": "dragon", | |
"abilities": ["sap sipper", "hydratation", "gooey"] | |
}, | |
"clefairy": { | |
"type": "fairy", | |
"abilities": ["cute charm", "magic guard", "friend guard"] | |
}, | |
"nidorina": { | |
"type": "poison", | |
"abilities": ["poison point", "rivalry", "hustle"] | |
}, | |
"diglett": { | |
"type": "ground", | |
"abilities": ["sand veil", "arena trap", "sand force"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment