Gremorian Bombardier Acid (#21123)

Gremorians now have a special acid instead of just capsaicin, making it
more of a threat


https://github.com/user-attachments/assets/19a74317-debb-4d17-b62c-002e0df1bace

---------

Co-authored-by: Ben10083 <Ben10083@users.noreply.github.com>
This commit is contained in:
Ben
2025-08-10 15:59:01 +00:00
committed by GitHub
co-authored by Ben10083
parent 5879254629
commit 17d545f40a
3 changed files with 74 additions and 5 deletions
@@ -130,7 +130,7 @@
/mob/living/simple_animal/hostile/giant_spider/bombardier
name = "greimorian bombardier"
desc = "A disgusting crawling Greimorian. This one has vents that shoot out condensed capsaicin."
desc = "A disgusting crawling Greimorian. This one has vents that shoot out acid."
icon_state = "greimorian_bombardier"
icon_living = "greimorian_bombardier"
icon_dead = "greimorian_bombardier_dead"
@@ -141,10 +141,10 @@
armor_penetration = 5
ranged = TRUE
ranged_attack_range = 4
poison_type = /singleton/reagent/capsaicin/condensed
poison_type = /singleton/reagent/acid/greimorian
poison_per_bite = 2
speed = 5
sample_data = list("Genetic markers identified as being linked with stem cell differentiaton", "Exocrinic caspaicin synthesis detected")
sample_data = list("Genetic markers identified as being linked with stem cell differentiaton", "Exocrinic acid synthesis detected")
smart_melee = TRUE
/mob/living/simple_animal/hostile/giant_spider/bombardier/Shoot(var/target, var/start, var/mob/user, var/bullet = 0)
@@ -155,8 +155,8 @@
var/turf/target_turf = get_turf(target)
var/obj/effect/effect/water/chempuff/pepperspray = new /obj/effect/effect/water/chempuff(get_turf(src))
pepperspray.create_reagents(15)
pepperspray.reagents.add_reagent(poison_type, 15)
pepperspray.create_reagents(10)
pepperspray.reagents.add_reagent(poison_type, 10)
pepperspray.set_color()
pepperspray.set_up(target_turf, 3, 5)
@@ -548,6 +548,17 @@ ABSTRACT_TYPE(/singleton/reagent/alcohol)
color = "#d8ff00"
value = 0
/// Acid used by Greimorians. More toxic but significantly less acidic
/singleton/reagent/acid/greimorian
name = "Greimorian Acid"
description = "Greimorian acid commonly used by bombardiers. Very toxic but hardly acidic."
taste_description = "coppery foulness"
reagent_state = LIQUID
color = "#aecc04"
power = 2
meltdose = 100 // it fires 15u per shot, this needs to be very high
value = 2
/singleton/reagent/silicon
name = "Silicon"
description = "A tetravalent metalloid, silicon is less reactive than its chemical analog carbon."