Updated Floor configuration (markdown)

Daniel Saukel 2021-08-14 17:44:33 +02:00
parent 6c13cd9753
commit a8b5ca38ed

@ -217,3 +217,21 @@ thunder: true
time: 20000 time: 20000
``` ```
New in an upcoming version:
```
requirements:
# Time in hours until a player can play this dungeon again
# This prevents players from playing the dungeon again if they started the dungeon,
# no matter if they finished, left it or got kicked.
timeSinceStart: 0.05 # 3 minutes
# This only prevents players from playing the dungeon again if they finished it correctly.
# If they leave it or get kicked, players can always retry a dungeon.
timeSinceFinish: 24.0
# Players must have finished all of the following dungeons at least once:
finishedDungeons:
- Test1 # Test1
- Test2/Test3 # AND EITHER Test2 and Test3
- 7:Test4 # and Test4 within the last 7 hours
- 0.05:Test5 # and Test5 within the last 3 minutes
```