File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 5
5
import sys
6
6
import hashlib
7
7
8
+ VERSION = "0.9.2"
8
9
#Addresses for various data. Offsets include iNES header.
9
10
warps_addr = (0xf3d8 , 0xf50b )
10
11
zones_addr = (0xf55f , 0xf5c3 )
@@ -428,7 +429,9 @@ def move_repel(player_stats):
428
429
return player_stats
429
430
430
431
def main ():
431
- parser = argparse .ArgumentParser (prog = "DWRandomizer" )
432
+
433
+ parser = argparse .ArgumentParser (prog = "DWRandomizer" ,
434
+ description = "A randomizer for Dragon Warrior for NES" )
432
435
parser .add_argument ("-r" ,"--remake" , action = "store_false" ,
433
436
help = "Do not set enemy HP, XP/Gold drops and MP use up to that of the "
434
437
"remake. This will make grind times much longer." )
@@ -449,6 +452,7 @@ def main():
449
452
help = "Do not randomize towns." )
450
453
parser .add_argument ("-w" ,"--shops" , action = "store_false" ,
451
454
help = "Do not randomize weapon shops." )
455
+ # parser.add_argument('--version', action='version', version='%(prog) %s'%VERSION)
452
456
parser .add_argument ("filename" , help = "The rom file to use for input" )
453
457
args = parser .parse_args ()
454
458
randomize (args )
You can’t perform that action at this time.
0 commit comments