mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-22 04:22:40 +01:00
62e58702f7
* Let you order the Tesla generator from cargo in case you need another one. * Make the energy ball dissipate very fast if it escapes from confinement, limiting the number of machines it can blow up. * Reduce devastation on machine destruction so areas are messed up but not just reduced to space.
28 lines
877 B
Plaintext
28 lines
877 B
Plaintext
/datum/supply_packs/eng/thermoregulator
|
|
contains = list(/obj/machinery/power/thermoregulator)
|
|
name = "Thermal Regulator"
|
|
cost = 30
|
|
containertype = /obj/structure/closet/crate/large
|
|
containername = "thermal regulator crate"
|
|
|
|
/datum/supply_packs/eng/radsuit
|
|
contains = list(
|
|
/obj/item/clothing/suit/radiation = 2,
|
|
/obj/item/clothing/suit/radiation/taur = 1,
|
|
/obj/item/clothing/head/radiation = 3
|
|
)
|
|
|
|
/datum/supply_packs/eng/algae
|
|
contains = list(/obj/item/stack/material/algae/ten)
|
|
name = "Algae Sheets (10)"
|
|
cost = 20
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "algae sheets crate"
|
|
|
|
/datum/supply_packs/eng/engine/tesla_gen
|
|
name = "Tesla Generator crate"
|
|
contains = list(/obj/machinery/the_singularitygen/tesla)
|
|
containertype = /obj/structure/closet/crate/secure/engineering
|
|
containername = "Tesla Generator crate"
|
|
access = access_ce
|