Skip to content

Commit

Permalink
Tweak levels by makign them a bit easier
Browse files Browse the repository at this point in the history
  • Loading branch information
Enet4 committed Nov 28, 2024
1 parent 7cd5ac1 commit 25327c1
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions src/live/levels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ impl LevelSpec {
// the level where we start having fractions
LevelSpec {
corridor_length: 180.,
rng_seed: 0x3454_4321,
rng_seed: 0x3454_4321_ffff,
things: vec![
// spawn a 1/3 cube
(
Expand All @@ -481,7 +481,7 @@ impl LevelSpec {
0.3,
MobSpawner::new(
20,
1.75,
2.,
[
// 1/3
frac!(1 / 3),
Expand Down Expand Up @@ -511,7 +511,7 @@ impl LevelSpec {
0.7,
MobSpawner::new(
20,
1.5,
1.8,
[
// 1/3
frac!(1 / 3),
Expand Down Expand Up @@ -590,7 +590,7 @@ impl LevelSpec {
0.3,
MobSpawner::new(
16,
1.5,
1.7,
[
// 1/2
frac!(1 / 2),
Expand Down Expand Up @@ -646,7 +646,7 @@ impl LevelSpec {
0.7,
MobSpawner::new(
22,
1.5,
1.66,
[
// 2
frac!(4 / 2),
Expand Down Expand Up @@ -726,7 +726,7 @@ impl LevelSpec {
0.3,
MobSpawner::new(
16,
1.5,
1.7,
[
// 1/3
frac!(1 / 3),
Expand Down Expand Up @@ -782,7 +782,7 @@ impl LevelSpec {
0.7,
MobSpawner::new(
22,
1.5,
1.66,
[
// 2
frac!(4 / 2),
Expand Down Expand Up @@ -850,13 +850,11 @@ impl LevelSpec {
rng_seed: 0,
things: vec![(
0.,
InterludeSpec::from_sequence_and_exit(
([
(include_str!("interludes/z_bedroom_1.txt"), None),
(include_str!("interludes/z_bedroom_2.txt"), None),
(include_str!("interludes/z_bedroom_3.txt"), None),
]),
),
InterludeSpec::from_sequence_and_exit([
(include_str!("interludes/z_bedroom_1.txt"), None),
(include_str!("interludes/z_bedroom_2.txt"), None),
(include_str!("interludes/z_bedroom_3.txt"), None),
]),
)
.into()],
}
Expand Down

0 comments on commit 25327c1

Please sign in to comment.