mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-29 19:11:51 +00:00
* A Big Hydroponics Update: A Rose by any other name (2 new plants, 4 new traits, new genes, and more!) * Update grafts.dm * Update grafts.dm Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Co-authored-by: Gandalf2k15 <jzo123@hotmail.com>
22 lines
583 B
Plaintext
22 lines
583 B
Plaintext
/obj/item/seeds/sample
|
|
name = "plant sample"
|
|
icon_state = "sample-empty"
|
|
potency = -1
|
|
yield = -1
|
|
var/sample_color = "#FFFFFF"
|
|
|
|
/obj/item/seeds/sample/Initialize()
|
|
. = ..()
|
|
if(sample_color)
|
|
var/mutable_appearance/filling = mutable_appearance(icon, "sample-filling")
|
|
filling.color = sample_color
|
|
add_overlay(filling)
|
|
|
|
/obj/item/seeds/sample/get_unique_analyzer_text()
|
|
return "The DNA of this sample is damaged beyond recovery, it can't support life on its own."
|
|
|
|
/obj/item/seeds/sample/alienweed
|
|
name = "alien weed sample"
|
|
icon_state = "alienweed"
|
|
sample_color = null
|