diff clojure/com/aurellem/gb/pokemon_presets.clj @ 235:5becef6312b9

working on item-injection; fixed off-by-one error in print-pokedex.
author Robert McIntyre <rlm@mit.edu>
date Sat, 24 Mar 2012 20:05:47 -0500
parents edce489c3c21
children ff37bc3004a7
line wrap: on
line diff
     1.1 --- a/clojure/com/aurellem/gb/pokemon_presets.clj	Sat Mar 24 16:19:43 2012 -0500
     1.2 +++ b/clojure/com/aurellem/gb/pokemon_presets.clj	Sat Mar 24 20:05:47 2012 -0500
     1.3 @@ -13,4 +13,34 @@
     1.4      :speed-exp 0xFFFF
     1.5      :special-exp 0xFFFF}
     1.6     :moves [:fly :surf :cut :strength]})
     1.7 -   
     1.8 \ No newline at end of file
     1.9 +
    1.10 +(def ideal-pikachu
    1.11 +  {:species :pikachu
    1.12 +   :ID 5195
    1.13 +   :original-trainer "RLM"
    1.14 +
    1.15 +   :dv
    1.16 +   {:hp 15
    1.17 +    :attack 15
    1.18 +    :defense 15
    1.19 +    :speed 15
    1.20 +    :special 15}
    1.21 +   
    1.22 +   :experience
    1.23 +   {:main-exp 20
    1.24 +    :hp-exp 0xFFFF
    1.25 +    :attack-exp 0xFFFF
    1.26 +    :defense-exp 0xFFFF
    1.27 +    :speed-exp 0xFFFF
    1.28 +    :special-exp 0xFFFF}
    1.29 +
    1.30 +   :stats
    1.31 +   {:level 2
    1.32 +    :current-hp 15
    1.33 +    :hp 15
    1.34 +    :attack 9
    1.35 +    :defense 8
    1.36 +    :speed 10
    1.37 +    :special 8}
    1.38 +
    1.39 +   :moves [:thundershock :growl :surf]})