Skip to content

Commit

Permalink
techweb fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeWeirdKitten committed Jul 16, 2024
1 parent ec7025c commit 5b00790
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 20 deletions.

This file was deleted.

15 changes: 15 additions & 0 deletions modular_zubbers/code/modules/research/designs/mechfab_designs.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// Empty shell

/datum/design/synthclone
name = "Blank synthetic shell"
id = "blanksynth"
build_type = MECHFAB
construction_time = 60 SECONDS
materials = list(/datum/material/iron = SHEET_MATERIAL_AMOUNT * 20,
/datum/material/glass = SHEET_MATERIAL_AMOUNT * 10,
/datum/material/silver = SHEET_MATERIAL_AMOUNT * 0.5,
/datum/material/gold = SHEET_MATERIAL_AMOUNT * 0.25)
category = list(RND_CATEGORY_MECHFAB_SYNTH + RND_SUBCATEGORY_MECHFAB_SYNTH_PARTS)

build_path = /mob/living/carbon/human/species/synth/empty

/datum/design/borg_upgrade_advcutter
name = "Advanced Plasma Cutter"
id = "borg_upgrade_advcutter"
Expand Down
8 changes: 8 additions & 0 deletions modular_zubbers/code/modules/research/techweb/all_nodes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,17 @@
/datum/techweb_node/borg_medical/New()
design_ids += list(
"borg_upgrade_surgicalprocessor_sci",
"borg_upgrade_pinpointer",
)
return ..()

/datum/techweb_node/augmentation/New()
. = ..()
design_ids += list(
"blanksynth",
"dominatrixmodule",
)

// Computer Tech
/datum/techweb_node/gaming/New()
. = ..()
Expand Down
1 change: 0 additions & 1 deletion tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -8792,7 +8792,6 @@
#include "modular_zubbers\code\modules\customization\height_scaling\preferences.dm"
#include "modular_zubbers\code\modules\customization\species\synths\death_sound.dm"
#include "modular_zubbers\code\modules\customization\species\synths\code\synth_prefab.dm"
#include "modular_zubbers\code\modules\customization\species\synths\code\designs\exofab_designs.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\64_wings.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\ears.dm"
#include "modular_zubbers\code\modules\customization\sprite_accessories\genitals.dm"
Expand Down

0 comments on commit 5b00790

Please sign in to comment.