Skip to content

Commit

Permalink
adds autoinhaler and autoinjector to autolathe (Aurorastation#7058)
Browse files Browse the repository at this point in the history
    Adds autoinhaler and autoinjector to autolathe.
    Gives autoinhaler and autoinjector material values (i'm open to suggestions to tweak 'em)

This allows medical to come to cargo to print more of these and hand them out to crew. Good stuff.
If anyone has any other ideas to add more (reasonable!) stuff to autolathes, you know where to contact me.
  • Loading branch information
Geevies authored and skull132 committed Sep 28, 2019
1 parent f032abc commit ce511f0
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 0 deletions.
10 changes: 10 additions & 0 deletions code/game/machinery/autolathe_datums.dm
Expand Up @@ -235,6 +235,16 @@
path = /obj/item/weapon/reagent_containers/glass/beaker/vial
category = "Medical"

/datum/autolathe/recipe/autoinjector
name = "autoinjector"
path = /obj/item/weapon/reagent_containers/hypospray/autoinjector
category = "Medical"

/datum/autolathe/recipe/autoinhaler
name = "autoinhaler"
path = /obj/item/weapon/reagent_containers/inhaler
category = "Medical"

/datum/autolathe/recipe/syringe
name = "syringe"
path = /obj/item/weapon/reagent_containers/syringe
Expand Down
1 change: 1 addition & 0 deletions code/modules/reagents/reagent_containers/hypospray.dm
Expand Up @@ -17,6 +17,7 @@
center_of_mass = null
var/armorcheck = 1
var/time = 3 SECONDS
matter = list("glass" = 400, DEFAULT_WALL_MATERIAL = 200)

/obj/item/weapon/reagent_containers/hypospray/cmo
name = "premium hypospray"
Expand Down
1 change: 1 addition & 0 deletions code/modules/reagents/reagent_containers/inhaler.dm
Expand Up @@ -17,6 +17,7 @@
slot_flags = SLOT_BELT
center_of_mass = null
var/used = FALSE
matter = list("glass" = 400, DEFAULT_WALL_MATERIAL = 200)

/obj/item/weapon/reagent_containers/inhaler/Initialize()
. =..()
Expand Down
41 changes: 41 additions & 0 deletions html/changelogs/geeves-autoBuffs.yml
@@ -0,0 +1,41 @@
################################
# 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
# balance
# admin
# backend
# security
# refactor
#################################

# Your name.
author: Geeves

# 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:
- rscadd: "Adds the following to Autolathes: Autoinjector (Medical), Autoinhaler (Medical)"

0 comments on commit ce511f0

Please sign in to comment.