How would I create a custom pokedex and implement custom pokemon? #238
NathanTBeene
started this conversation in
General
Replies: 1 comment 4 replies
-
You would need to replace https://github.com/wavebeem/pkmn.help/blob/master/public/data-pkmn.json {
"name": "venusaur-mega",
"speciesNames": {
"ja-Hrkt": "フシギバナ",
"roomaji": "Fushigibana",
"ko": "이상해꽃",
"zh-Hant": "妙蛙花",
"fr": "Florizarre",
"de": "Bisaflor",
"es": "Venusaur",
"it": "Venusaur",
"en": "Venusaur",
"ja": "フシギバナ",
"zh-Hans": "妙蛙花"
},
"formNames": {
"ja-Hrkt": "メガフシギバナ",
"ko": "메가이상해꽃",
"zh-Hant": "超級妙蛙花",
"fr": "Méga-Florizarre",
"de": "Mega-Form",
"es": "Mega-Venusaur",
"it": "MegaVenusaur",
"en": "Mega Venusaur",
"ja": "メガフシギバナ",
"zh-Hans": "超级妙蛙花"
},
"number": 3,
"hp": 80,
"attack": 100,
"defense": 123,
"spAttack": 122,
"spDefense": 120,
"speed": 80,
"id": "10033",
"types": ["grass", "poison"],
"imageType": "sprite",
"hasShiny": true
} This is the format for an entry |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to create a new regional dex that will only show the pokemon I plan to implement in my game. Also, how would I go about adding a custom pokemon to the pokedex if that is possible?
Beta Was this translation helpful? Give feedback.
All reactions