forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9a9758
commit 797b6f1
Showing
5 changed files
with
123 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* Unathi reagents reactions */ | ||
/datum/chemical_reaction/paashe | ||
name = "Paashe Meish Sunn" | ||
result = /datum/reagent/paashe | ||
required_reagents = list(/datum/reagent/toxin/yeosvenom = 1, /datum/reagent/ethanol = 1, /datum/reagent/acetone = 1) | ||
result_amount = 3 | ||
|
||
/datum/chemical_reaction/arhishaap | ||
name = "Arhishaap" | ||
result = /datum/reagent/arhishaap | ||
required_reagents = list(/datum/reagent/toxin/yeosvenom = 1, /datum/reagent/diethylamine = 2, /datum/reagent/radium = 1) | ||
result_amount = 4 | ||
|
||
/datum/chemical_reaction/oxycodonealt | ||
name = "Oxycodone Alt" | ||
result = /datum/reagent/tramadol/oxycodone | ||
required_reagents = list(/datum/reagent/ethanol = 1, /datum/reagent/paashe = 1) | ||
catalysts = list(/datum/reagent/toxin/phoron = 5) | ||
result_amount = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/mob/living/carbon/human | ||
var/venom_cooldown = 0 | ||
|
||
/mob/living/carbon/human/unathi/yeosa/proc/decant_venom() | ||
set category = "Abilities" | ||
set name = "Decant Venom" | ||
set desc = "" | ||
var/obj/item/target = usr.get_active_hand() | ||
var/poison_type = /datum/reagent/toxin/yeosvenom | ||
|
||
|
||
if(venom_cooldown > world.time) | ||
to_chat(usr, SPAN_WARNING("Your venom glands are too exhausted, it will take some time before you can decant your innate venom again.")) | ||
return | ||
if(istype(target, /obj/item/reagent_containers/)) | ||
if(target.reagents) | ||
target.reagents.add_reagent(poison_type, 8) | ||
src.adjust_nutrition(-25) | ||
src.adjust_hydration(-15) | ||
usr.visible_message( | ||
SPAN_NOTICE("\The [usr] sticks their fangs into the side of the [target], dripping thick, green-ish substance into the container."), | ||
SPAN_NOTICE("You stick your fangs into the side of the \the [target], allowing some of your innate venom to drip into the container.") | ||
) | ||
venom_cooldown = world.time + (30 SECONDS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
/datum/species/unathi/yeosa/New() | ||
unarmed_types ^= list(/datum/unarmed_attack/bite/venom, /datum/unarmed_attack/bite/venom/yeosa) | ||
if (/datum/unarmed_attack/bite/venom in unarmed_types) | ||
unarmed_types -= /datum/unarmed_attack/bite/venom | ||
unarmed_types += /datum/unarmed_attack/bite/venom/yeosa | ||
inherent_verbs += list(/mob/living/carbon/human/unathi/yeosa/proc/decant_venom) | ||
. = ..() |