Add new kits & recraft nerf

This commit is contained in:
TDSTOS
2025-12-09 16:06:17 +01:00
parent cb788930ad
commit 7e54c8e9f1
9 changed files with 532 additions and 14 deletions

View File

@@ -110,6 +110,13 @@ class GameManager(
!( currentState as BattleState ).afterFeast )
}
fun isBefore(
stateType: GameStateTypes
): Boolean
{
return getCurrentStateType()?.points!! < stateType.points
}
fun shutdown()
{
currentState?.onExit( null )
@@ -118,6 +125,14 @@ class GameManager(
}
enum class GameStateTypes {
WAITING, PRE_START, IMMUNITY, BATTLE, FEAST, DEATHMATCH, END
enum class GameStateTypes(
val points: Int
) {
WAITING( 0 ),
PRE_START( 1 ),
IMMUNITY( 2 ),
BATTLE( 3 ),
FEAST( 4 ),
DEATHMATCH( 5 ),
END( 6 )
}