GM Tool - Create Medical Issue (#18033)

* WIP medical issue GM tool

* Progress

* Basics are now working

* Surgery!

Needs more testing for each step, but the few I tried worked fine.

* body scanner complete

* Completed and tested!

* Fixes my terrible TGUI stuff
This commit is contained in:
SatinIsle
2025-07-24 13:06:18 +01:00
committed by GitHub
parent 9ad3f37be4
commit 2aca759d6a
10 changed files with 752 additions and 3 deletions
+12
View File
@@ -478,6 +478,18 @@
Tar.ingested.clear_reagents()
Tar.touching.clear_reagents()
if("medical_issue")
var/mob/living/carbon/human/Tar = target
if(!istype(Tar))
return
Tar.custom_medical_issue(user)
if("clear_issue")
var/mob/living/carbon/human/Tar = target
if(!istype(Tar))
return
Tar.clear_medical_issue(user)
////////ABILITIES//////////////
if("vent_crawl")