mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 17:51:17 +00:00
* Handlers converted, now to fix 3532 compile errors * 3532 compile fixes later, got runtimes on startup * Well the server loads now atleast * Take 2 * Oops
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
GLOBAL_LIST_INIT(chem_t1_reagents, list(
|
|
"hydrogen", "oxygen", "silicon",
|
|
"phosphorus", "sulfur", "carbon",
|
|
"nitrogen", "water"
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(chem_t2_reagents, list(
|
|
"lithium", "copper", "mercury",
|
|
"sodium", "iodine", "bromine"
|
|
)) // "sugar", "sacid" removed because they are already in roundstart plants
|
|
|
|
GLOBAL_LIST_INIT(chem_t3_reagents, list(
|
|
"ethanol", "chlorine", "potassium",
|
|
"aluminum", "radium", "fluorine",
|
|
"iron", "fuel", "silver",
|
|
"stable_plasma"
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(chem_t4_reagents, list(
|
|
"oil", "ash", "acetone",
|
|
"saltpetre", "ammonia", "diethylamine"
|
|
))
|
|
|
|
/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/image/I = image(icon, icon_state = "sample-filling")
|
|
I.color = sample_color
|
|
overlays += I
|
|
|
|
/obj/item/seeds/sample/get_analyzer_text()
|
|
return " The DNA of this sample is damaged beyond recovery, it can't support life on it's own.\n*---------*"
|
|
|
|
/obj/item/seeds/sample/alienweed
|
|
name = "alien weed sample"
|
|
icon_state = "alienweed"
|
|
sample_color = null
|