class Pokemongodb::Pokemon::Golem

Public Class Methods

base_attack() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 8
def self.base_attack
  176
end
base_defense() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 12
def self.base_defense
  198
end
base_stamina() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 16
def self.base_stamina
  160
end
buddy_candy_distance() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 20
def self.buddy_candy_distance
  1
end
capture_rate() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 24
def self.capture_rate
  0.1
end
cp_gain() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 28
def self.cp_gain
  34
end
description() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 32
def self.description
  "Golem is known for rolling down from mountains. To prevent them from rolling into the homes of people downhill, grooves have been dug into the sides of mountains to serve as guideways for diverting this Pokémon's course."
end
flee_rate() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 36
def self.flee_rate
  0.05
end
height() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 40
def self.height
  1.4
end
id() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 4
def self.id
  76
end
max_cp() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 44
def self.max_cp
  2303.17
end
moves() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 48
def self.moves
  [
    Pokemongodb::Move::MudSlap,
    Pokemongodb::Move::RockThrow,
    Pokemongodb::Move::AncientPower,
    Pokemongodb::Move::Earthquake,
    Pokemongodb::Move::StoneEdge
  ]
end
name() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 58
def self.name
  "golem"
end
types() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 62
def self.types
  [
    Pokemongodb::Type::Rock,
    Pokemongodb::Type::Ground
  ]
end
weight() click to toggle source
# File lib/pokemongodb/pokemon/golem.rb, line 69
def self.weight
  300.0
end