* Replaces /image with /mutable_appearance, where appropriate * Update miscellaneous.dm * Delete miscellaneous.dm.rej * Delete pet.dm.rej * Update pet.dm * Update species.dm * Update miscellaneous.dm * Update species.dm * Update miscellaneous.dm * Delete species.dm.rej * Update species.dm pretty sure I got all the indentation correct THIS time, ffs * Update species.dm * Update species.dm fucking tabs man, fucking tabs.
21 lines
578 B
Plaintext
21 lines
578 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/New()
|
|
..()
|
|
if(sample_color)
|
|
var/mutable_appearance/filling = mutable_appearance(icon, "sample-filling")
|
|
filling.color = sample_color
|
|
add_overlay(filling)
|
|
|
|
/obj/item/seeds/sample/get_analyzer_text()
|
|
return " The DNA of this sample is damaged beyond recovery, it can't support life on its own.\n*---------*"
|
|
|
|
/obj/item/seeds/sample/alienweed
|
|
name = "alien weed sample"
|
|
icon_state = "alienweed"
|
|
sample_color = null |