Files
CHOMPStation2/code/modules/research/prosfab_designs_vr.dm
T
lbnesquik c01019c25e Add a belly size upgrade for hounds:
- Researchable upgrade. It fits only hounds. It doubles the capacity of their sleeper for items. Usable only once. This does not affect number of patients.
2020-08-05 14:53:24 +02:00

15 lines
649 B
Plaintext

//Prosfab stuff for borgs and such
/datum/design/item/prosfab/robot_upgrade/sizeshift
name = "Size Alteration Module"
id = "borg_sizeshift_module"
req_tech = list(TECH_BLUESPACE = 3, TECH_MATERIAL = 3, TECH_POWER = 2)
materials = list(DEFAULT_WALL_MATERIAL = 4000, "glass" = 4000)
build_path = /obj/item/borg/upgrade/sizeshift
/datum/design/item/prosfab/robot_upgrade/bellysizeupgrade
name = "Size Alteration Module"
id = "borg_hound_capacity_module"
req_tech = list(TECH_BLUESPACE = 3, TECH_MATERIAL = 3, TECH_POWER = 2)
materials = list(DEFAULT_WALL_MATERIAL = 4000, "glass" = 4000)
build_path = /obj/item/borg/upgrade/bellysizeupgrade