Skip to content

Commit

Permalink
accessible from mech fab now
Browse files Browse the repository at this point in the history
  • Loading branch information
SECBATON-GRIFFON committed Dec 31, 2024
1 parent dde0968 commit 26771ae
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
39 changes: 39 additions & 0 deletions code/modules/research/designs/mecha/roswell.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/datum/design/roswell/chassis
name = "Exosuit Structure (Roswell chassis)"
desc = "Used to build a Roswell chassis."
id = "honker_chassis"
req_tech = list(Tc_COMBAT = 1,Tc_ALIEN = 5)
build_type = MECHFAB
build_path = /obj/item/mecha_parts/chassis/roswell
category = "Roswell"
materials = list(MAT_IRON=10000,MAT_RETICULITE=10000)

/datum/design/roswell/body
name = "Exosuit Structure (Roswell body)"
desc = "Used to build a Roswell body."
id = "roswell_body"
req_tech = list(Tc_COMBAT = 1,Tc_ALIEN = 5)
build_type = MECHFAB
build_path = /obj/item/mecha_parts/part/roswell_body
category = "Roswell"
materials = list(MAT_IRON=35000,MAT_GLASS=10000,MAT_RETICULITE=10000)

/datum/design/roswell/dome
name = "Exosuit Structure (Roswell dome)"
desc = "Used to build a Roswell dome."
id = "roswell_dome"
req_tech = list(Tc_COMBAT = 1,Tc_ALIEN = 5)
build_type = MECHFAB
build_path = /obj/item/mecha_parts/part/roswell_dome
category = "Roswell"
materials = list(MAT_GLASS=20000,MAT_RETICULITE=5000)

/datum/design/roswell/hoverer
name = "Exosuit Structure (Roswell hoverer)"
desc = "Used to build a Roswell hoverer."
id = "roswell_hoverer"
req_tech = list(Tc_COMBAT = 1,Tc_ALIEN = 5)
build_type = MECHFAB
build_path = /obj/item/mecha_parts/part/roswell_hoverer
category = "Roswell"
materials = list(MAT_IRON=20000,MAT_RETICULITE=5000)
1 change: 1 addition & 0 deletions vgstation13.dme
Original file line number Diff line number Diff line change
Expand Up @@ -2588,6 +2588,7 @@
#include "code\modules\research\designs\mecha\odysseus.dm"
#include "code\modules\research\designs\mecha\phazon.dm"
#include "code\modules\research\designs\mecha\ripley.dm"
#include "code\modules\research\designs\mecha\roswell.dm"
#include "code\modules\research\designs\mecha\tools.dm"
#include "code\modules\research\designs\mecha\weapons.dm"
#include "code\modules\research\designs\spacepod\construction.dm"
Expand Down

0 comments on commit 26771ae

Please sign in to comment.