forked from charlesmadere/CynanBotCommon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
59 lines (33 loc) · 935 Bytes
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from pokepediaRepository import PokepediaRepository, PokepediaGeneration
pr = PokepediaRepository()
move = pr.searchMoves('fire spin')
# pokemon = pr.searchPokemon('moltres')
for s in move.toStrList():
print(s)
move = pr.searchMoves('vine whip')
for s in move.toStrList():
print(s)
move = pr.searchMoves('bite')
for s in move.toStrList():
print(s)
move = pr.searchMoves('acid')
for s in move.toStrList():
print(s)
move = pr.searchMoves('recover')
for s in move.toStrList():
print(s)
move = pr.searchMoves('bide')
for s in move.toStrList():
print(s)
move = pr.searchMoves('rage')
for s in move.toStrList():
print(s)
move = pr.searchMoves('barrier')
for s in move.toStrList():
print(s)
move = pr.searchMoves('hidden power')
for s in move.toStrList():
print(s)
move = pr.searchMoves('horn drill')
for s in move.toStrList():
print(s)