Balanced frequency of dungeons.

This commit is contained in:
Sam 2021-09-11 18:59:04 -04:00
parent e4716147a7
commit 9e9fba7704
2 changed files with 7 additions and 6 deletions

View File

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
- Made dungeon tiers 3, 4, and 5 more common
### Removed

View File

@ -16,10 +16,10 @@
/// 1) Set every probability to 0.0 and left one with any other number
/// and you will have map full of dungeons of same level
([
(0, 0.3),
(1, 0.2),
(2, 0.05),
(3, 0.05),
(4, 0.1),
(5, 0.3),
(0, 0.20),
(1, 0.15),
(2, 0.15),
(3, 0.15),
(4, 0.15),
(5, 0.20),
])