Unpack Pokedex Graphics and nitrogfx scan/encode Separation (#782)
Some checks failed
build / build (push) Has been cancelled

This commit is contained in:
h2o-DS
2025-10-01 22:47:54 -04:00
committed by GitHub
parent a45b648a40
commit 42aba98f46
161 changed files with 26518 additions and 416 deletions

View File

@@ -44,7 +44,8 @@ for i in range(args.sprite_entries):
args.nitrogfx,
infile,
target,
'-scanfronttoback'
'-encodefronttoback',
'-scan',
])
# The next batch of files should all be palettes
@@ -72,13 +73,15 @@ subprocess.run([
args.nitrogfx,
sub_back,
private_dir / f'pl_otherpoke_{i:04}.NCGR',
'-scanfronttoback'
'-encodefronttoback',
'-scan',
])
subprocess.run([
args.nitrogfx,
sub_front,
private_dir / f'pl_otherpoke_{(i+1):04}.NCGR',
'-scanfronttoback'
'-encodefronttoback',
'-scan',
])
subprocess.run([
args.nitrogfx,
@@ -92,7 +95,8 @@ subprocess.run([
args.nitrogfx,
shadows,
private_dir / f'pokemon_shadows.NCGR',
'-scanfronttoback'
'-encodefronttoback',
'-scan',
])
subprocess.run([
args.nitrogfx,

View File

@@ -51,7 +51,8 @@ for i, subdir in enumerate(SPECIES_DIRS):
args.nitrogfx,
source_file,
target_file,
'-scanfronttoback'
'-encodefronttoback',
'-scan',
])
else:
subprocess.run(['touch', target_file])