Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

[MODULAR] Overpowered spit for Queen #116

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

sunder_recover = 1.5

spit_types = list(/datum/ammo/xeno/sticky, /datum/ammo/xeno/acid/medium, /datum/ammo/xeno/acid/royal)

actions = list(
/datum/action/xeno_action/xeno_resting,
/datum/action/xeno_action/activable/psydrain,
Expand Down
13 changes: 13 additions & 0 deletions modular_RUtgmc/code/modules/projectiles/ammo_datums.dm
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,16 @@
if(T.density)
return
new /obj/effect/xenomorph/spray/weak(T, puddle_duration, puddle_acid_damage)

/datum/ammo/xeno/acid/royal
name = "royal spit"
icon_state = "xeno_acid_royal"
added_spit_delay = 4 SECONDS
fe-ed marked this conversation as resolved.
Show resolved Hide resolved
spit_cost = 100
damage = 25
flags_ammo_behavior = AMMO_XENO
bullet_color = COLOR_LIGHT_ORANGE

/datum/ammo/xeno/acid/royal/on_hit_mob(mob/M, obj/projectile/P)
staggerstun(M, P, weaken = 2 SECONDS)

Binary file modified modular_RUtgmc/icons/Xeno/actions.dmi
Binary file not shown.
Binary file modified modular_RUtgmc/icons/obj/items/projectiles.dmi
Binary file not shown.
Loading