aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-04-02 22:46:40 +0200
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-04-02 22:46:40 +0200
commit99530bd47e9afa793ee6262bec03cd112441a120 (patch)
tree08ab6d5c914378c3c46e12f6ac65e9efb2f01681 /config
parent9e22002d28a095bc2f39154535e8612d0fe004d6 (diff)
downloadjetpac.nes-99530bd47e9afa793ee6262bec03cd112441a120.tar.gz
jetpac.nes-99530bd47e9afa793ee6262bec03cd112441a120.zip
config: Reduce the velocities when airborne
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'config')
-rw-r--r--config/values.yml6
-rw-r--r--config/values/player.s12
2 files changed, 9 insertions, 9 deletions
diff --git a/config/values.yml b/config/values.yml
index 2471e15..f2f0f45 100644
--- a/config/values.yml
+++ b/config/values.yml
@@ -9,17 +9,17 @@
player:
# Gravity and initial velocity when throttling from the ground.
- gravity: 2.50
+ gravity: 1.83
blast_off: -1.50
# Thrust/flying
- thrust: -2.90
+ thrust: -2.00
fly_left: -2.90
fly_right: 1.90
# Walking constant velocities.
walk_left: -1.80
- walk_right: 0.80
+ walk_right: 0.93
# Horizontal bounces
bounce_left: -2.53
diff --git a/config/values/player.s b/config/values/player.s
index 8798ea3..a50d3e3 100644
--- a/config/values/player.s
+++ b/config/values/player.s
@@ -2,25 +2,25 @@
;; DO NOT MODIFY this file directly: check config/values.yml instead.
.ifdef PAL
- GRAVITY = $30
+ GRAVITY = $23
BLAST_OFF = $F3
- THRUST = $D8
+ THRUST = $E9
FLY_LEFT = $D8
FLY_RIGHT = $24
WALK_LEFT = $ED
- WALK_RIGHT = $0E
+ WALK_RIGHT = $12
BOUNCE_LEFT = $DE
BOUNCE_RIGHT = $1D
REDUCE_FULL_SPEED = $13
REDUCE_MID_SPEED = $0A
.else
- GRAVITY = $28
+ GRAVITY = $1C
BLAST_OFF = $F8
- THRUST = $E2
+ THRUST = $E0
FLY_LEFT = $E2
FLY_RIGHT = $1D
WALK_LEFT = $F3
- WALK_RIGHT = $0C
+ WALK_RIGHT = $0E
BOUNCE_LEFT = $E7
BOUNCE_RIGHT = $18
REDUCE_FULL_SPEED = $10