projects
/
zzz-dywypi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
8fad152
)
Pokedex: Call stats "stats" and report total.
author
Zhorken
<zhorken@gmail.com>
Thu, 11 Mar 2010 04:45:13 +0000
(23:45 -0500)
committer
Zhorken
<zhorken@gmail.com>
Thu, 11 Mar 2010 04:49:08 +0000
(23:49 -0500)
plugins/Pokedex/plugin.py
patch
|
blob
|
history
diff --git
a/plugins/Pokedex/plugin.py
b/plugins/Pokedex/plugin.py
index
c576bd6
..
158e509
100644
(file)
--- a/
plugins/Pokedex/plugin.py
+++ b/
plugins/Pokedex/plugin.py
@@
-115,7
+115,7
@@
class Pokedex(callbacks.Plugin):
if isinstance(obj, tables.Pokemon):
reply_template = \
u"""#{id} {name}, {type}-type Pokémon. Has {abilities}. """ \
if isinstance(obj, tables.Pokemon):
reply_template = \
u"""#{id} {name}, {type}-type Pokémon. Has {abilities}. """ \
- """
Is {stats
}. """ \
+ """
Stats are {stats}, total {total
}. """ \
"""http://veekun.com/dex/pokemon/{link_name}"""
if obj.forme_name:
"""http://veekun.com/dex/pokemon/{link_name}"""
if obj.forme_name:
@@
-144,6
+144,7
@@
class Pokedex(callbacks.Plugin):
type='/'.join(_.name for _ in obj.types),
abilities=' or '.join(_.name for _ in obj.abilities),
stats='/'.join(str(_.base_stat) for _ in obj.stats),
type='/'.join(_.name for _ in obj.types),
abilities=' or '.join(_.name for _ in obj.abilities),
stats='/'.join(str(_.base_stat) for _ in obj.stats),
+ total=sum(_.base_stat for _ in obj.stats),
link_name=link_name,
)
)
link_name=link_name,
)
)