diff options
| author | Sanky <gsanky@gmail.com> | 2012-01-19 23:20:44 +0100 |
|---|---|---|
| committer | Sanky <gsanky@gmail.com> | 2012-01-19 23:20:44 +0100 |
| commit | 5e4bcfc0b278782dbdfcc5e68365686838741280 (patch) | |
| tree | 323a9e7965deff8a2f2b903b149b4d4b5df5792b /extras/print_pc_items.py | |
| parent | HealParty script (Predef 7) (diff) | |
| parent | Merge in Sanky/pokered (W_PARTYMON stuff) (diff) | |
| download | pokeyellow-5e4bcfc0b278782dbdfcc5e68365686838741280.tar.gz pokeyellow-5e4bcfc0b278782dbdfcc5e68365686838741280.tar.xz pokeyellow-5e4bcfc0b278782dbdfcc5e68365686838741280.zip | |
Merge
hg-commit-id: a3be68843101
Diffstat (limited to 'extras/print_pc_items.py')
| -rw-r--r-- | extras/print_pc_items.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/extras/print_pc_items.py b/extras/print_pc_items.py new file mode 100644 index 00000000..0fedbedd --- /dev/null +++ b/extras/print_pc_items.py @@ -0,0 +1,9 @@ +#!/usr/bin/python +#author: Bryan Bishop <kanzure@gmail.com> +#date: 2012-01-19 +#spit out some constants + +for x in range(1, 51): + print "BOXITEM%.2d EQU $%s" % (x, ("%.2x" % (0xd539+(x*2))).upper()) + print "BOXCOUNT%.2d EQU $%s" % (x, ("%.2x" % (0xd539+(x*2)+1)).upper()) + |
