comparison clojure/com/aurellem/gb/pokemon.clj @ 196:8dd17081829f

changed :moves to give a vector instead of hash-map because move order is important
author Robert McIntyre <rlm@mit.edu>
date Thu, 22 Mar 2012 23:42:31 -0500
parents 1844bdd56314
children 659764a2ea40
comparison
equal deleted inserted replaced
195:1844bdd56314 196:8dd17081829f
226 :species2 species2 226 :species2 species2
227 :type type 227 :type type
228 :dv dv-values 228 :dv dv-values
229 :original-trainer OT-name 229 :original-trainer OT-name
230 :ID ID 230 :ID ID
231 :moves (zipmap moves moves-pp) 231 :moves (mapv vector moves moves-pp)
232 232
233 ;; ephemerial 233 ;; ephemerial
234 :satus status 234 :satus status
235 :stats stats 235 :stats stats
236 :experience experience 236 :experience experience
297 "+----------+----------+----------+")) 297 "+----------+----------+----------+"))
298 298
299 (print "\n") 299 (print "\n")
300 (println "+------------------+----+--------+--------+") 300 (println "+------------------+----+--------+--------+")
301 (println "| Move | PP | Max PP | PP UPs |") 301 (println "| Move | PP | Max PP | PP UPs |")
302 302 (println "+------------------+----+--------+--------+")
303
304
303 305
304 (println "+------------------+----+--------+--------+") 306 (println "+------------------+----+--------+--------+")
305 307
306 308
307 309