class Pokemongodb::Pokemon::Flareon

Public Class Methods

base_attack() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 8
def self.base_attack
  238
end
base_defense() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 12
def self.base_defense
  178
end
base_stamina() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 16
def self.base_stamina
  130
end
buddy_candy_distance() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 20
def self.buddy_candy_distance
  3
end
capture_rate() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 24
def self.capture_rate
  0.12
end
cp_gain() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 28
def self.cp_gain
  39
end
description() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 32
def self.description
  "Flareon's fluffy fur has a functional purpose—it releases heat into the air so that its body does not get excessively hot. This Pokémon's body temperature can rise to a maximum of 1,650 degrees Fahrenheit."
end
flee_rate() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 36
def self.flee_rate
  0.06
end
height() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 40
def self.height
  0.9
end
id() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 4
def self.id
  136
end
max_cp() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 44
def self.max_cp
  2643.43
end
moves() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 48
def self.moves
  [
    Pokemongodb::Move::Ember,
    Pokemongodb::Move::FireBlast,
    Pokemongodb::Move::Flamethrower,
    Pokemongodb::Move::HeatWave
  ]
end
name() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 57
def self.name
  "flareon"
end
types() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 61
def self.types
  [
    Pokemongodb::Type::Fire
  ]
end
weight() click to toggle source
# File lib/pokemongodb/pokemon/flareon.rb, line 67
def self.weight
  25.0
end