2015-04-10 12:20:16 -04:00
|
|
|
<?xml version="1.0"?>
|
2015-07-11 09:38:52 -04:00
|
|
|
<!-- Format
|
2015-07-29 17:02:16 -04:00
|
|
|
It is possible to give relative values (factors and more) for each property.
|
|
|
|
|
|
|
|
The format as a regex is: ([+-*/](%d+|x))*
|
|
|
|
An empty value means no change, a value without sign or with a '-' replaces
|
|
|
|
the previous value. If an operator prefixes the string, e.g. *1.5 (- doesn't
|
|
|
|
work because it's a sign). x will get replaced by the previous value which
|
|
|
|
means *1.5 is equal to x*1.5. It's also possible to combine operations:
|
|
|
|
+1.5*20 means "add 1.5 to the previous value and then multiply by 20".
|
|
|
|
Note that it's computed sequentially from left to right and there is no
|
|
|
|
operator precedence. Also whitespaces aren't allowed because they are used
|
|
|
|
to split arrays.
|
|
|
|
If you want to return the square of something use x*x or only *x.
|
|
|
|
|
|
|
|
ATTENTION: '-' is a special case if it is the first character of a number-
|
2015-07-11 09:38:52 -04:00
|
|
|
string. It means that the number is negative and NOT that the following
|
2019-06-04 19:04:18 -04:00
|
|
|
float will be subtracted from the base value. So if x = 10 and the string
|
2015-07-11 09:38:52 -04:00
|
|
|
"-5" is processed, the result will be -5 and not the same as "x-5", which
|
|
|
|
would result in 10 - 5 = 5.
|
|
|
|
-->
|
2015-07-09 18:36:50 -04:00
|
|
|
<characteristics>
|
2015-07-11 18:39:38 -04:00
|
|
|
<!-- The default values that can be modified by the difficulty, karts, etc.
|
|
|
|
The values here should also be the values of the maximum difficulty. -->
|
2015-07-09 18:36:50 -04:00
|
|
|
<characteristic name="base">
|
|
|
|
<!-- ********** Physics ********** -->
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Suspension
|
|
|
|
stiffness: kart's suspension stiffness.
|
|
|
|
rest: Length of suspension when at rest.
|
|
|
|
travel-cm: maximum movement of suspension - in cm!!
|
|
|
|
exp-string-response: dampen the suspension spring reaction
|
|
|
|
exponentially. See
|
2015-07-09 19:13:04 -04:00
|
|
|
http://bulletphysics.org/Bullet/phpBB3/viewtopic.php?f=9&t=7369\&p=25236&hilit=vehicle#p25236
|
|
|
|
for details.
|
2015-07-09 18:36:50 -04:00
|
|
|
max-force: Maximum suspension force -->
|
2017-03-23 18:58:26 -04:00
|
|
|
<suspension stiffness="280" rest="0.3" travel="0.29"
|
2018-11-13 02:34:49 -05:00
|
|
|
exp-spring-response="false" max-force="32000" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Values related to stability of the chassis: damping, and reduced
|
|
|
|
impact of roll.
|
|
|
|
downward-impulse-factor: A speed proportional impulse applied each
|
|
|
|
frame that pushes the vehicle onto the ground.
|
|
|
|
track-connection-accel: An artificial force that pulls a wheel to
|
|
|
|
the ground if its off ground. Reduces the affect if a kart loses
|
|
|
|
contact with the ground (i.e. it then can't steer or accelerate
|
|
|
|
anymore).
|
2017-03-23 04:22:53 -04:00
|
|
|
angular-factor: Factor to change angular impulses. X and Z rotations
|
2017-03-23 04:07:34 -04:00
|
|
|
are damped to avoid that karts in a collision are too easily pushed
|
2017-03-23 04:22:53 -04:00
|
|
|
into a roll or pitch, which makes them topple over
|
2015-07-09 18:36:50 -04:00
|
|
|
smooth-flying-impulse: apply a torque impulse to flying kart to keep
|
|
|
|
them parallel to the ground. -->
|
|
|
|
<stability roll-influence="0.3"
|
|
|
|
chassis-linear-damping="0.2"
|
|
|
|
chassis-angular-damping="0"
|
|
|
|
downward-impulse-factor="5"
|
|
|
|
track-connection-accel="2"
|
2017-09-05 19:06:04 -04:00
|
|
|
angular-factor="0.25 1.0 0.5"
|
2015-08-16 10:25:44 -04:00
|
|
|
smooth-flying-impulse="250" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Turning
|
2015-07-12 18:23:05 -04:00
|
|
|
radius: The turn radius of the kart at
|
2015-07-09 18:36:50 -04:00
|
|
|
a given speed. The actual steering angle is dependent on the
|
|
|
|
wheel base of the kart: radius = wheel_base/sin(steering_angle).
|
|
|
|
The values below define that at speed 0 the turn radius is 2, at
|
|
|
|
speed 10 the radius is 7.5 etc.
|
|
|
|
The actual turn radius is piece-wise linearly interpolated. This
|
|
|
|
allows for tighter turning at lower speeds, and also avoids that
|
2018-06-22 20:17:33 -04:00
|
|
|
the kart becomes too hard to control at high speed (speeds
|
2018-09-24 13:31:52 -04:00
|
|
|
higher than 25 can only be reached with powerups).
|
2015-07-09 18:36:50 -04:00
|
|
|
time-full-steer: This is the amount of change in steering depending
|
|
|
|
on current steering. So if the steering is between 0 and 0.5,
|
|
|
|
the time-for-steering-change is 0.15. If the current steering is
|
|
|
|
between 0.5 and 1.0, the time-for-steering-change is 0.25.
|
|
|
|
The speed is used as dt/time-for-steering-change.
|
|
|
|
In short: steering at less than halfway is somewhat faster,
|
|
|
|
which should avoid oversteering (by pressing the key for too long),
|
|
|
|
but slower when you want to steer more. Overwall with the current
|
|
|
|
settings the expected time-to-full-steer is:
|
|
|
|
0.5 * 0.25 + 0.5 * 0.15 = 0.2 ... which is overall the same
|
|
|
|
time we had previously. -->
|
2015-07-12 18:23:05 -04:00
|
|
|
<turn radius="0:2.0 10:7.5 25:15 45:30"
|
2015-07-11 18:39:38 -04:00
|
|
|
time-full-steer="0:0.17 0.5:0.17 0.5:0.28 1.0:0.28"
|
2015-07-09 18:36:50 -04:00
|
|
|
time-reset-steer="0.1" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Speed and acceleration
|
2018-06-22 20:17:33 -04:00
|
|
|
power: The power of the kart (the engine power needed to accelerate
|
|
|
|
at a given pace is proportional to mass)
|
2015-07-11 09:38:52 -04:00
|
|
|
max-speed: The base maximum speed of the kart in m/s
|
2018-11-24 20:29:19 -05:00
|
|
|
generic-max-speed: Must have the same value as max-speed. This
|
|
|
|
is the max speed independently of kart type and
|
|
|
|
of handicap, which is used by basket balls.
|
2015-07-09 18:36:50 -04:00
|
|
|
brake-factor: Value used when braking.
|
|
|
|
brake-time-increase: The brake force is multiplied by
|
2015-07-29 17:02:16 -04:00
|
|
|
(1 + brake_time) * brake_time_increase - i.e. the longer the
|
|
|
|
brake was pressed, the harder the kart will brake.
|
|
|
|
max-speed-reverse-ratio is the percentage of max speed for reverse
|
|
|
|
gear.
|
2015-07-09 18:36:50 -04:00
|
|
|
-->
|
2018-11-24 20:29:19 -05:00
|
|
|
<engine power="950" max-speed="25" generic-max-speed="25" brake-factor="15"
|
2015-07-12 18:23:05 -04:00
|
|
|
brake-time-increase="6" max-speed-reverse-ratio="0.65" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Simulated gears
|
2015-07-09 19:13:04 -04:00
|
|
|
switch-ratio defines at what ratio of the maximum
|
2015-07-11 09:38:52 -04:00
|
|
|
speed what gear is selected, e.g. 0.25 means that if the speed is
|
2018-06-22 20:17:33 -04:00
|
|
|
inferior or equal to 0.25 * maxSpeed then use gear 1, 0.5 means if
|
|
|
|
the speed is inferior or equal to 0.5 x maxSpeed then gear 2.
|
2015-07-09 18:36:50 -04:00
|
|
|
gear-power-increase contains the increase in max power (to simulate
|
2015-07-11 09:38:52 -04:00
|
|
|
different gears), e.g. 2.5 as first entry means: 2.5 * maxPower in gear 1
|
2015-07-09 18:36:50 -04:00
|
|
|
| first | second | third | . -->
|
2018-06-22 20:17:33 -04:00
|
|
|
<gear switch-ratio="0.2 0.45 0.7 1 1.25"
|
|
|
|
power-increase="2.5 2.1 1.7 1.4 1.2" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Mass of a kart -->
|
2015-07-12 18:23:05 -04:00
|
|
|
<mass value="350" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Wheels
|
|
|
|
damping-relaxation/compression: for bullet
|
|
|
|
damping parameters
|
|
|
|
Radius and width of wheel
|
|
|
|
front-right, front-left, rear-right and rear-left give the
|
|
|
|
position of the physics raycast wheels relative to the center of
|
|
|
|
gravity. Default is to use the corners of the chassis to attach
|
|
|
|
the wheels to. -->
|
2018-11-13 02:34:49 -05:00
|
|
|
<wheels damping-relaxation="35" damping-compression="15">
|
2015-07-09 18:36:50 -04:00
|
|
|
<front-right position="0.38 0 0.6" />
|
|
|
|
<front-left position="-0.38 0 0.6" />
|
|
|
|
<rear-right position="0.38 0 -0.6" />
|
|
|
|
<rear-left position="-0.38 0 -0.6" />
|
|
|
|
</wheels>
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2017-03-22 04:52:03 -04:00
|
|
|
<!-- Friction of a kart when e.g. sliding along a wall. -->
|
2017-03-23 04:22:53 -04:00
|
|
|
<friction kart-friction="0.0" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- ********** Visuals ********** -->
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Skidding
|
|
|
|
increase: multiplicative increase of skidding factor in each frame.
|
|
|
|
decrease: multiplicative decrease of skidding factor in each frame.
|
|
|
|
max: maximum skidding factor = maximum increase of steering angle.
|
|
|
|
time-till-max: Time till maximum skidding is reached.
|
|
|
|
visual: Additional graphical rotation of kart. The graphical rotation
|
|
|
|
of the kart also determines the direction the kart is driving to
|
|
|
|
when skidding is stopped.
|
|
|
|
visual-time: How long it takes for the visual skid to reach maximum.
|
|
|
|
revert-visual-time: how long it takes when stopping a skid to revert
|
|
|
|
the visual skid and bring visuals and physics in sync again.
|
|
|
|
min-speed: Minimum speed a kart must have before it can skid. Must be
|
|
|
|
>0, otherwise the kart can skid at the start of the race.
|
|
|
|
time-till-bonus: How long a kart needs to skid in order to get a bonus.
|
|
|
|
bonus-force: A speedup applied to the kart whick skidded for a while.
|
|
|
|
bonus-time: How long the bonus-force is applied.
|
|
|
|
bonus-force: Additional engine force (this is used to offset the fact
|
|
|
|
that turning after skidding (e.g. to correct direction) often uses
|
|
|
|
up the skid bonus).
|
|
|
|
post-skid-rotate-factor: a factor to be used to determine how much
|
|
|
|
the chassis of a kart should rotate to match the graphical view.
|
|
|
|
A factor of 1 is identical, a smaller factor will rotate the kart
|
|
|
|
less (which might feel better).
|
|
|
|
physical-jump-time: Time for a physical jump at the beginning of a skid.
|
|
|
|
graphical-jump-time: Time for a graphics-only jump at the beginning
|
|
|
|
of a skid.
|
|
|
|
reduce-turn-min/max: The steering done by the controller (which is in
|
|
|
|
[-1,1]) is mapped to [reduce-turn-min, reduce-turn-max] when skidding
|
|
|
|
is active (for left turn, right turn will use [-max, -min]). The
|
|
|
|
effect is that while you skid (say left) you can adjust the direction
|
|
|
|
of the turn the kart is doing somewhat by steering to the left and right,
|
|
|
|
but you will always keep on doing a left turn, just more or less. -->
|
|
|
|
<skid increase="1.05" decrease="0.95" max="2.5" time-till-max="0.5"
|
|
|
|
visual="1.25" visual-time="0.7" revert-visual-time="0.7"
|
|
|
|
min-speed="10" time-till-bonus="1.0 3.0"
|
|
|
|
bonus-speed="4.5 6.5" bonus-time="3.0 4.0"
|
|
|
|
bonus-force="250 350"
|
|
|
|
physical-jump-time="0" graphical-jump-time="0.4"
|
|
|
|
post-skid-rotate-factor="1"
|
2015-11-21 17:27:00 -05:00
|
|
|
reduce-turn-min="0.2" reduce-turn-max="0.8" enabled="true" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Camera
|
|
|
|
Distance between kart and camera.
|
|
|
|
forward-up-angle: Angle between camera and plane of kart (pitch)
|
|
|
|
when the camera is pointing forward
|
2020-03-15 14:32:15 -04:00
|
|
|
forward-smoothing: if true, use smoothing (forward-up-angle become relative to speed) when pointing forward
|
2015-07-09 18:36:50 -04:00
|
|
|
backward-up-angle: Angle between camera and plane of kart (pitch)
|
|
|
|
when the camera is pointing backwards. This is usually
|
|
|
|
larger than the forward-up-angle, since the kart itself
|
|
|
|
otherwise obstricts too much of the view. -->
|
2020-03-15 14:32:15 -04:00
|
|
|
<camera distance="1.0"
|
|
|
|
forward-up-angle="0" forward-smoothing="true"
|
2015-07-09 18:36:50 -04:00
|
|
|
backward-up-angle="5" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Jump animation
|
|
|
|
animation-time: only if the estimated time for a jump is larger
|
|
|
|
than this value will the jump animation being
|
|
|
|
shown. -->
|
|
|
|
<jump animation-time="0.5" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Leaning related parameters, i.e. slightly leaning the karts when
|
|
|
|
driving a fast curve.
|
|
|
|
max: maximum leaning (i.e. when steering as much as possible at highest
|
|
|
|
speed), in degrees.
|
|
|
|
speed: Speed with which the leaning changes (in degree/second). -->
|
2019-10-22 12:31:09 -04:00
|
|
|
<lean max="12.0" speed="12.0" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- ********** Items ********** -->
|
2015-04-10 16:58:04 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Anvil
|
|
|
|
weight: The additional weight an anvil adds to a kart.
|
|
|
|
speed-factor: The additional slowdown caused by the anvil.
|
|
|
|
duration: The time an anvil is active. -->
|
|
|
|
<anvil duration="2.0" weight="150" speed-factor="0.2" />
|
2015-04-10 16:58:04 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Parachute
|
2018-06-22 20:17:33 -04:00
|
|
|
friction: The friction factor when a parachute is attached.
|
2015-07-09 18:36:50 -04:00
|
|
|
duration: The time an attached parachute is active
|
2018-06-22 20:17:33 -04:00
|
|
|
duration-other: Used when the parachute results from item use
|
2017-02-05 18:54:32 -05:00
|
|
|
duration-rank-mult: The multiplier applied to the duration of the
|
|
|
|
parachute on the 1st kart when affected by the item. Scale for
|
|
|
|
intermediary ranks to 1.0 for the last affected.
|
|
|
|
duration-speed-mult: Applied in all cases, multitplier to duration
|
|
|
|
of the parachute at max-speed. Scale to 1.0 at 0 speed.
|
2015-07-09 18:36:50 -04:00
|
|
|
lbound-fraction: The lower bound fraction of speed when lost will
|
2017-02-05 18:54:32 -05:00
|
|
|
detach parachute. E.g. at nearly 0 speed, only 20% of speed
|
2015-07-09 18:36:50 -04:00
|
|
|
need to be lost.
|
|
|
|
ubound-fraction: The upper bound fraction of speed when lost will
|
2017-02-05 18:54:32 -05:00
|
|
|
detach parachute. E.g. at max-speed 50% of speed must be lost.
|
2015-07-09 18:36:50 -04:00
|
|
|
max-speed: A factor that decides the impact of rate of speed
|
|
|
|
(distance between bounds) -->
|
2018-08-05 09:20:11 -04:00
|
|
|
<parachute friction="5.0" duration="3" duration-other="2.5"
|
|
|
|
duration-rank-mult="1.5" duration-speed-mult="1.35"
|
2018-06-22 20:17:33 -04:00
|
|
|
lbound-fraction="0.5" ubound-fraction="0.3" max-speed="30" />
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Bubblegum
|
|
|
|
duration: How long the bubblegum lasts.
|
|
|
|
speed-fraction: To what fraction of top-speed the speed is reduced.
|
|
|
|
torque: To rotate the kart somewhat.
|
|
|
|
fade-in-time: How quick the slowdown takes effect.
|
|
|
|
shield-duration: How long the bubblegum shield lasts -->
|
|
|
|
<bubblegum duration="1" speed-fraction="0.3" torque="500" fade-in-time="0.01"
|
|
|
|
shield-duration="10.0" />
|
2015-04-10 16:58:04 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Zipper
|
|
|
|
duration: Time a zipper is active.
|
|
|
|
force: Additional zipper force.
|
|
|
|
speed-gain: One time additional speed.
|
|
|
|
max-speed-increase: Additional speed allowed on top of the
|
|
|
|
kart-specific maximum kart speed.
|
|
|
|
fade-out-time: determines how long it takes for a zipper
|
|
|
|
to fade out (after 'time'). -->
|
|
|
|
<zipper duration="3.5" force="250.0" speed-gain="4.5" max-speed-increase="15"
|
|
|
|
fade-out-time="1.0" />
|
2015-04-10 16:58:04 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Swatter
|
2015-11-29 14:02:36 -05:00
|
|
|
duration: How long can the swatter be active.
|
2015-07-09 18:36:50 -04:00
|
|
|
distance: How close a kart or an item must be before it can be hit.
|
2015-11-29 14:02:36 -05:00
|
|
|
This is the square of the real distance to accelerate the
|
2015-07-11 18:39:38 -04:00
|
|
|
compution.
|
2015-07-09 18:36:50 -04:00
|
|
|
squash-duration: How long a kart will remain squashed.
|
2015-11-29 14:02:36 -05:00
|
|
|
squash-slowdown: Percentage of max speed that a kart is
|
2015-07-09 18:36:50 -04:00
|
|
|
restricted to. -->
|
2015-07-11 18:39:38 -04:00
|
|
|
<swatter duration="10" distance="9" squash-duration="5"
|
2015-07-09 18:36:50 -04:00
|
|
|
squash-slowdown="0.5" />
|
2015-04-10 16:58:04 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Plunger and rubber band handling
|
2015-07-09 19:13:04 -04:00
|
|
|
band-max-length: The maximum length of rubber band before it snaps.
|
|
|
|
band-force: The force a plunger/rubber band applies to the kart(s).
|
|
|
|
band-duration: The duration a rubber band acts.
|
|
|
|
in-face-time determines how long it takes before a plunger
|
2015-07-09 18:36:50 -04:00
|
|
|
in your face is removed. -->
|
|
|
|
<plunger band-max-length="50" band-force="1500" band-duration="1"
|
|
|
|
band-speed-increase="7" band-fade-out-time="3"
|
2015-07-11 18:39:38 -04:00
|
|
|
in-face-time="4.5" />
|
2015-04-10 16:58:04 -04:00
|
|
|
|
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- ********** Miscellaneous ********** -->
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Startup
|
|
|
|
If a kart starts within the specified time after 'go',
|
|
|
|
it receives the corresponding bonus from 'boost'. Those
|
|
|
|
fields must have the same size, and must be sorted by
|
|
|
|
increasing times. -->
|
|
|
|
<startup time="0.3 0.5"
|
2018-06-22 20:17:33 -04:00
|
|
|
boost="8 4" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Rescue
|
|
|
|
duration: How long it takes the kart to be raised.
|
|
|
|
height: how height the kart will be raised before it is
|
|
|
|
dropped back onto the track.
|
|
|
|
vert rescue offset: used to raise karts a bit higher before
|
|
|
|
releasing them on the ground after a rescue. Used to avoid
|
|
|
|
resetting karts into the track. Not sure if this is still
|
|
|
|
necessary. -->
|
|
|
|
<rescue vert-offset="0.0" duration="1.2" height="2" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Explosion
|
|
|
|
duration: how long it takes before the kart can drive again (this
|
|
|
|
determines how height the kart is being thrown).
|
|
|
|
invulnerability-time: how long a kart will be invulnerable
|
|
|
|
after being hit by an explosion.
|
|
|
|
radius: Kart closer to this value will be affected by
|
|
|
|
an explosion as well. -->
|
2018-11-27 04:32:55 -05:00
|
|
|
<explosion duration="1.5" radius="6"
|
2018-06-22 20:17:33 -04:00
|
|
|
invulnerability-time="7" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Nitro
|
|
|
|
engine-force: additional engine power
|
2018-06-22 20:17:33 -04:00
|
|
|
engine-mult: multiply the total engine power by this
|
2015-07-09 18:36:50 -04:00
|
|
|
consumption: nitro consumption - heavier characters can be set
|
|
|
|
to need more nitro than lighter character.
|
|
|
|
small-container: how much energy a small container gives.
|
|
|
|
big-container: how much energy a big container gives.
|
|
|
|
max-speed-increase: How much the speed of a kart might exceed
|
|
|
|
its maximum speed (in m/s).
|
|
|
|
duration: How long the increased speed will be valid after
|
|
|
|
the kart stops using nitro (and the fade-out-time starts).
|
|
|
|
fade-out-time: Duration during which the increased maximum
|
|
|
|
speed due to nitro fades out.
|
|
|
|
max: How much nitro a kart can store. -->
|
2018-06-22 20:17:33 -04:00
|
|
|
<nitro engine-force="300" engine-mult="1.2" consumption="1"
|
|
|
|
small-container="1" big-container="3"
|
|
|
|
max-speed-increase="5" duration="1" fade-out-time="2.4" max="20" />
|
2015-04-10 12:20:16 -04:00
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Slipstream
|
2018-04-13 02:50:10 -04:00
|
|
|
base-speed: the speed for which length and width are valid.
|
2018-04-17 21:09:49 -04:00
|
|
|
They are upscaled when faster and downscaled when slower.
|
2015-07-09 18:36:50 -04:00
|
|
|
length: How far behind a kart slipstream works
|
2018-04-17 21:09:49 -04:00
|
|
|
(note : this helps OTHER karts)
|
2015-07-09 18:36:50 -04:00
|
|
|
width: how wide slipstream works furthest away from the kart.
|
2018-04-13 02:50:10 -04:00
|
|
|
inner-factor: The proportion of the slipstreaming area with
|
2018-04-17 21:09:49 -04:00
|
|
|
twice faster slipstream "credits" collection.
|
|
|
|
min-collect-time: How many seconds of sstream are needed to get a bonus
|
|
|
|
it can be accumulated faster if in the inner quad)
|
|
|
|
max-collect-time: How many seconds of sstream bonus can be accumulated at most
|
2018-04-13 02:50:10 -04:00
|
|
|
add-power: Additional power due to sstreaming.
|
2015-07-09 18:36:50 -04:00
|
|
|
min-speed: Minimum speed necessary for slipstream to take effect.
|
|
|
|
max-speed-increase: How much the speed of the kart might exceed
|
|
|
|
its normal maximum speed.
|
2018-04-17 21:09:49 -04:00
|
|
|
duration-factor: A multiplicator to how long the higher speed lasts
|
|
|
|
1 means it last as long the total time collected
|
2015-07-09 18:36:50 -04:00
|
|
|
fade-out-time: How long the slip stream speed increase will
|
|
|
|
gradually be reduced. -->
|
2018-04-13 02:50:10 -04:00
|
|
|
<slipstream base-speed="20" length="8" width="4" inner-factor="0.5"
|
2018-06-22 21:45:26 -04:00
|
|
|
min-collect-time="2.5" max-collect-time="8" add-power="300" min-speed="8"
|
|
|
|
max-speed-increase="3" duration-factor="1" fade-out-time="2" />
|
2015-07-09 18:36:50 -04:00
|
|
|
</characteristic>
|
|
|
|
|
2015-07-11 09:38:52 -04:00
|
|
|
<!-- The different difficulties (like easy, medium, hard) -->
|
|
|
|
<difficulties>
|
|
|
|
<characteristic name="easy">
|
2018-11-24 20:29:19 -05:00
|
|
|
<engine power="*0.7" max-speed="*0.6" generic-max-speed="*0.6" />
|
2015-07-11 13:17:24 -04:00
|
|
|
<plunger in-face-time="3" />
|
2015-07-11 09:38:52 -04:00
|
|
|
</characteristic>
|
|
|
|
<characteristic name="medium">
|
2018-11-24 20:29:19 -05:00
|
|
|
<engine power="*0.83" max-speed="*0.8" generic-max-speed="*0.8" />
|
2015-07-11 18:39:38 -04:00
|
|
|
<plunger in-face-time="4" />
|
2015-07-11 09:38:52 -04:00
|
|
|
</characteristic>
|
|
|
|
<characteristic name="hard">
|
2018-11-24 20:29:19 -05:00
|
|
|
<engine power="*0.92" max-speed="*0.92" generic-max-speed="*0.92" />
|
2015-07-11 09:38:52 -04:00
|
|
|
</characteristic>
|
2015-07-29 17:02:16 -04:00
|
|
|
<!-- This doesn't need to be changed because the most fast/heavy/extreme
|
|
|
|
values should also be the default ones. -->
|
2015-07-11 18:39:38 -04:00
|
|
|
<characteristic name="best" />
|
2015-07-11 09:38:52 -04:00
|
|
|
</difficulties>
|
|
|
|
|
|
|
|
<!-- The different kart types, that can be specified in the kart.xml file -->
|
2015-07-09 19:13:04 -04:00
|
|
|
<kart-types>
|
|
|
|
<characteristic name="light">
|
2018-06-22 20:17:33 -04:00
|
|
|
<turn radius="0:2.0 10:7.5 25:15 45:30" />
|
2018-06-23 10:25:31 -04:00
|
|
|
<engine power="*0.8" max-speed="*0.95" brake-factor="*1"
|
|
|
|
max-speed-reverse-ratio="*0.8" />
|
2018-06-22 20:17:33 -04:00
|
|
|
<gear switch-ratio="0.1 0.25 0.45 0.7 1.0 4.0"
|
|
|
|
power-increase="2.8 2.3 1.9 1.5 1.25 1.0" />
|
|
|
|
<mass value="*0.6" />
|
|
|
|
<startup boost="*1 *1" />
|
|
|
|
<explosion time="*1" radius="*1" />
|
2018-06-22 21:45:26 -04:00
|
|
|
<nitro engine-force="*0.6" max-speed-increase="*0.9" duration="*1" />
|
2018-04-17 21:09:49 -04:00
|
|
|
<slipstream length="*0.9" collect-time="*0.9"
|
|
|
|
duration-factor="*1" fade-out-time="*1" />
|
2015-07-09 19:13:04 -04:00
|
|
|
</characteristic>
|
|
|
|
<characteristic name="medium">
|
2018-09-27 13:41:46 -04:00
|
|
|
<turn radius="0:2.3 10:8.625 25:17.25 45:34.5" />
|
2018-06-23 10:25:31 -04:00
|
|
|
<engine power="*0.875" max-speed="*1" brake-factor="*0.8"
|
|
|
|
max-speed-reverse-ratio="*0.75" />
|
2018-06-22 20:17:33 -04:00
|
|
|
<gear switch-ratio="0.1 0.25 0.45 0.7 1 4"
|
|
|
|
power-increase="2.4 2 1.7 1.4 1.2 1" />
|
|
|
|
<mass value="*0.75" />
|
2018-06-22 21:45:26 -04:00
|
|
|
<startup boost="*0.8 *0.8" />
|
2018-06-22 20:17:33 -04:00
|
|
|
<explosion time="*0.8" radius="*0.8" />
|
2018-06-22 21:45:26 -04:00
|
|
|
<nitro engine-force="*0.75" consumption="*1.25" />
|
2018-04-17 21:09:49 -04:00
|
|
|
<slipstream duration-factor="*0.8" fade-out-time="*1" />
|
2015-07-09 19:13:04 -04:00
|
|
|
</characteristic>
|
2015-07-11 18:39:38 -04:00
|
|
|
<characteristic name="heavy">
|
2018-09-27 13:41:46 -04:00
|
|
|
<turn radius="0:2.6 10:9.75 25:19.5 45:39" />
|
2018-06-22 21:45:26 -04:00
|
|
|
<engine power="*1" max-speed="*1.05" brake-factor="*0.6"
|
2018-06-23 10:25:31 -04:00
|
|
|
max-speed-reverse-ratio="*0.7" />
|
2018-06-22 20:17:33 -04:00
|
|
|
<gear switch-ratio="0.1 0.25 0.45 0.7 1 4"
|
|
|
|
power-increase="2 1.7 1.5 1.3 1.15 1" />
|
2015-07-12 18:23:05 -04:00
|
|
|
<mass value="*1" />
|
2018-06-22 21:45:26 -04:00
|
|
|
<startup boost="*0.6 *0.6" />
|
2018-06-22 20:17:33 -04:00
|
|
|
<explosion time="*0.6" radius="*0.6" />
|
2018-06-22 21:45:26 -04:00
|
|
|
<nitro engine-force="*1" consumption="*1.67" max-speed-increase="*1.1" />
|
2018-04-17 21:09:49 -04:00
|
|
|
<slipstream length="*1.1" collect-time="*1.1"
|
|
|
|
duration-factor="*0.6" fade-out-time="*1" />
|
2015-07-09 19:13:04 -04:00
|
|
|
</characteristic>
|
|
|
|
</kart-types>
|
|
|
|
|
2015-07-09 18:36:50 -04:00
|
|
|
<!-- Per-player settings/handicaps (or boosts) -->
|
|
|
|
<player-characteristics>
|
|
|
|
<characteristic name="normal" />
|
|
|
|
<characteristic name="handicap">
|
2018-04-30 13:13:09 -04:00
|
|
|
<engine power="*0.9" max-speed="*0.9" brake-factor="*0.8" brake-time-increase="*0.85" max-speed-reverse-ratio="*0.8" />
|
2018-09-15 19:36:43 -04:00
|
|
|
<skid time-till-bonus="*1.2 *1.0" bonus-speed="*0.9 *0.8" bonus-force="*0.9 *0.9" />
|
2018-05-01 21:14:53 -04:00
|
|
|
<bubblegum duration="*1.5" torque="*1.5" />
|
|
|
|
<zipper force="*0.8" speed-gain="*0.8" max-speed-increase="*0.8" />
|
|
|
|
<swatter duration="*0.8" squash-duration="*1.3" />
|
2015-07-09 18:36:50 -04:00
|
|
|
<plunger band-max-length="*0.8" band-speed-increase="*0.8" in-face-time="*1.3" />
|
2018-09-15 19:36:43 -04:00
|
|
|
<startup time="*0.8 *0.8" boost="*0.8 *0.8" />
|
2015-07-09 18:36:50 -04:00
|
|
|
<rescue duration="*1.5" />
|
2018-05-01 21:14:53 -04:00
|
|
|
<nitro engine-force="*0.8" max-speed-increase="*0.9" max="*0.8" />
|
|
|
|
<slipstream min-collect-time="*1.2" add-power="*0.9"
|
|
|
|
max-speed-increase="*0.9" duration-factor="*0.9" />
|
2015-07-09 18:36:50 -04:00
|
|
|
</characteristic>
|
|
|
|
</player-characteristics>
|
|
|
|
</characteristics>
|