Going forward cbin/.cbin will only be used if necessary and not by default. This removes a step for most tools when used and better aligns with the new auto_repairs and auto_setup scripts.
73 lines
1.7 KiB
Python
73 lines
1.7 KiB
Python
"""WizardKit: Config - Music Sources"""
|
|
# vim: sts=2 sw=2 ts=2
|
|
|
|
MUSIC_MOD = (
|
|
('33432', 'ambrozia.xm'),
|
|
('33460', 'amigatre.mod'),
|
|
('34594', 'CHARIOT.S3M'),
|
|
('34596', 'BUTTERFL.XM'),
|
|
('34654', 'CTGOBLIN.S3M'),
|
|
('35151', 'bananasplit.mod'),
|
|
('35280', 'DEADLOCK.XM'),
|
|
('38591', 'compo_liam.xm'),
|
|
('39987', 'crystald.s3m'),
|
|
('40475', 'ELYSIUM.MOD'),
|
|
('42146', 'enigma.mod'),
|
|
('42519', 'GHOST2.MOD'),
|
|
('42560', 'GSLINGER.MOD'),
|
|
('42872', 'existing.xm'),
|
|
('50427', 'nf-stven.xm'),
|
|
('51549', 'overture.mod'),
|
|
('54250', 'SATELL.S3M'),
|
|
('54313', 'realmk.s3m'),
|
|
('55789', 'scrambld.mod'),
|
|
('57934', 'spacedeb.mod'),
|
|
('59344', 'stardstm.mod'),
|
|
('60395', '2ND_PM.S3M'),
|
|
('66187', 'external.xm'),
|
|
('66343', 'beek-substitutionology.it'),
|
|
('67561', 'radix-unreal_superhero.xm'),
|
|
('70829', 'inside_out.s3m'),
|
|
('83779', 'beyond_music.mod'),
|
|
('104208', 'banana_boat.mod'),
|
|
('114971', 'tilbury_fair.mod'),
|
|
('132563', 'ufo_tune.mod'),
|
|
('135906', 'magnetik_girl.xm'),
|
|
('140628', 'autumn_in_budapest.xm'),
|
|
('143198', 'summer_memories_3.xm'),
|
|
('144405', 'hillbilly_billyboy.xm'),
|
|
('154795', '4mat_-_eternity.xm'),
|
|
('155845', 'bookworm.mo3'),
|
|
('155914', 'battleofsteel.xm'),
|
|
('158975', '1_channel_moog.it'),
|
|
('165495', 'trans.s3m'),
|
|
('168513', 'necros_-_introspection.s3m'),
|
|
('169628', 'radix_-_feng_shui_schematics.xm'),
|
|
('175238', 'unknown48_-_twilight.mod'),
|
|
)
|
|
MUSIC_SNES = (
|
|
'actr',
|
|
'crock',
|
|
'ct',
|
|
'dkc',
|
|
'dkq',
|
|
'ff6',
|
|
'fz',
|
|
'loz3',
|
|
'mmx',
|
|
'ptws',
|
|
'scv4',
|
|
'sf',
|
|
'sf2',
|
|
'sgng',
|
|
'smk',
|
|
'smw',
|
|
'yi',
|
|
'zamn',
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|
|
|
|
# vim: sts=2 sw=2 ts=2
|