mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-07-19 20:14:24 +01:00
b594520a74
* next set of spans * some more * next * next * next * . * text... * next... rest soon * . * . * ok last set for the night * . * . * . * . * some more * next * next * all for now * . * some more easy ones * some more easy ones * . * . * some more bolds * oups auto complete moment * add the remaining spans * this as well * this as well * . * ., * resync them properly
22 lines
531 B
Plaintext
22 lines
531 B
Plaintext
/obj/effect/manifest
|
|
name = "manifest"
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x"
|
|
unacidable = TRUE//Just to be sure.
|
|
|
|
/obj/effect/manifest/New()
|
|
|
|
src.invisibility = 101
|
|
return
|
|
|
|
/obj/effect/manifest/proc/manifest()
|
|
var/dat = span_bold("Crew Manifest") + ":<BR>"
|
|
for(var/mob/living/carbon/human/M in mob_list)
|
|
dat += text(" <B>[]</B> - []<BR>", M.name, M.get_assignment())
|
|
var/obj/item/paper/P = new /obj/item/paper( src.loc )
|
|
P.info = dat
|
|
P.name = "paper- 'Crew Manifest'"
|
|
//SN src = null
|
|
qdel(src)
|
|
return
|