actually adds the perceptomatrix to the techweb (#87948)

## About The Pull Request

actually adds the perceptomatrix to the techweb

## Why It's Good For The Game

i forgor

## Changelog

🆑
fix: actually adds the perceptomatrix to the techweb
/🆑

---------

Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com>
This commit is contained in:
carlarctg
2024-11-17 04:11:10 +00:00
committed by GitHub
co-authored by MrMelbert
parent f7890687ed
commit ed2cf584f4
3 changed files with 21 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
#define PERCEPTOMATRIX_INACTIVE_FLAGS SNUG_FIT|STACKABLE_HELMET_EXEMPT|STOPSPRESSUREDAMAGE|BLOCK_GAS_SMOKE_EFFECT
#define PERCEPTOMATRIX_ACTIVE_FLAGS PERCEPTOMATRIX_INACTIVE_FLAGS|CASTING_CLOTHES // we love casting spells
/// Belt which can turn you into a beast, once an anomaly core is inserted
/// Helmet which can turn you into a BEAST!! once an anomaly core is inserted
/obj/item/clothing/head/helmet/perceptomatrix
name = "perceptomatrix helm"
desc = "This piece of headgear harnesses the energies of a hallucinative anomaly to create a safe audiovisual replica of -all- external stimuli directly into the cerebral cortex, \
@@ -1121,3 +1121,21 @@
RND_CATEGORY_EQUIPMENT + RND_SUBCATEGORY_EQUIPMENT_SCIENCE
)
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE
/datum/design/perceptomatrix
name = "Perceptomatrix Helm"
id = "perceptomatrix"
desc = "This helm harnesses hallucinative energies to shield its owner from perceptual anomalies. It requires a Hallucination Anomaly Core in order to function."
build_type = PROTOLATHE | AWAY_LATHE
build_path = /obj/item/clothing/head/helmet/perceptomatrix
materials = list(
/datum/material/titanium = SHEET_MATERIAL_AMOUNT * 2,
/datum/material/silver = SHEET_MATERIAL_AMOUNT * 1,
/datum/material/gold = SHEET_MATERIAL_AMOUNT * 0.5,
/datum/material/plasma = SHEET_MATERIAL_AMOUNT * 3,
/datum/material/uranium = SHEET_MATERIAL_AMOUNT,
)
category = list(
RND_CATEGORY_EQUIPMENT + RND_SUBCATEGORY_EQUIPMENT_SCIENCE
)
departmental_flags = DEPARTMENT_BITFLAG_SCIENCE
@@ -94,7 +94,8 @@
"cybernetic_heart_anomalock",
"wormholeprojector",
"gravitygun",
"polymorph_belt"
"polymorph_belt",
"perceptomatrix",
)
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_5_POINTS)
discount_experiments = list(/datum/experiment/scanning/points/anomalies = TECHWEB_TIER_5_POINTS)