~facundo/enjuewemela/trunk

« back to all changes in this revision

Viewing changes to enjuewemela/levels.py

  • Committer: Facundo Batista
  • Date: 2013-06-26 02:17:57 UTC
  • mfrom: (95.1.9 pyarmode)
  • Revision ID: facundo@taniquetil.com.ar-20130626021757-0aj8wvmgta05820z
PyAr mode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    'classic': 0,
27
27
    'rush': FRUKIS_LEVEL_LIMIT // 2,
28
28
    'crazy': FRUKIS_LEVEL_LIMIT // 2,
 
29
    'pyar': 0,
29
30
}
30
31
 
31
32
_Level = namedtuple("Level", "fpp fps lmp")
34
35
    'classic': 1,
35
36
    'rush': 2,
36
37
    'crazy': 3,
 
38
    'pyar': 5,
37
39
}
38
40
 
39
41