mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
Fan Hud (#50649)
* Should be ready to test The compiler is throwing a tantrum so I'm committing here to debug. * Merges hud.dmi with upstream * adjustments fixes some typos, adds a blank hud image for fanpinless crew * It builds * runtimes it doesn't actually work yet, just compiles * Progress More runtimes removed * It all works, runtimes sorted pins made to not go above suit * Update code/game/data_huds.dm Adds Rohesie's suggestion Co-Authored-By: Rohesie <rohesie@gmail.com> * Makes requested change Thanks Rohesie! Co-Authored-By: Rohesie <rohesie@gmail.com> * Makes requested changes Thank you Rohesie! Co-authored-by: Rohesie <rohesie@gmail.com>
This commit is contained in:
@@ -13,6 +13,7 @@ GLOBAL_LIST_INIT(huds, list(
|
||||
DATA_HUD_ABDUCTOR = new/datum/atom_hud/abductor(),
|
||||
DATA_HUD_SENTIENT_DISEASE = new/datum/atom_hud/sentient_disease(),
|
||||
DATA_HUD_AI_DETECT = new/datum/atom_hud/ai_detector(),
|
||||
DATA_HUD_FAN = new/datum/atom_hud/data/human/fan_hud(),
|
||||
ANTAG_HUD_CULT = new/datum/atom_hud/antag(),
|
||||
ANTAG_HUD_REV = new/datum/atom_hud/antag(),
|
||||
ANTAG_HUD_OPS = new/datum/atom_hud/antag(),
|
||||
|
||||
@@ -76,6 +76,8 @@ datum/quirk/fan_clown
|
||||
"hands" = ITEM_SLOT_HANDS,
|
||||
)
|
||||
H.equip_in_one_of_slots(B, slots , qdel_on_fail = TRUE)
|
||||
var/datum/atom_hud/fan = GLOB.huds[DATA_HUD_FAN]
|
||||
fan.add_hud_to(H)
|
||||
|
||||
datum/quirk/fan_mime
|
||||
name = "Mime Fan"
|
||||
@@ -94,6 +96,8 @@ datum/quirk/fan_mime
|
||||
"hands" = ITEM_SLOT_HANDS,
|
||||
)
|
||||
H.equip_in_one_of_slots(B, slots , qdel_on_fail = TRUE)
|
||||
var/datum/atom_hud/fan = GLOB.huds[DATA_HUD_FAN]
|
||||
fan.add_hud_to(H)
|
||||
|
||||
/datum/quirk/freerunning
|
||||
name = "Freerunning"
|
||||
|
||||
Reference in New Issue
Block a user