[CMM] Implement Nyxborn Behemoth (#10670)

* [CMM] Implement Nyxborn Behemoth

Regroup the different dynamic values for "total mana value of [FILTER]" under a shared class.

* refactor hints inside TotalPermanentsManaValue

* apply review on TotalPermanentsManaValue->copy
This commit is contained in:
Susucre 2023-07-27 18:50:47 +02:00 committed by GitHub
parent 9eb7e2870e
commit c4f13be87f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 197 additions and 152 deletions

View file

@ -28,7 +28,7 @@ public class ValueHint implements Hint {
}
@Override
public Hint copy() {
public ValueHint copy() {
return new ValueHint(this);
}
}