Class: Pokemongodb::Type::Electric
Class Method Summary
collapse
all, locations, strong_against, weak_against
Methods inherited from Pokemongodb
to_s
Class Method Details
.offense_strong ⇒ Object
4
5
6
7
8
9
|
# File 'lib/pokemongodb/types/electric.rb', line 4
def self.offense_strong
[
Pokemongodb::Type::Flying,
Pokemongodb::Type::Water
]
end
|
.offense_weak ⇒ Object
11
12
13
14
15
16
17
|
# File 'lib/pokemongodb/types/electric.rb', line 11
def self.offense_weak
[
Pokemongodb::Type::Dragon,
Pokemongodb::Type::Electric,
Pokemongodb::Type::Grass
]
end
|