Skip to content

Commit bf00cc4

Browse files
authored
Removes TWitch from normal rounds, and blacklists key chems from stra (#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
1 parent e92b312 commit bf00cc4

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

monkestation/code/modules/blueshift/armaments/deforest_medical.dm

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,6 @@
150150
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/synalvipitol
151151
contraband = TRUE
152152

153-
/datum/armament_entry/company_import/deforest/medpens_stim/twitch
154-
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/twitch
155-
cost = PAYCHECK_COMMAND * 3
156-
contraband = TRUE
157-
158153
/datum/armament_entry/company_import/deforest/medpens_stim/demoneye
159154
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/demoneye
160155
cost = PAYCHECK_COMMAND * 3

monkestation/code/modules/blueshift/opfor/equipment/medical.dm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
/datum/opposing_force_equipment/medical/twitch
55
name = "TWitch Sensory Stimulant Injector"
66
item_type = /obj/item/reagent_containers/hypospray/medipen/deforest/twitch
7+
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."
8+
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."
79

810
/datum/opposing_force_equipment/medical/demoneye
911
name = "DemonEye Steroid Injector"

monkestation/code/modules/blueshift/reagents/deforest.dm

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,11 @@
213213
// Reaction to make twitch, makes 10u from 17u input reagents
214214
/datum/chemical_reaction/twitch
215215
results = list(
216-
/datum/reagent/drug/twitch = 10,
216+
/datum/reagent/drug/twitch = 5,
217217
)
218218
required_reagents = list(
219-
/datum/reagent/impedrezene = 5,
220-
/datum/reagent/bluespace = 10,
221-
/datum/reagent/consumable/liquidelectricity = 2,
219+
/datum/reagent/medicine/adminordrazine = 30,
220+
/datum/reagent/bluespace = 30 //why? because fuck you thats why. Im gonna leave it at this. Good luck making it.
222221
)
223222
mob_react = FALSE
224223
reaction_tags = REACTION_TAG_EASY | REACTION_TAG_DRUG | REACTION_TAG_ORGAN | REACTION_TAG_DAMAGING
@@ -228,10 +227,12 @@
228227
name = "TWitch"
229228
description = "A drug originally developed by and for plutonians to assist them during raids. \
230229
Does not see wide use due to the whole reality-disassociation and heart disease thing afterwards. \
231-
Can be intentionally overdosed to increase the drug's effects"
230+
However, the gods came to an agreement, and banished it from the realms. \
231+
If the gods catch you using this, expect a swift and painful death."
232+
232233
reagent_state = LIQUID
233234
color = "#c22a44"
234-
taste_description = "television static"
235+
taste_description = "television static, and the gods wrath"
235236
metabolization_rate = 0.65 * REAGENTS_METABOLISM
236237
ph = 3
237238
overdose_threshold = 15

0 commit comments

Comments
 (0)