techweb fixes (#1802)

## About The Pull Request

Synth shells and borg pinpointers are now printable. We need to align
our techweb more with the upstream changes, but it is what it is for
now.

## Why It's Good For The Game

Fixes some of our techweb

## Proof Of Testing


![image](https://github.com/user-attachments/assets/17664865-cc2b-4d37-af47-341abb975a52)

## Changelog

🆑
fix: Borg Pinpointers and synthshells are now printable once more.
/🆑
This commit is contained in:
The Sharkening
2024-07-16 13:08:12 -06:00
committed by GitHub
parent ec7025c68e
commit 0408dbaed1
4 changed files with 23 additions and 20 deletions
@@ -1,19 +0,0 @@
/datum/techweb_node/base/New()
. = ..()
design_ids += list(
"blanksynth",
"dominatrixmodule",
)
/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
@@ -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"
@@ -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()
. = ..()
-1
View File
@@ -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"