Cover emits low-level radiation

This commit is contained in:
Cerebulon
2018-01-21 06:53:15 +00:00
parent 53e546c526
commit cd80242b81
4 changed files with 41 additions and 6 deletions

View File

@@ -1,9 +1,20 @@
/obj/item/poi/pascalb
/obj/item/poi
icon = 'icons/obj/objects.dmi'
desc = "This is definitely something cool."
/obj/item/poi/pascalb
icon_state = "pascalb"
name = "Charred 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'."
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'."
object/item/poi/pascalb/process()
/obj/item/poi/pascalb/New()
processing_objects += src
return ..()
radiation_repository.radiate(src, 5)
/obj/item/poi/pascalb/process()
radiation_repository.radiate(src, 5)
/obj/item/poi/pascalb/Destroy()
processing_objects -= src
return ..()