mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
21 lines
520 B
Plaintext
21 lines
520 B
Plaintext
|
|
/obj/item/poi
|
|
icon = 'icons/obj/objects.dmi'
|
|
desc = "This is definitely something cool."
|
|
|
|
/obj/item/poi/pascalb
|
|
icon_state = "pascalb"
|
|
name = "Misshapen Manhole Cover"
|
|
desc = "The top of this twisted chunk of metal is faintly stamped with a five pointed star. 'Property of US Army, Pascal B - 1957'."
|
|
|
|
/obj/item/poi/pascalb/New()
|
|
processing_objects += src
|
|
return ..()
|
|
|
|
/obj/item/poi/pascalb/process()
|
|
radiation_repository.radiate(src, 5)
|
|
|
|
/obj/item/poi/pascalb/Destroy()
|
|
processing_objects -= src
|
|
return ..()
|