Initial commit of a working state

This commit is contained in:
AlManiak
2024-10-13 22:48:31 +02:00
parent 276b56363c
commit 854a0cf4b4
28 changed files with 821 additions and 311 deletions
+4
View File
@@ -88,6 +88,9 @@ GLOBAL_LIST_INIT(available_ui_styles, list(
var/atom/movable/screen/healthdoll
var/atom/movable/screen/internals
//GS13 Port - Add back Arousal
var/atom/movable/screen/arousal
var/atom/movable/screen/wanted/wanted_lvl
// subtypes can override this to force a specific UI style
var/ui_style
@@ -144,6 +147,7 @@ GLOBAL_LIST_INIT(available_ui_styles, list(
healthdoll = null
wanted_lvl = null
internals = null
arousal = null
lingchemdisplay = null
devilsouldisplay = null
lingstingdisplay = null
+6
View File
@@ -430,6 +430,12 @@
infodisplay += staminabuffer
//END OF CIT CHANGES
//GS13 Port - adds arousal and stamina to hud
arousal = new /atom/movable/screen/arousal()
arousal.icon_state = (owner.canbearoused == 1 ? "arousal0" : "")
arousal.hud = src
infodisplay += arousal
healthdoll = new /atom/movable/screen/healthdoll()
healthdoll.hud = src
infodisplay += healthdoll