stk-code_catmod/data/bowling.projectile
hikerstk 01a9f73b54 Started adding powerup functionality to irrlicht port.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@3223 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2009-03-12 00:57:00 +00:00

22 lines
761 B
Common Lisp

;; -*- mode: lisp -*-
(tuxkart-collectable
(name "Bowling")
(model "bowling.ac")
(mesh "bowling.b3d")
(icon "bowling-icon.rgb")
(speed 4.0)
(min-height 0.2) ; height above terrain below which a ball is
; started to be pulled up
(max-height 1.0) ; height above terrain at which a ball is
; started to be pulled back to ground
(force-updown 1.0) ; force pushing the ball down
; when it's too high above ground
(force-to-target 40) ; force with which a bowling ball flies towards
; the nearest kart
(max-distance 25) ; maximum distance the ball can be away
; from a kart when accelerating towards it
)
;; EOF ;;