Okay, I did not expect to go from ‘hit by a truck’ straight into ‘dating a literal homicidal scorpion girl,’ but here we are 
for fp in ./game/chapters/*.rpy; do echo $fp; sed -ri 's/\{w=([\d]*)(\.{0,1}\d{0})?\}//g' "$fp"; done
Thank you for this, and thank you double for including the code snippet. I will try and find a way to program this as an option into my next game.What a weirdly adorable game.
Also minor nit but I found the text delays a little annoying, even with max text speed. Only workaround I could find was decompiling the rpyc files under /game/chapters and replacing {w=12345} with {w=0}
If anyone has a better way of patching the script text (especially rpyc's and at runtime), please let me know.Code:for fp in ./game/chapters/*.rpy; do echo $fp; sed -ri 's/\{w=([\d]*)(\.{0,1}\d{0})?\}//g' "$fp"; done