Edit BarbassaultSession.kt

This commit is contained in:
Tooze 2026-01-30 23:57:48 +00:00
parent 6496b72739
commit d5f7f00a84

View file

@ -317,10 +317,10 @@ class BarbassaultSession( val activity: BarbassaultActivity ? = null) : MapArea
val roleCalls: MutableMap<BarbRole, RoleCall<*>> = mutableMapOf()
interface HasUIText { val ui: String }
enum class AttackerStyle(val top: String, val bottom: String) : HasUIText {
STYLE_1("Controlled/","Bronze/Wind"),
STYLE_2("Accurate/","Iron/Water"),
STYLE_3("Aggressive/","Steel/Earth"),
STYLE_4("Defensive/","Mithril/Fire");
Style_1("Controlled/","Bronze/Wind"),
Style_2("Accurate/","Iron/Water"),
Style_3("Aggressive/","Steel/Earth"),
Style_4("Defensive/","Mithril/Fire");
override val ui: String get() = top
}
enum class EggColor(override val ui: String): HasUIText { RED("Red Eggs"), GREEN("Green Eggs"),BLUE("Blue Eggs") }