+ obj = result.object
+ if isinstance(obj, tables.Pokemon):
+ reply_template = \
+ u"""#{id} {name}, {type}-type Pokémon. Has {abilities}. """ \
+ """{stats}. """ \
+ """http://veekun.com/dex/pokemon/{link_name}"""
+
+ if obj.forme_name:
+ name = '{form} {name}'.format(
+ form=obj.forme_name.title(),
+ name=obj.name
+ )
+ else:
+ name = obj.name
+
+ if obj.forme_base_pokemon:
+ # Can't use urllib.quote() on the whole thing or it'll
+ # catch "?" and "=" where it shouldn't.
+ # XXX Also we need to pass urllib.quote() things explicitly
+ # encoded as utf8 or else we get a UnicodeEncodeError.
+ link_name = '{name}?form={form}'.format(
+ name=urllib.quote(obj.name.lower().encode('utf8')),
+ form=urllib.quote(obj.forme_name.lower().encode('utf8')),
+ )
+ else:
+ link_name = urllib.quote(obj.name.lower().encode('utf8'))
+
+ # a/b/c/d/e/f sucks. Put stats in a more readable format.
+ # Also, color-code them by good-osity.
+ colored_stats = []
+ stat_total = 0
+ for pokemon_stat in obj.stats:
+ base_stat = pokemon_stat.base_stat
+ stat_total += base_stat
+ color = get_stat_color(base_stat)
+
+ colored_stats.append(
+ "\x03{0:02d}{1}\x0f".format(color, base_stat)
+ )
+
+ colored_stat_total = "\x03{0:02d}{1}\x0f".format(
+ get_stat_color(stat_total / 6),
+ stat_total,
+ )
+ stats = """{0} HP, {1}/{2} phys, {3}/{4} spec, {5} speed, {total} total""" \
+ .format(*colored_stats, total=colored_stat_total)
+ self._reply(irc, reply_template.format(
+ id=obj.national_id,
+ name=name,
+ type='/'.join(_.name for _ in obj.types),
+ abilities=' or '.join(_.name for _ in obj.abilities),
+ stats=stats,
+ link_name=link_name,
+ )
+ )
+
+ elif isinstance(obj, tables.Move):
+ reply_template = \
+ u"""{name}, {type}-type {damage_class} move. """ \
+ """{power} power; {accuracy}% accuracy; {pp} PP. """ \
+ """{effect} """ \
+ """http://veekun.com/dex/moves/{link_name}"""
+ self._reply(irc, reply_template.format(
+ name=obj.name,
+ type=obj.type.name,
+ damage_class=obj.damage_class.name,
+ power=obj.power,
+ accuracy=obj.accuracy,
+ pp=obj.pp,
+ effect=unicode(obj.short_effect.as_text),
+ link_name=urllib.quote(obj.name.lower().encode('utf8')),