comparison clojure/com/aurellem/gb/items.clj @ 182:f0c1e5574e81

finished mapping out pokemon memory region.
author Robert McIntyre <rlm@mit.edu>
date Thu, 22 Mar 2012 06:07:31 -0500
parents 4ea8ff49af87
children 531e1342ff56
comparison
equal deleted inserted replaced
181:4ea8ff49af87 182:f0c1e5574e81
157 0xFA :TM50 ;; substitute 157 0xFA :TM50 ;; substitute
158 0xFB :TM51 ;; "cut" 158 0xFB :TM51 ;; "cut"
159 0xFC :TM52 ;; "fly" 159 0xFC :TM52 ;; "fly"
160 0xFD :TM53 ;; "surf" 160 0xFD :TM53 ;; "surf"
161 0xFE :TM54 ;; "strength" 161 0xFE :TM54 ;; "strength"
162 0xFF :end-of-list-sentinel)) 162 0xFF :end-of-list-sentinel ;; also "flash"
163 ))
163 164
164 (def item-name->item-code 165 (def item-name->item-code
165 (zipmap (vals item-code->item-name) 166 (zipmap (vals item-code->item-name)
166 (keys item-code->item-name))) 167 (keys item-code->item-name)))
167 168