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
console.log(`test js file`); |
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
Name | Pokemon Type | Move Type | Power | |
---|---|---|---|---|
ACID | POISON | FAST | 9 | |
AERIAL_ACE | FLYING | CHARGE | 55 | |
AIR_CUTTER | FLYING | CHARGE | 60 | |
AIR_SLASH | FLYING | FAST | 14 | |
ANCIENT_POWER | ROCK | CHARGE | 70 | |
AQUA_JET | WATER | CHARGE | 45 | |
AQUA_TAIL | WATER | CHARGE | 50 | |
ASTONISH | GHOST | FAST | 8 | |
AURORA_BEAM | ICE | CHARGE | 80 |
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
# Script to export all moves from POGO GAME_MASTER | |
# Shout out to pekingduck on github https://github.com/pekingduck - This script will run off the file provided by pekingduck found here: https://github.com/pekingduck/pogo-game-master/blob/master/current.json | |
# Written with ruby 2.3.3p222 (2016-11-21 revision 56859) [x86_64-darwin16] | |
# ran on MacOS 10.12.5 | |
# | |
# run script from directory using `ruby pogo_moves.rb` | |
require "open-uri" | |
require "json" |