Files
CHOMPStation2/code/modules/xenobio2/mob/xeno_product.dm
Datraen 78e63a00a4 Xenobio2 Update #7 (#1910)
* Ensures cores, slimes cannot be used twice in their machines.

* Fixes xenos appearing friendly, simple_mob death problems.

Simple mobs that were dead and not of the hostile subtype wouldn't call walk(src,0), which prevents corpses from following their target.

* Cleans up trait data when a xeno or xeno product is removed.

* Slimes more likely to have amutationtoxin, consumes virusfood.

* Fixes some issues.

* Adds changelog
2016-06-10 19:28:59 +01:00

18 lines
424 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()
traits.Destroy() //Let's not leave any traits hanging around.
traits = null
..()