mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-30 16:48:12 +01:00
[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:
co-authored by
Heroman3003
Kashargul
parent
d5b62d4159
commit
fd5d9267ff
@@ -222,7 +222,7 @@
|
||||
if(do_after(src, 30, A))
|
||||
|
||||
visible_message(span_notice("[src] fertilizes \the [A]."))
|
||||
T.reagents.add_reagent("ammonia", 10)
|
||||
T.reagents.add_reagent(REAGENT_ID_AMMONIA, 10)
|
||||
|
||||
busy = 0
|
||||
action = ""
|
||||
|
||||
@@ -32,12 +32,12 @@
|
||||
var/injection_amount = 15 //How much reagent do we inject at a time?
|
||||
var/heal_threshold = 10 //Start healing when they have this much damage in a category
|
||||
var/use_beaker = 0 //Use reagents in beaker instead of default treatment agents.
|
||||
var/treatment_brute = "tricordrazine"
|
||||
var/treatment_oxy = "tricordrazine"
|
||||
var/treatment_fire = "tricordrazine"
|
||||
var/treatment_tox = "tricordrazine"
|
||||
var/treatment_virus = "spaceacillin"
|
||||
var/treatment_emag = "toxin"
|
||||
var/treatment_brute = REAGENT_ID_TRICORDRAZINE
|
||||
var/treatment_oxy = REAGENT_ID_TRICORDRAZINE
|
||||
var/treatment_fire = REAGENT_ID_TRICORDRAZINE
|
||||
var/treatment_tox = REAGENT_ID_TRICORDRAZINE
|
||||
var/treatment_virus = REAGENT_ID_SPACEACILLIN
|
||||
var/treatment_emag = REAGENT_ID_TOXIN
|
||||
var/declare_treatment = 0 //When attempting to treat a patient, should it notify everyone wearing medhuds?
|
||||
|
||||
// Are we tipped over?
|
||||
@@ -53,10 +53,10 @@
|
||||
name = "\improper Mysterious Medibot"
|
||||
desc = "International Medibot of mystery."
|
||||
skin = "bezerk"
|
||||
treatment_brute = "bicaridine"
|
||||
treatment_fire = "dermaline"
|
||||
treatment_oxy = "dexalin"
|
||||
treatment_tox = "anti_toxin"
|
||||
treatment_brute = REAGENT_ID_BICARIDINE
|
||||
treatment_fire = REAGENT_ID_DERMALINE
|
||||
treatment_oxy = REAGENT_ID_DEXALIN
|
||||
treatment_tox = REAGENT_ID_ANTITOXIN
|
||||
|
||||
/mob/living/bot/medbot/handleIdle()
|
||||
if(is_tipped) // Don't handle idle things if we're incapacitated!
|
||||
|
||||
Reference in New Issue
Block a user