Skip to content

Commit

Permalink
Removes TWitch from normal rounds, and blacklists key chems from stra (
Browse files Browse the repository at this point in the history
…#4626)

* Removes TWitch from normal rounds, and blacklists key chems from strange seeds.

* grammer skill issue

* Adding more to the blacklist, removed pen from imports.

* The blacklist didnt work, removing
  • Loading branch information
OliverOtter authored Jan 7, 2025
1 parent e92b312 commit bf00cc4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,6 @@
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/synalvipitol
contraband = TRUE

/datum/armament_entry/company_import/deforest/medpens_stim/twitch
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/twitch
cost = PAYCHECK_COMMAND * 3
contraband = TRUE

/datum/armament_entry/company_import/deforest/medpens_stim/demoneye
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/demoneye
cost = PAYCHECK_COMMAND * 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
/datum/opposing_force_equipment/medical/twitch
name = "TWitch Sensory Stimulant Injector"
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/twitch
description = "A special type of injector containing 10u of TWitch alongside some other chems. Overdosing on this can lead to heart implosion, but give you super speed and bullet immortality."
admin_note = "TWITCH IS VERY OVERPOWERED IF OD'D ON. Overdosing gives them a MASSIVE speed boost, with the ability to dodge 100% of ALL projectiles. OD limit is 15u."

/datum/opposing_force_equipment/medical/demoneye
name = "DemonEye Steroid Injector"
Expand Down
13 changes: 7 additions & 6 deletions monkestation/code/modules/blueshift/reagents/deforest.dm
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,11 @@
// Reaction to make twitch, makes 10u from 17u input reagents
/datum/chemical_reaction/twitch
results = list(
/datum/reagent/drug/twitch = 10,
/datum/reagent/drug/twitch = 5,
)
required_reagents = list(
/datum/reagent/impedrezene = 5,
/datum/reagent/bluespace = 10,
/datum/reagent/consumable/liquidelectricity = 2,
/datum/reagent/medicine/adminordrazine = 30,
/datum/reagent/bluespace = 30 //why? because fuck you thats why. Im gonna leave it at this. Good luck making it.
)
mob_react = FALSE
reaction_tags = REACTION_TAG_EASY | REACTION_TAG_DRUG | REACTION_TAG_ORGAN | REACTION_TAG_DAMAGING
Expand All @@ -228,10 +227,12 @@
name = "TWitch"
description = "A drug originally developed by and for plutonians to assist them during raids. \
Does not see wide use due to the whole reality-disassociation and heart disease thing afterwards. \
Can be intentionally overdosed to increase the drug's effects"
However, the gods came to an agreement, and banished it from the realms. \
If the gods catch you using this, expect a swift and painful death."

reagent_state = LIQUID
color = "#c22a44"
taste_description = "television static"
taste_description = "television static, and the gods wrath"
metabolization_rate = 0.65 * REAGENTS_METABOLISM
ph = 3
overdose_threshold = 15
Expand Down

0 comments on commit bf00cc4

Please sign in to comment.