Skip to content

Instantly share code, notes, and snippets.

View ReyesK's full-sized avatar

Kyle Reyes ReyesK

View GitHub Profile
@ReyesK
ReyesK / test.js
Last active November 6, 2024 22:54
console.log(`test js file`);
@ReyesK
ReyesK / pogo_moves.csv
Created August 17, 2018 23:03
CSV output of pogo_moves.rb
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
@ReyesK
ReyesK / pogo_moves.rb
Last active May 14, 2019 18:21
Script to export all moves from POGO GAME_MASTER
# 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"