class Pokemongodb::Pokemon::Slowpoke

Public Class Methods

base_attack() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 8
def self.base_attack
  110
end
base_defense() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 12
def self.base_defense
  110
end
base_stamina() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 16
def self.base_stamina
  180
end
buddy_candy_distance() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 20
def self.buddy_candy_distance
  2
end
candy_to_evolve() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 24
def self.candy_to_evolve
  50
end
capture_rate() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 28
def self.capture_rate
  0.4
end
cp_gain() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 32
def self.cp_gain
  18
end
description() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 36
def self.description
  "Slowpoke uses its tail to catch prey by dipping it in water at the side of a river. However, this Pokémon often forgets what it's doing and often spends entire days just loafing at water's edge."
end
egg_hatch_distance() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 40
def self.egg_hatch_distance
  5
end
evolves_into() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 44
def self.evolves_into
  Pokemongodb::Pokemon::Slowbro
end
flee_rate() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 48
def self.flee_rate
  0.1
end
height() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 52
def self.height
  1.2
end
id() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 4
def self.id
  79
end
max_cp() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 56
def self.max_cp
  1218.9
end
moves() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 60
def self.moves
  [
    Pokemongodb::Move::Confusion,
    Pokemongodb::Move::WaterGun,
    Pokemongodb::Move::Psychic,
    Pokemongodb::Move::Psyshock,
    Pokemongodb::Move::WaterPulse
  ]
end
name() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 70
def self.name
  "slowpoke"
end
types() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 74
def self.types
  [
    Pokemongodb::Type::Water,
    Pokemongodb::Type::Psychic
  ]
end
weight() click to toggle source
# File lib/pokemongodb/pokemon/slowpoke.rb, line 81
def self.weight
  36.0
end