mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Tesh wings/tails/antenna time
This commit is contained in:
@@ -169,4 +169,29 @@ var/eggs = 0
|
||||
layeggs--
|
||||
|
||||
return
|
||||
*/
|
||||
*/
|
||||
|
||||
/mob/living/proc/insect_sting()
|
||||
set name = "Insect Sting"
|
||||
set desc = "Sting a target and inject a small amount of toxin"
|
||||
set category = "Abilities"
|
||||
|
||||
if(last_special > world.time)
|
||||
return
|
||||
|
||||
var/list/victims = list()
|
||||
for(var/mob/living/carbon/C in oview(1))
|
||||
victims += C
|
||||
var/mob/living/carbon/T = input(src, "Who will we sting?") as null|anything in victims
|
||||
|
||||
if(!T)
|
||||
return
|
||||
if(T.isSynthetic())
|
||||
to_chat(src, "<span class='notice'>We are unable to pierce the outer shell of [T].</span>")
|
||||
return
|
||||
|
||||
to_chat(src, "<span class='notice'>You jab your stinger into [T].</span>")
|
||||
to_chat(T, "<span class='danger'>You feel a stabbing pain as you are stung!</span>")
|
||||
src.visible_message("<font color='red'>[src] sinks their stinger into [T]!</font>")
|
||||
T.bloodstr.add_reagent("condensedcapsaicin_v",3)
|
||||
last_special = world.time + 50 // Many little jabs instead of one big one
|
||||
|
||||
@@ -16,6 +16,15 @@
|
||||
..(S,H)
|
||||
H.verbs |= /mob/living/proc/succubus_bite
|
||||
|
||||
/datum/trait/insect_sting
|
||||
name = "Insect Sting"
|
||||
desc = "Allows you to sting your victim with a smalll amount of poison"
|
||||
cost = 0
|
||||
|
||||
/datum/trait/insect_sting/apply(var/datum/species/S,var/mob/living/carbon/human/H)
|
||||
..(S,H)
|
||||
H.verbs |= /mob/living/proc/insect_sting
|
||||
|
||||
/datum/trait/nutritiongrow
|
||||
name = "Growing"
|
||||
desc = "After you consume enough nutrition, you start to slowly grow while metabolizing nutrition faster."
|
||||
@@ -38,4 +47,4 @@
|
||||
name = "Singularity Metabolism"
|
||||
desc = "You are insanely hungry. You can seemingly never get enough to eat. Perhaps you had a singularity as an ancestor, or maybe one is currently living inside of your gut."
|
||||
cost = 0
|
||||
var_changes = list("metabolic_rate" = 2, "hunger_factor" = 1.6, "metabolism" = 0.012) //2x metabolism speed, 32x hunger speed
|
||||
var_changes = list("metabolic_rate" = 2, "hunger_factor" = 1.6, "metabolism" = 0.012) //2x metabolism speed, 32x hunger speed
|
||||
Reference in New Issue
Block a user