#############################################################
#
# highscores-spec.txt
#
# Contains the data that will make up the names
# and scores for the high scores screen.
#
# The system expects to find a def/end block which
# contains information on what to write and where
# to write it. The system ONLY looks for a highscores block
# defined as 'scores'. Only the first ten entries are used.
#
# Leave the score 0 (or less) if you do not want the system to write
# anything in that spot.
#
############################################################

# The name 'scores' must be used

def highscores scores
name1	= "SIMON"
namepos1	= 100 181
score1	= 99610
scorepos1	= 360 181
name2	= "DAVID"
namepos2	= 100 204
score2	= 99000
scorepos2	= 360 204
name3	= "GEORGE"
namepos3	= 100 227
score3	= 95085
scorepos3	= 360 227
name4	= "MERLIN"
namepos4	= 100 250
score4	= 86580
scorepos4	= 360 250
name5	= "RICO"
namepos5	= 100 272
score5	= 79815
scorepos5	= 360 272
name6	= "GREGORY"
namepos6	= 100 295
score6	= 49500
scorepos6	= 360 295
name7	= "FRANCISCO"
namepos7	= 100 316
score7	= 37850
scorepos7	= 360 316
name8	= "RICO"
namepos8	= 100 340
score8	= 26810
scorepos8	= 360 340
name9	= "BILL"
namepos9	= 100 361
score9	= 26100
scorepos9	= 360 361
name10	= "MEHMET"
namepos10	= 120 385
score10	= 18320
scorepos10	= 360 385
end

### END OF HIGH SCORES SPEC
