1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-27 03:47:40 +00:00

missile rapidity and particle settings

This commit is contained in:
Zeno Rogue
2022-09-18 13:14:46 +02:00
parent 707247d297
commit 62996d0d4c
5 changed files with 54 additions and 7 deletions

View File

@@ -86,6 +86,16 @@ bool auto_angle = true;
ld rock_density = 0.25;
ld rock_max_rapidity = 1.5;
ld missile_rapidity = 3; // speed is tanh(3) = about 0.95c
ld crash_particle_rapidity = 1;
ld crash_particle_qty = 8;
ld crash_particle_life = .5;
ld fuel_particle_rapidity = 1;
ld fuel_particle_qty = 20;
ld fuel_particle_life = .15;
cell *starting_point;
}}