mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Merge pull request #8940 from VOREStation/upstream-merge-7583
[MIRROR] FBP Internals Additions
This commit is contained in:
@@ -76,9 +76,11 @@
|
|||||||
if(!affected)
|
if(!affected)
|
||||||
to_chat(user, "<span class='danger'>\The [H] is missing that limb!</span>")
|
to_chat(user, "<span class='danger'>\The [H] is missing that limb!</span>")
|
||||||
return
|
return
|
||||||
|
/* since synths have oil/coolant streams now, it only makes sense that you should be able to inject stuff. preserved for posterity.
|
||||||
else if(affected.robotic >= ORGAN_ROBOT)
|
else if(affected.robotic >= ORGAN_ROBOT)
|
||||||
to_chat(user, "<span class='danger'>You cannot inject a robotic limb.</span>")
|
to_chat(user, "<span class='danger'>You cannot inject a robotic limb.</span>")
|
||||||
return
|
return
|
||||||
|
*/
|
||||||
|
|
||||||
if(M.can_inject(user, 1, ignore_thickness = bypass_protection))
|
if(M.can_inject(user, 1, ignore_thickness = bypass_protection))
|
||||||
to_chat(user, "<span class='notice'>You inject [M] with the injector.</span>")
|
to_chat(user, "<span class='notice'>You inject [M] with the injector.</span>")
|
||||||
@@ -42,9 +42,11 @@
|
|||||||
if(!affected)
|
if(!affected)
|
||||||
to_chat(user, "<span class='danger'>\The [H] is missing that limb!</span>")
|
to_chat(user, "<span class='danger'>\The [H] is missing that limb!</span>")
|
||||||
return
|
return
|
||||||
|
/* since synths have oil/coolant streams now, it only makes sense that you should be able to inject stuff. preserved for posterity.
|
||||||
else if(affected.robotic >= ORGAN_ROBOT)
|
else if(affected.robotic >= ORGAN_ROBOT)
|
||||||
to_chat(user, "<span class='danger'>You cannot inject a robotic limb.</span>")
|
to_chat(user, "<span class='danger'>You cannot inject a robotic limb.</span>")
|
||||||
return
|
return
|
||||||
|
*/
|
||||||
|
|
||||||
//VOREStation Add Start - Adds Prototype Hypo functionality
|
//VOREStation Add Start - Adds Prototype Hypo functionality
|
||||||
if(H != user && prototype)
|
if(H != user && prototype)
|
||||||
|
|||||||
@@ -170,9 +170,11 @@
|
|||||||
if(!affected)
|
if(!affected)
|
||||||
to_chat(user, "<span class='danger'>\The [H] is missing that limb!</span>")
|
to_chat(user, "<span class='danger'>\The [H] is missing that limb!</span>")
|
||||||
return
|
return
|
||||||
|
/* since synths have oil/coolant streams now, it only makes sense that you should be able to inject stuff. preserved for posterity.
|
||||||
else if(affected.robotic >= ORGAN_ROBOT)
|
else if(affected.robotic >= ORGAN_ROBOT)
|
||||||
to_chat(user, "<span class='danger'>You cannot inject a robotic limb.</span>")
|
to_chat(user, "<span class='danger'>You cannot inject a robotic limb.</span>")
|
||||||
return
|
return
|
||||||
|
*/
|
||||||
|
|
||||||
var/cycle_time = injtime*0.33 //33% of the time slept between 5u doses
|
var/cycle_time = injtime*0.33 //33% of the time slept between 5u doses
|
||||||
var/warmup_time = 0 //0 for containers
|
var/warmup_time = 0 //0 for containers
|
||||||
|
|||||||
36
html/changelogs/Killian - synth injections.yml
Normal file
36
html/changelogs/Killian - synth injections.yml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
################################
|
||||||
|
# Example Changelog File
|
||||||
|
#
|
||||||
|
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
|
||||||
|
#
|
||||||
|
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
|
||||||
|
# When it is, any changes listed below will disappear.
|
||||||
|
#
|
||||||
|
# Valid Prefixes:
|
||||||
|
# bugfix
|
||||||
|
# wip (For works in progress)
|
||||||
|
# tweak
|
||||||
|
# soundadd
|
||||||
|
# sounddel
|
||||||
|
# rscadd (general adding of nice things)
|
||||||
|
# rscdel (general deleting of nice things)
|
||||||
|
# imageadd
|
||||||
|
# imagedel
|
||||||
|
# maptweak
|
||||||
|
# spellcheck (typo fixes)
|
||||||
|
# experiment
|
||||||
|
#################################
|
||||||
|
|
||||||
|
# Your name.
|
||||||
|
author: Killian
|
||||||
|
|
||||||
|
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||||
|
delete-after: True
|
||||||
|
|
||||||
|
# Any changes you've made. See valid prefix list above.
|
||||||
|
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||||
|
# SCREW THIS UP AND IT WON'T WORK.
|
||||||
|
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
|
||||||
|
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
|
||||||
|
changes:
|
||||||
|
- tweak: "You can now inject reagents directly into a synth's 'blood' stream using syringes and hypos (inc. borg hypos). Taking oil/coolant samples is still impossible."
|
||||||
@@ -3304,7 +3304,7 @@
|
|||||||
#include "code\modules\reagents\hoses\hose_connector.dm"
|
#include "code\modules\reagents\hoses\hose_connector.dm"
|
||||||
#include "code\modules\reagents\reagent_containers\blood_pack.dm"
|
#include "code\modules\reagents\reagent_containers\blood_pack.dm"
|
||||||
#include "code\modules\reagents\reagent_containers\blood_pack_vr.dm"
|
#include "code\modules\reagents\reagent_containers\blood_pack_vr.dm"
|
||||||
#include "code\modules\reagents\reagent_containers\borghydro.dm"
|
#include "code\modules\reagents\reagent_containers\borghypo.dm"
|
||||||
#include "code\modules\reagents\reagent_containers\dropper.dm"
|
#include "code\modules\reagents\reagent_containers\dropper.dm"
|
||||||
#include "code\modules\reagents\reagent_containers\glass.dm"
|
#include "code\modules\reagents\reagent_containers\glass.dm"
|
||||||
#include "code\modules\reagents\reagent_containers\glass_vr.dm"
|
#include "code\modules\reagents\reagent_containers\glass_vr.dm"
|
||||||
|
|||||||
Reference in New Issue
Block a user