Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all 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
8 changes: 7 additions & 1 deletion code/modules/reagents/chemistry/reagents/other_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,12 @@
race = /datum/species/lizard
mutationtext = span_danger("The pain subsides. You feel... scaly.")

/datum/reagent/mutationtoxin/pod/syndicate
name = "Advanced Phytosian Mutation Toxin"
color = "#5EFF3B" //RGB: 94, 255, 59
race = /datum/species/pod/syndicate
mutationtext = span_danger("The pain subsides. You feel Faster.")

/datum/reagent/mutationtoxin/fly
name = "Fly Mutation Toxin"
description = "An insectifying toxin."
Expand Down Expand Up @@ -2131,4 +2137,4 @@

/datum/reagent/adrenaline/on_mob_delete(mob/living/L)
. = ..()
REMOVE_TRAIT(L, TRAIT_IGNOREDAMAGESLOWDOWN, type)
REMOVE_TRAIT(L, TRAIT_IGNOREDAMAGESLOWDOWN, type)
8 changes: 8 additions & 0 deletions code/modules/reagents/reagent_containers/hypospray.dm
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,14 @@
if(hypo.penetrates)
to_chat(user, span_notice("[hypo] already has a piercing mechanism!"))
return FALSE

/obj/item/reagent_containers/autoinjector/phytosiansyndicateshit
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do not know how you did it but you managed to put this square in the middle of a proc

name = "experimental phytosian autoinjector"
desc = "A modified air-needle autoinjector with a small single-use reservoir. It contains an experimental serum that acts on phytosians genetics to make them faster."
icon_state = "hypo_syndie"
volume = 5
reagent_flags = NONE
list_reagents = list(/datum/reagent/mutationtoxin/pod/syndicate = 5)
else
hypo.penetrates = TRUE
return TRUE
Expand Down
9 changes: 9 additions & 0 deletions code/modules/uplink/uplink_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2011,6 +2011,15 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
item = /obj/item/seeds/tomato/killer
restricted_species = list("pod")

/datum/uplink_item/race_restricted/podevolver
name = "Phytosian Evolver"
desc = "The Syndicates Geneticist have cooked up a mutation toxin that eliminates phytosians natural slowness."
cost = 3
manufacturer = /datum/corporation/traitor/donkco
item = /obj/item/reagent_containers/autoinjector/phytosiansyndicateshit
restricted_species = list("pod")


/datum/uplink_item/race_restricted/radiationbomb
name = "Radiation grenade"
desc = "A radiation bomb guaranteed to irradiate the fuck out of non-gaseous lifeforms."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,3 +280,7 @@
H.nutrition = min(H.nutrition+30, NUTRITION_LEVEL_FULL)

#undef STATUS_MESSAGE_COOLDOWN

/datum/species/pod/syndicate
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems like an awfully roundabout way to change a single value

changesource_flags = MIRROR_BADMIN
speedmod = 0