Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/worthmine/data-pokemon-go
Utilities for Pokemon Go
https://github.com/worthmine/data-pokemon-go
perl pokemon-go
Last synced: 3 months ago
JSON representation
Utilities for Pokemon Go
- Host: GitHub
- URL: https://github.com/worthmine/data-pokemon-go
- Owner: worthmine
- License: other
- Created: 2017-11-15T05:00:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-23T04:48:36.000Z (almost 5 years ago)
- Last Synced: 2024-10-13T02:41:03.494Z (3 months ago)
- Topics: perl, pokemon-go
- Language: Perl
- Homepage: https://metacpan.org/release/Data-Pokemon-Go
- Size: 306 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.com/worthmine/Data-Pokemon-Go.svg?branch=master)](https://travis-ci.com/worthmine/Data-Pokemon-Go) [![MetaCPAN Release](https://badge.fury.io/pl/Data-Pokemon-Go.svg)](https://metacpan.org/release/Data-Pokemon-Go)
# NAMEData::Pokemon::Go - Data for every Pokemon in Pokemon Go
# SYNOPSIS
use utf8;
use Data::Pokemon::Go::Pokemon;
my $pg = Data::Pokemon::Go::Pokemon->new( name => 'カイリュー' );
print $pg->effective(); # こおり ドラゴン いわ フェアリー
print $pg->invalid(); # くさ みず むし じめん ほのお かくとう
print $pg->advantage(); # はがね でんき いわ
print $pg->disadvantage(); # むし かくとう ドラゴン くさ
print $pg->recommended(); # こおり いわ フェアリーuse Data::Pokemon::Go::IV;
my $iv = Data::Pokemon::Go::IV->new();
print $iv->_calculate_CP( name => $pg->name(), LV => 20, ST => 15, AT => 15, DF => 15 );
# 2167# DESCRIPTION
Data::Pokemon::Go is the helper module for who has less knowledge about Pokemons
# TODO
- supporting Multi-language is not completely
- YAML for after Unova Region are not available
- Japanese documents are not available [qiitaで日本語解説を少しだけ](https://qiita.com/worthmine/items/4a51fd74f31b4a97cf3c)I can't support all of the above with just only me alone.
So, please [PR](https://github.com/worthmine/Data-Pokemon-Go/pulls)!# LICENSE
Copyright (C) Yuki Yoshida.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.# AUTHOR
Yuki Yoshida