Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] Add Mannitol and Other Items to Imports #5241

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -108,6 +108,10 @@
item_type = /obj/item/stack/medical/wound_recovery/robofoam_super
cost = PAYCHECK_COMMAND * 4

/datum/armament_entry/company_import/deforest/first_aid/mannitol // Bitrunners and Degenerative players should not be out of a job if med is slow, gone or bad
item_type = /obj/item/storage/pill_bottle/mannitol
cost = PAYCHECK_COMMAND * 4 // pricey to not obsolete med if they ARE here

// Autoinjectors for healing

/datum/armament_entry/company_import/deforest/medpens
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
name = "type I vest"
item_type = /obj/item/clothing/suit/armor/vest

/datum/armament_entry/company_import/sol_defense/armor/combat_boots // boots
name = "Combat Boots"
cost = PAYCHECK_CREW * 4
item_type = /obj/item/clothing/shoes/combat

/datum/armament_entry/company_import/sol_defense/armor_hardened
subcategory = "Hardened Armor"
cost = PAYCHECK_CREW * 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
item_type = /obj/item/suppressor/standard
cost = PAYCHECK_COMMAND

/datum/armament_entry/company_import/vitezstvi/accessory/seclight
item_type = /obj/item/flashlight/seclite
cost = PAYCHECK_COMMAND * 1.5 // now get yo shotgun with the flashlight modification

/datum/armament_entry/company_import/vitezstvi/accessory/small_case
item_type = /obj/item/storage/toolbox/guncase/nova/pistol/empty
cost = PAYCHECK_COMMAND
Expand All @@ -36,6 +40,14 @@
item_type = /obj/item/storage/toolbox/guncase/nova/empty
cost = PAYCHECK_COMMAND * 2

/datum/armament_entry/company_import/vitezstvi/accessory/bandolier
item_type = /obj/item/storage/belt/bandolier
cost = PAYCHECK_COMMAND * 2

/datum/armament_entry/company_import/vitezstvi/accessory/pouch
item_type = /obj/item/storage/pouch/ammo
cost = PAYCHECK_COMMAND * 3

// Boxes of non-shotgun ammo

/datum/armament_entry/company_import/vitezstvi/ammo_boxes
Expand Down
Loading