class Pokemongodb::Pokemon::Eevee

Public Class Methods

base_attack() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 8
def self.base_attack
  114
end
base_defense() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 12
def self.base_defense
  128
end
base_stamina() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 16
def self.base_stamina
  110
end
buddy_candy_distance() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 20
def self.buddy_candy_distance
  3
end
capture_rate() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 24
def self.capture_rate
  0.32
end
cp_gain() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 28
def self.cp_gain
  16
end
description() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 32
def self.description
  "Eevee has an unstable genetic makeup that suddenly mutates due to the environment in which it lives. Radiation from various stones causes this Pokémon to evolve."
end
egg_hatch_distance() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 36
def self.egg_hatch_distance
  10
end
evolves_into() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 40
def self.evolves_into
  [
    Pokemongodb::Pokemon::Vaporeon,
    Pokemongodb::Pokemon::Jolteon,
    Pokemongodb::Pokemon::Flareon
  ]
end
flee_rate() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 48
def self.flee_rate
  0.1
end
height() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 52
def self.height
  0.3
end
id() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 4
def self.id
  133
end
max_cp() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 56
def self.max_cp
  1077.2
end
moves() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 60
def self.moves
  [
    Pokemongodb::Move::Tackle,
    Pokemongodb::Move::QuickAttack,
    Pokemongodb::Move::BodySlam,
    Pokemongodb::Move::Dig,
    Pokemongodb::Move::Swift
  ]
end
name() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 70
def self.name
  "eevee"
end
types() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 74
def self.types
  [
    Pokemongodb::Type::Normal
  ]
end
weight() click to toggle source
# File lib/pokemongodb/pokemon/eevee.rb, line 80
def self.weight
  6.5
end