Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
req_access = list(ACCESS_RESEARCH) // Research access is required to toggle the lock.

var/silence_announcements = FALSE
var/locked = TRUE
var/locked = FALSE //lumos edit so we can research stuff.

// An unlocked subtype of the board for mapping.
/obj/item/circuitboard/computer/rdconsole/unlocked
Expand Down
9 changes: 9 additions & 0 deletions modular_skyrat/modules/cargo/code/goodies.dm
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@
access_view = ACCESS_ENGINE_EQUIP
contains = list(/obj/item/construction/rcd/improved)

// Lumos addition start
/datum/supply_pack/goody/frontier_colonist
name = "frontier hazard protective MODsuit"
desc = "An unusual design of suit, in reality being no more than a slim underlayer with a built in coat and sealed helmet."
cost = PAYCHECK_COMMAND * 5 //500$
contains = list(
/obj/item/mod/control/pre_equipped/frontier_colonist,
)
// Lumos addition end
/*
* MISC
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/obj/item/stack/sheet/cloth = 4,
)
category = CAT_TOOLS
crafting_flags = CRAFT_MUST_BE_LEARNED
#crafting_flags = CRAFT_MUST_BE_LEARNED ///Lumos edit, lets everyone be able to actually craft this thing since you cant learn how to

/obj/item/research_paper
name = "research paper"
Expand Down
Loading