mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
17 lines
365 B
Plaintext
17 lines
365 B
Plaintext
/*
|
|
Xenobiological product lives here as a basic type.
|
|
*/
|
|
/obj/item/xenoproduct
|
|
name = "Xenobiological product"
|
|
desc = "How did this get here?."
|
|
icon = 'icons/mob/slime2.dmi'
|
|
icon_state = "slime extract"
|
|
var/datum/xeno/traits/traits
|
|
var/source = "Unknown"
|
|
var/product = "mess"
|
|
var/nameVar = "blah"
|
|
|
|
/obj/item/xenoproduct/Destroy()
|
|
QDEL_NULL(traits)
|
|
..()
|
|
|