Coder Social home page Coder Social logo

pokemon-data.json's Introduction

Hi there 👋

A SDE working at Brillio. Creating new and creative solutions to problems.

  • 🔭 I’m currently working on a Godot game.
  • 🌱 I’m currently learning Godot.

How to reach me 📫

Top Langs

⬇️ Scroll down to see my top repositories ⬇️
Show some ❤️ by starring some of the repositories!

pokemon-data.json's People

Contributors

codacy-badger avatar hostedposted avatar iamcorgii avatar imgbotapp avatar jacobggman avatar karim-adnan avatar kenta-miyamura avatar purukitto avatar sjellen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

pokemon-data.json's Issues

Empty next evolution

id 891 and 892 both have a “next” element within “evolution” however they are empty

Change structure of evolution changes

Description

Change the evolution structure in pokedex.json so that it is easier for evolution chaining

The required structure:

  • In case of un-chained evolutions:

From:

"evolution": {
    "next": {
        "id": "3",
        "req": "Level 32"
    },
    "prev": {
        "id": "1",
        "req": "Level 16"
    }
}

To:

"evolution": {
    "next": [3, "Level 32"],
    "prev": [1, "Level 16"]
}
  • In case of chained evolutions:

From:

"evolution": {
    "next": {
        "id": "45",
        "req": "use Leaf Stone"
    },
    "next2": {
        "id": "182",
        "req": "use Sun Stone"
    },
    "prev": {
        "id": "43",
        "req": "Level 21"
    }
}

To:

"evolution": {
    "next": [
        [45, "use Leaf Stone"][182, "use Sun Stone"]
    ],
    "prev": [43, "Level 21"]
}

Tasks :

  • To change the structure of evolution

Please mention this issue in your PR (#9) and add the above to-do in the PR as well

Comment below if you would like to claim this issue, please do not start working on the issue unless assigned to you explicitly

The [japanese] key in pokedex.json is misspelled.

To whom this may concern,

id: 810 (Line is 42784)or later is misspelled.
ok: japanese
ng: japanease

I don't understand project rules, Without making a pull request so I will report it as an issue.

Thanks.

Add French name in /Items.json

Description

Add jname (Japanese name), cname (Chinese name (simplified)) and fname(Frech name) to items.json to make it consistent with the rest of the database.

The required structure:

From:

{
    "id": 1,
    "ename": "Master Ball",
    "type": "Pokeballs",
    "description": "The best Ball with the ultimate level of performance. It will catch any wild Pokémon without fail."
}

To:

{
    "id": 1,
    "name": {
        "english": "Master Ball",
        "japanese": "マスターボール",
        "chinese": "大师球",
        "french": "Master Ball"
    }
    "type": "Pokeballs",
    "description": "The best Ball with the ultimate level of performance. It will catch any wild Pokémon without fail."
}

Tasks :

- [ ] To add jname, cname and fname

  • Change name structure
  • To add jname
  • To add cname
  • To add fname

Please mention this issue in your PR (#7) and add the above to-do in the PR as well

Comment below if you would like to claim this issue, please do not start working on the issue unless assigned to you explicitly

Change name structure in moves.json

Description

Change the name structure in moves.json to be more in line with the upcoming update and to change the category from Chinese to English.

The required structure:

From:

{
        "accuracy": 100,
        "category": "物理",
        "cname": "拍击",
        "ename": "Pound",
        "id": 1,
        "jname": "はたく",
        "power": 40,
        "pp": 35,
        "type": "Normal"
    },

To:

{
		"id": 1,
		"name": {
        	"english": "Pound",
        	"japanese": "はたく",
        	"chinese": "拍击",
        	"french": "Écras’Face"
    	},
        "accuracy": 100,
        "power": 40,
        "pp": 35,
        "type": "Normal",
        "category": "Physical"
    },

Tasks :

  • To nest ename, jname and cname under name
  • To add French name
  • To change the value of category from Chinese to English

Please mention this issue in your PR (#8) and add the above to-do in the PR as well

Comment below if you would like to claim this issue, please do not start working on the issue unless assigned to you explicitly

Wrong thumbnail link in gen VIII pokemon

Minor issue in the gen VIII additions (i.e. All entries after 809), they have the thumbnail URL wrong.

The URL is mentioned as https://raw.githubusercontent.com/Purukitto/pokemon-data.json/master/images/pokedex/thumbnail/820.png where as the correct URL will be https://raw.githubusercontent.com/Purukitto/pokemon-data.json/master/images/pokedex/thumbnails/820.png

In the URL the thumbnail should be replaced with thumbnails

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.