All pastes #983923 Raw Edit

a

public text v1 · immutable
#983923 ·published 2008-04-13 19:18 UTC
rendered paste body
from header_music import *
####################################################################################################################
#  Each track record contains the following fields:
#  1) Track id: used for referencing tracks.
#  2) Track file: filename of the track
#  3) Track flags. See header_music.py for a list of available flags
####################################################################################################################

tracks = [
  ("losing_battle", "alosingbattle.mp3", mood_calm|mood_action),
  ("reluctant_hero", "reluctanthero.mp3", mood_action),
  ("the_great_hall", "thegreathall.mp3", mood_calm),
  ("requiem", "requiem.mp3", mood_calm),
  ("silent_intruder", "silentintruder.mp3", mood_calm|mood_action),
  ("the_pilgrimage", "thepilgrimage.mp3", mood_calm),
  ("ambushed", "ambushed.mp3", mood_action),
  ("triumph", "triumph.mp3", mood_action),
  ("MainMenu.mp3", module_track),
]