comparison gamelib/constants.py @ 312:dd1ffee5ccf5

Use different score tables fot the different modes. Refactor game modes code as a result
author Neil Muller <drnlmuller@gmail.com>
date Sat, 05 Sep 2009 18:30:51 +0000
parents b9782f622006
children 978efd39a099
comparison
equal deleted inserted replaced
311:245ee075f2ae 312:dd1ffee5ccf5
43 TOOL_PLACE_ANIMALS = 5 43 TOOL_PLACE_ANIMALS = 5
44 TOOL_LOGGING = 6 44 TOOL_LOGGING = 6
45 TOOL_SELL_EQUIPMENT = 7 45 TOOL_SELL_EQUIPMENT = 7
46 46
47 NIGHT_LENGTH = 150 47 NIGHT_LENGTH = 150
48 TURN_LIMIT = 14 48
49 TURN_LIMITS = {
50 'Two weeks' : 14,
51 'Three months' : 90,
52 'Unlimited' : 0,
53 }
54
55 TURN_LIMIT = TURN_LIMITS['Two weeks']