[MIRROR] Converts gas, ore, plants and reagent strings to defines (#9611)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2024-12-11 18:11:06 -07:00
committed by GitHub
parent d5b62d4159
commit fd5d9267ff
622 changed files with 11273 additions and 9558 deletions

View File

@@ -13,135 +13,135 @@
/obj/item/storage/pill_bottle/neotane
name = "pill bottle (neo kelotane)"
name = "pill bottle (" + REAGENT_NEOTANE + ")"
desc = "Contains experimental pills, good for soothing burns but tends to mangle the flesh."
starts_with = list(/obj/item/reagent_containers/pill/neotane = 7)
wrapper_color = COLOR_ORANGE
/obj/item/storage/pill_bottle/burncard
name = "pill bottle (burning bicard)"
name = "pill bottle (" + REAGENT_BURNCARD + ")"
desc = "Contains experimental pills, good for sealing cuts and bruises but is quite searing."
starts_with = list(/obj/item/reagent_containers/pill/burncard = 7)
wrapper_color = COLOR_RED
/obj/item/storage/pill_bottle/flamecure
name = "pill bottle (Flame Cure)"
name = "pill bottle (" + REAGENT_FLAMECURE + ")"
desc = "Contains experimental pills, good for searing shut internal wounds."
starts_with = list(/obj/item/reagent_containers/pill/flamecure = 7)
wrapper_color = COLOR_ORANGE
/obj/item/storage/pill_bottle/juggernog
name = "pill bottle (juggernog)"
name = "pill bottle (" + REAGENT_JUGGERNOG + ")"
desc = "Contains experimental pills good for letting folks keep standing underneath relentless pummeling."
starts_with = list(/obj/item/reagent_containers/pill/juggernog = 7)
wrapper_color = COLOR_RED
/obj/item/storage/pill_bottle/curea
name = "pill bottle (curea)"
name = "pill bottle (" + REAGENT_CUREA + ")"
desc = "Contains experimental pills, very effective for frostfly and poisonfly hunting."
starts_with = list(/obj/item/reagent_containers/pill/curea = 7)
wrapper_color = COLOR_BLUE
/obj/item/storage/pill_bottle/souldew
name = "pill bottle (soul dew)"
name = "pill bottle (" + REAGENT_SOULDEW + ")"
desc = "Contains experimental pills, for feeding the dead."
starts_with = list(/obj/item/reagent_containers/pill/souldew = 7)
wrapper_color = COLOR_GREEN
/obj/item/storage/pill_bottle/purifyingagent
name = "pill bottle (purifying agent)"
name = "pill bottle (" + REAGENT_PURIFYINGAGENT + ")"
desc = "Contains experimental pills, having application as an anti-toxin."
starts_with = list(/obj/item/reagent_containers/pill/purifyingagent = 7)
wrapper_color = COLOR_GREEN
/obj/item/storage/pill_bottle/methylphenidate
name = "pill bottle (Methylphenidate)"
name = "pill bottle (" + REAGENT_METHYLPHENIDATE + ")"
desc = "Contains pills used to help a patient concentrate. Usually prescribed for ADHD or similar conditions."
starts_with = list(/obj/item/reagent_containers/pill/methylphenidate = 7)
wrapper_color = COLOR_GUNMETAL
/obj/item/storage/pill_bottle/paroxetine
name = "pill bottle (Paroxetine)"
name = "pill bottle (" + REAGENT_PAROXETINE + ")"
desc = "Contains pills used to help treat severe depression. Side effects can include hallucinations."
starts_with = list(/obj/item/reagent_containers/pill/paroxetine = 7)
wrapper_color = COLOR_GRAY40
/obj/item/storage/pill_bottle/adranol
name = "pill bottle (Adranol)"
name = "pill bottle (" + REAGENT_ADRANOL + ")"
desc = "Contains pills used to help treat jitters, blurred vision, and confusion."
starts_with = list(/obj/item/reagent_containers/pill/adranol = 7)
wrapper_color = COLOR_YELLOW
/obj/item/storage/pill_bottle/aphrodisiac //this is totally first aid shut up
name = "pill bottle (Aphrodisiac)"
name = "pill bottle (" + REAGENT_APHRODISIAC + ")"
desc = "Contains pills used to help get it on."
starts_with = list(/obj/item/reagent_containers/pill/aphrodisiac = 14)
wrapper_color = COLOR_PINK
//Pills
/obj/item/reagent_containers/pill/neotane
name = "Neo Kelotane (10u)"
name = REAGENT_NEOTANE + " (10u)"
desc = "An experimental pill."
icon_state = "pill2"
/obj/item/reagent_containers/pill/neotane/Initialize()
. = ..()
reagents.add_reagent("neotane", 10)
reagents.add_reagent(REAGENT_ID_NEOTANE, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/burncard
name = "Burning Bicard (10u)"
name = REAGENT_BURNCARD + " (10u)"
desc = "An experimental pill."
icon_state = "pill2"
/obj/item/reagent_containers/pill/burncard/Initialize()
. = ..()
reagents.add_reagent("burncard", 10)
reagents.add_reagent(REAGENT_ID_BURNCARD, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/flamecure
name = "Flame Cure (5u)"
name = REAGENT_FLAMECURE + " (5u)"
desc = "An experimental pill."
icon_state = "pill2"
/obj/item/reagent_containers/pill/flamecure/Initialize()
. = ..()
reagents.add_reagent("flamecure", 5)
reagents.add_reagent(REAGENT_ID_FLAMECURE, 5)
color = reagents.get_color()
/obj/item/reagent_containers/pill/juggernog
name = "Juggernog (5u)"
name = REAGENT_JUGGERNOG + " (5u)"
desc = "An experimental pill."
icon_state = "pill2"
/obj/item/reagent_containers/pill/juggernog/Initialize()
. = ..()
reagents.add_reagent("juggernog", 5)
reagents.add_reagent(REAGENT_ID_JUGGERNOG, 5)
color = reagents.get_color()
/obj/item/reagent_containers/pill/curea
name = "Curea (10u)"
name = REAGENT_CUREA + " (10u)"
desc = "An experimental pill."
icon_state = "pill2"
/obj/item/reagent_containers/pill/curea/Initialize()
. = ..()
reagents.add_reagent("curea", 10)
reagents.add_reagent(REAGENT_ID_CUREA, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/souldew
name = "Souldew (10u)"
name = REAGENT_SOULDEW + " (10u)"
desc = "An experimental pill."
icon_state = "pill2"
/obj/item/reagent_containers/pill/souldew/Initialize()
. = ..()
reagents.add_reagent("souldew", 10)
reagents.add_reagent(REAGENT_ID_SOULDEW, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/purifyingagent
name = "Purifying Agent (10u)"
name = REAGENT_PURIFYINGAGENT + " (10u)"
desc = "An expirmental pill."
icon_state = "pill2"
@@ -149,46 +149,46 @@
/obj/item/reagent_containers/pill/purifyingagent/Initialize()
. = ..()
reagents.add_reagent("purifyingagent", 10)
reagents.add_reagent(REAGENT_ID_PURIFYINGAGENT, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/methylphenidate
name = "Methylphenidate (10u)"
name = REAGENT_METHYLPHENIDATE + " (10u)"
desc = "A pill to help you concentrate."
icon_state = "pill2"
/obj/item/reagent_containers/pill/methylphenidate/Initialize()
. = ..()
reagents.add_reagent("methylphenidate", 10)
reagents.add_reagent(REAGENT_ID_METHYLPHENIDATE, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/paroxetine
name = "Paroxetine (10u)"
name = REAGENT_PAROXETINE + " (10u)"
desc = "A pill to help treat severe depression."
icon_state = "pill2"
/obj/item/reagent_containers/pill/paroxetine/Initialize()
. = ..()
reagents.add_reagent("paroxetine", 10)
reagents.add_reagent(REAGENT_ID_PAROXETINE, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/adranol
name = "Adranol (10u)"
name = REAGENT_ADRANOL + " (10u)"
desc = "A pill to help treat jitters, confusion, and blurred vision."
icon_state = "pill2"
/obj/item/reagent_containers/pill/adranol/Initialize()
. = ..()
reagents.add_reagent("adranol", 10)
reagents.add_reagent(REAGENT_ID_ADRANOL, 10)
color = reagents.get_color()
/obj/item/reagent_containers/pill/aphrodisiac
name = "Aphrodisiac (20u)"
name = REAGENT_APHRODISIAC + " (20u)"
desc = "Just one couldn't hurt, right?"
icon_state = "pill2"
/obj/item/reagent_containers/pill/aphrodisiac/Initialize()
. = ..()
reagents.add_reagent("aphrodisiac", 20)
color = reagents.get_color()
reagents.add_reagent(REAGENT_ID_APHRODISIAC, 20)
color = reagents.get_color()