Add PersistentStatusEffect as typealias

This commit is contained in:
DBotThePony 2024-05-22 19:02:04 +07:00
parent d1865900f6
commit e81079479b
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,11 @@
package ru.dbotthepony.kstarbound.defs.actor
import ru.dbotthepony.kommons.util.Either
import ru.dbotthepony.kstarbound.json.builder.IStringSerializable
// stat modifier or named status effect
typealias PersistentStatusEffect = Either<StatModifier, String>
// uint8_t
enum class Gender(override val jsonName: String) : IStringSerializable {
MALE("Male"), FEMALE("Female");

View File

@ -13,6 +13,7 @@ import ru.dbotthepony.kstarbound.Registry
import ru.dbotthepony.kstarbound.Starbound
import ru.dbotthepony.kstarbound.defs.InteractAction
import ru.dbotthepony.kstarbound.defs.InteractRequest
import ru.dbotthepony.kstarbound.defs.actor.PersistentStatusEffect
import ru.dbotthepony.kstarbound.defs.actor.StatModifier
import ru.dbotthepony.kstarbound.defs.`object`.LoungeOrientation
import ru.dbotthepony.kstarbound.defs.`object`.ObjectDefinition
@ -41,7 +42,7 @@ class LoungeableObject(config: Registry.Entry<ObjectDefinition>) : WorldObject(c
var sitFlipImages = false
private set
val sitStatusEffects = ObjectArraySet<Either<StatModifier, String>>()
val sitStatusEffects = ObjectArraySet<PersistentStatusEffect>()
val sitEffectEmitters = ObjectArraySet<String>()
var sitEmote: String? = null