Add files

This commit is contained in:
2021-11-20 19:48:16 +00:00
parent 20cf2ce26d
commit 454e702dc9
4 changed files with 15 additions and 6 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
+15 -6
View File
@@ -47,14 +47,23 @@ minigunfakeout = do
,Left keyholeCorridor,Left corridor])
`treeFromPost` Right door
centralLasTurret :: Room
centralLasTurret = roomOctogon
rezThenLasTurret :: RandomGen g => State g (Tree (Either Room Room))
rezThenLasTurret = do
rbox <- rezBoxStart
return $ rbox `appendEitherTree` [return $ Right roomOctogon]
startRoom :: RandomGen g => State g (Tree (Either Room Room))
startRoom = join $ takeOne
[ minigunfakeout
, rezBoxesWp
, rezBoxesThenWeaponRoom
, rezBoxThenWeaponRoom
, rezBoxesWpCrit
, runPastStart
[ rezThenLasTurret
--,minigunfakeout
--, rezBoxesWp
--, rezBoxesThenWeaponRoom
--, rezBoxThenWeaponRoom
--, rezBoxesWpCrit
--, runPastStart
]
runPastStart :: RandomGen g => State g (Tree (Either Room Room))