#Speed & WalkSpeed
Two different things share the word "speed" in this game, worth knowing before you touch anything:
- Speed — a currency, gained from walking over generated keyboard tiles.
Config.Progression.SpeedPerKeyis the base grant per key press; a cooldown (Config.Keyboard) stops one key from being farmed by standing still. - WalkSpeed — the player's actual movement speed, driven only by Level:
MaxWalkSpeed = BaseWalkSpeed + (Level - 1) * WalkSpeedPerLevel, capped atMaxWalkSpeedCap. Shipped values:BaseWalkSpeed = 12,WalkSpeedPerLevel = 2,MaxWalkSpeedCap = 300(reached at Level 145).
Speed fills level progress; leveling up is what raises the WalkSpeed cap. Every multiplier on Gain Multipliers affects Speed gain only — never WalkSpeed directly.
All three numbers (BaseWalkSpeed, WalkSpeedPerLevel, MaxWalkSpeedCap) live in Config.Progression —
change them there, nothing else needs to know.