mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-30 19:41:56 +00:00
## About The Pull Request stop forgetting to include mapload, if you don't include it then every single subtype past it by default doesn't include it for example, `obj/item` didn't include mapload so every single item by default didn't fill in mapload  ## Regex used: procs without args, not even regex `/Initialize()` procs with args `\/Initialize\((?!mapload)((.)*\w)?` cleanup of things i didn't want to mapload: `\/datum\/(.)*\/Initialize\(mapload`
22 lines
590 B
Plaintext
22 lines
590 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(mapload)
|
|
. = ..()
|
|
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
|