[OC2] Difficulty Adjustment/Documentation (#1278)

* Slightly relax difficulty of final level

* Table to help translate player skill to yaml setting
This commit is contained in:
toasterparty 2022-11-30 18:44:08 -08:00 committed by GitHub
parent fd8867c782
commit f0e9080108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -411,7 +411,7 @@ class Overcooked2World(World):
# Game Modifications
"LevelPurchaseRequirements": level_purchase_requirements,
"Custom66TimerScale": max(0.4, (1.0 - star_threshold_scale)),
"Custom66TimerScale": max(0.4, 0.25 + (1.0 - star_threshold_scale)*0.6),
"CustomLevelOrder": custom_level_order,

View File

@ -84,3 +84,14 @@ In addition to shuffling items, the following changes are applied to the game:
- 1-Star/2-Star scores are much closer to the 3-Star Score
- Significantly reduced the time allotted to beat the final level
- Reduced penalty for expired order
## Difficulty Table
Before generating your first seed, you can use the following table to determine what difficulty is appropriate for your personal Overcooked! journey.
| Vanilla Game | Star Difficulty % |
| ----------- | ----------- |
| First Playthrough | 10-25% |
| 3-Star | 25-40% |
| 4-Star | 40-55% |
| Community-Optimized Strats | 55%+ |