Difficulty scaling tweaks

This commit is contained in:
Anuken
2024-09-13 21:42:00 -04:00
parent 5ac7f204e3
commit 6b93873fce

View File

@ -6,8 +6,8 @@ public enum Difficulty{
//TODO these need tweaks //TODO these need tweaks
easy(1f, 0.75f, 1.5f), easy(1f, 0.75f, 1.5f),
normal(1f, 1f, 1f), normal(1f, 1f, 1f),
hard(1.25f, 1.5f, 0.6f), hard(1.25f, 1.5f, 0.75f),
eradication(1.5f, 2f, 0.4f); eradication(1.5f, 2f, 0.5f);
public static final Difficulty[] all = values(); public static final Difficulty[] all = values();