mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 19:44:46 +01:00
toxins.dm
This commit is contained in:
@@ -189,7 +189,7 @@
|
||||
spawn()
|
||||
var/obj/effect/effect/water/splash = new(T)
|
||||
splash.create_reagents(15)
|
||||
splash.reagents.add_reagent("stomacid", 5)
|
||||
splash.reagents.add_reagent(REAGENT_ID_STOMACID, 5)
|
||||
splash.reagents.add_reagent(REAGENT_ID_BLOOD, 10,list("blood_colour" = "#ec4940"))
|
||||
splash.set_color()
|
||||
|
||||
@@ -198,5 +198,5 @@
|
||||
var/obj/effect/decal/cleanable/chemcoating/acid = locate() in T
|
||||
if(!istype(acid))
|
||||
acid = new(T)
|
||||
acid.reagents.add_reagent("stomacid", 5)
|
||||
acid.reagents.add_reagent(REAGENT_ID_STOMACID, 5)
|
||||
acid.update_icon()
|
||||
|
||||
@@ -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(REAGENT_ID_SACID, "mold")
|
||||
my_chems = list(REAGENT_ID_SACID, REAGENT_ID_MOLD)
|
||||
|
||||
/obj/item/projectile/energy/blob/acid/splattering
|
||||
splatter = TRUE
|
||||
@@ -61,7 +61,7 @@
|
||||
/obj/item/projectile/energy/blob/combustible
|
||||
splatter = TRUE
|
||||
flammability = 0.25
|
||||
my_chems = list(REAGENT_ID_FUEL, "mold")
|
||||
my_chems = list(REAGENT_ID_FUEL, REAGENT_ID_MOLD)
|
||||
|
||||
/obj/item/projectile/energy/blob/freezing
|
||||
my_chems = list("frostoil")
|
||||
|
||||
Reference in New Issue
Block a user