Class: Pokemongodb::Type::Bug
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
10
|
# File 'lib/pokemongodb/types/bug.rb', line 4
def self.offense_strong
[
Pokemongodb::Type::Grass,
Pokemongodb::Type::Psychic,
Pokemongodb::Type::Dark
]
end
|
.offense_weak ⇒ Object
12
13
14
15
16
17
18
19
20
21
22
|
# File 'lib/pokemongodb/types/bug.rb', line 12
def self.offense_weak
[
Pokemongodb::Type::Fairy,
Pokemongodb::Type::Fighting,
Pokemongodb::Type::Fire,
Pokemongodb::Type::Flying,
Pokemongodb::Type::Ghost,
Pokemongodb::Type::Poison,
Pokemongodb::Type::Steel
]
end
|