Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Surgical Gloves #2283

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions code/modules/research/techweb/all_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@
"plasmarefiller",
"smoke_machine",
"sleeper",
"surgical_gloves",
catmanpop marked this conversation as resolved.
Show resolved Hide resolved
)
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)
discount_experiments = list(/datum/experiment/scanning/random/material/meat = 2000,
Expand Down
1 change: 1 addition & 0 deletions code/modules/vending/medical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
/obj/item/storage/medkit/advanced = 2,
/obj/item/shears = 1,
/obj/item/storage/organbox = 1,
/obj/item/clothing/gloves/latex/surgical = 1,
catmanpop marked this conversation as resolved.
Show resolved Hide resolved
)
refill_canister = /obj/item/vending_refill/medical
default_price = PAYCHECK_CREW
Expand Down
14 changes: 14 additions & 0 deletions monkestation/code/modules/clothing/gloves/gloves.dm
ThePooba marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,17 @@
/obj/item/clothing/gloves/color/plasmaman
icon = 'monkestation/icons/obj/clothing/plasmaman_gloves.dmi'
worn_icon = 'monkestation/icons/mob/clothing/plasmaman_gloves.dmi'

/obj/item/clothing/gloves/latex/surgical
name = "Black Latex gloves"
desc = "Pricy sterile gloves that are thinner than latex. The lining allows for the person to operate \
quicker along with the faster use time of various chemical related items"
icon = 'monkestation/icons/obj/clothing/surgeonlatex.dmi'
worn_icon = 'monkestation/icons/mob/clothing/gloves.dmi'
icon_state = "surgeonlatex"
armor_type = /datum/armor/surgeon
clothing_traits = list(TRAIT_PERFECT_SURGEON, TRAIT_FASTMED)
custom_premium_price = PAYCHECK_CREW * 6

/datum/armor/surgeon
bio = 100
12 changes: 12 additions & 0 deletions monkestation/code/modules/research/designs/medical_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,15 @@
name = "Filter Blood Upgrade"
surgery = /datum/surgery/blood_filter/femto
id = "surgery_filter_upgrade_femto"

/datum/design/surgical_glove
name = "Surgical Latex Glove"
desc = "Advanced latex gloves that allow the user to operate 25% quicker"
id = "surgical_gloves"
build_path = /obj/item/clothing/gloves/latex/surgical
build_type = PROTOLATHE | AWAY_LATHE
materials = list(/datum/material/iron = 10000, /datum/material/glass = 2500, /datum/material/silver = 20000, /datum/material/gold = 1500)
category = list(
RND_CATEGORY_TOOLS + RND_SUBCATEGORY_EQUIPMENT_MEDICAL
)
departmental_flags = DEPARTMENT_BITFLAG_MEDICAL
Binary file modified monkestation/icons/mob/clothing/gloves.dmi
ThePooba marked this conversation as resolved.
Show resolved Hide resolved
Binary file not shown.
Binary file added monkestation/icons/obj/clothing/surgeonlatex.dmi
Binary file not shown.
Loading