annotate clojure/com/aurellem/gb/pokemon_presets.clj @ 230:fe26776e1a58

working on map memory, modified view-memory to output hex and decimal as well as binary
author Robert McIntyre <rlm@mit.edu>
date Sat, 24 Mar 2012 14:42:34 -0500
parents edce489c3c21
children 5becef6312b9
rev   line source
rlm@228 1 (ns com.aurellem.gb.pokemon-presets)
rlm@228 2
rlm@228 3
rlm@228 4 (def HM-mew
rlm@228 5 {:species :mew
rlm@228 6 :ID 5195
rlm@228 7 :original-trainer "RLM"
rlm@228 8 :experience
rlm@228 9 {:main-exp 200
rlm@228 10 :hp-exp 0xFFFF
rlm@228 11 :attack-exp 0xFFFF
rlm@228 12 :defense-exp 0xFFFF
rlm@228 13 :speed-exp 0xFFFF
rlm@228 14 :special-exp 0xFFFF}
rlm@228 15 :moves [:fly :surf :cut :strength]})
rlm@228 16