Skip to content

Commit

Permalink
main commit (#2533)
Browse files Browse the repository at this point in the history
makes nifs part of cybernetic application and makes them craftable
  • Loading branch information
F-e-r-n authored Jul 21, 2024
1 parent 0c4a0e4 commit 8e38463
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions monkestation/code/modules/blueshift/designs/nif.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
/datum/design/nif/standard
name = "Nanite Implant Framework"
desc = "A brain implant that infuses the user with nanites."
id = "nif_standard"
build_path = /obj/item/organ/internal/cyberimp/brain/nif/standard
build_type = PROTOLATHE | MECHFAB
construction_time = 8 SECONDS
materials = list(/datum/material/iron = 6000, /datum/material/glass = 4000, /datum/material/silver = 2000 , /datum/material/gold = 2000)
category = list(
RND_CATEGORY_CYBERNETICS + RND_SUBCATEGORY_CYBERNETICS_IMPLANTS_TOOLS
)
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE | DEPARTMENT_BITFLAG_MEDICAL

/datum/design/nifsoft_remover
name = "Lopland 'Wrangler' NIF-Cutter"
desc = "A small device that lets the user remove NIFSofts from a NIF user."
Expand Down
2 changes: 1 addition & 1 deletion monkestation/code/modules/blueshift/nifsoft/_base.dm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ GLOBAL_LIST_INIT(purchasable_nifsofts, list(
size = 3
tgui_id = "NtosNifsoftCatalog"
program_icon = "bag-shopping"
usage_flags = PROGRAM_TABLET
usage_flags = PROGRAM_CATEGORY_CREW
///What bank account is money being drawn out of?
var/datum/bank_account/paying_account
///What NIF are the NIFSofts being sent to?
Expand Down
2 changes: 1 addition & 1 deletion monkestation/code/modules/cybernetics/tech_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
display_name = "Cybernetic Application"
description = "Creation of NT-secure basic cyberlinks for low-grade cybernetic augmentation"
prereq_ids = list("adv_biotech","adv_biotech", "datatheory")
design_ids = list("ci-nt_low", "ci-cyberconnector")
design_ids = list("ci-nt_low", "ci-cyberconnector", "nif_standard")
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 1000)

/datum/techweb_node/ntlink_high
Expand Down

0 comments on commit 8e38463

Please sign in to comment.