# Comments start with a '#' and are terminated by newline

background "img/bg1.png"
	speed -220

player "img/car.png" 
	horn "snd/horn.wav" 
	crash "snd/explosion.wav"


#------------------------------------------------------------------------------
#------------------------------------Animals-----------------------------------
#------------------------------------------------------------------------------

# Possum
#
object "img/possum.png"
	worth 1
	damage 0
	min 0 0
	max 0 10
	bleed "img/blood.png"
	hit "snd/squish.wav"
	chance 8
ok

# Rabbit
#
object "img/rabbit.png"
	worth 2
	damage 0
	min 0 20
	max 0 60
	bleed "img/blood.png"
	hit "snd/squish.wav"
	chance 18
ok

# Deer
#
object "img/deer.png"
	worth 10
	damage 16
	max 65 200
	min 30 120
	bleed "img/blood.png"
	hit "snd/squish2.wav"
	chance 52
ok


#------------------------------------------------------------------------------
#----------------------------------Other types---------------------------------
#------------------------------------------------------------------------------

# the old traffic cone
#
object "img/cone.png"
	worth 0
	damage 4
	max 0 0
	min 0 0
	bleed 0
	hit 0
	chance 3
ok

# Repair wrench restores a little bit of health
#
object "img/repair.png"
	worth 0
	damage -5
	max 0 0
	min 0 0
	bleed 0
	hit 0
	chance 600
ok

end
