[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

@@ -9,7 +9,7 @@
fire_sound = 'sound/effects/slime_squish.ogg'
var/splatter = FALSE // Will this make a cloud of reagents?
var/splatter_volume = 5 // The volume of its chemical container, for said cloud of reagents.
var/list/my_chems = list("mold")
var/list/my_chems = list(REAGENT_ID_MOLD)
/obj/item/projectile/energy/blob/splattering
splatter = TRUE
@@ -45,7 +45,7 @@
/obj/item/projectile/energy/blob/toxic
damage_type = TOX
check_armour = "bio"
my_chems = list("amatoxin")
my_chems = list(REAGENT_ID_AMATOXIN)
/obj/item/projectile/energy/blob/toxic/splattering
splatter = TRUE
@@ -53,7 +53,7 @@
/obj/item/projectile/energy/blob/acid
damage_type = BURN
check_armour = "bio"
my_chems = list("sacid", "mold")
my_chems = list(REAGENT_ID_SACID, REAGENT_ID_MOLD)
/obj/item/projectile/energy/blob/acid/splattering
splatter = TRUE
@@ -61,10 +61,10 @@
/obj/item/projectile/energy/blob/combustible
splatter = TRUE
flammability = 0.25
my_chems = list("fuel", "mold")
my_chems = list(REAGENT_ID_FUEL, REAGENT_ID_MOLD)
/obj/item/projectile/energy/blob/freezing
my_chems = list("frostoil")
my_chems = list(REAGENT_ID_FROSTOIL)
modifier_type_to_apply = /datum/modifier/chilled
modifier_duration = 0.25 MINUTE //CHOMPedit: Determined to be to long of a slowdown time.