Skip to content

Commit

Permalink
peri pill_bottle
Browse files Browse the repository at this point in the history
  • Loading branch information
homexp13 committed Aug 3, 2024
1 parent f79660f commit 9316bb5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/__DEFINES/loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ GLOBAL_LIST_INIT(medic_gear_listed_products, list(
/obj/item/storage/pill_bottle/dermaline = list(CAT_MEDSUP, "Dermaline pills", 14, "orange"),
/obj/item/storage/pill_bottle/russian_red = list(CAT_MEDSUP, "Red Russian pills", 12, "orange"),
/obj/item/storage/pill_bottle/quickclot = list(CAT_MEDSUP, "Quickclot pills", 6, "orange"),
/obj/item/storage/pill_bottle/peridaxon = list(CAT_MEDSUP, "Peridaxon pills", 6, "orange"),
/obj/item/tool/surgery/solderingtool = list(CAT_MEDSUP, "Soldering tool", 2, "orange"),
/obj/item/stack/medical/heal_pack/advanced/bruise_combat_pack = list(CAT_MEDSUP, "Combat Trauma Kit", 3, "orange"),
/obj/item/stack/medical/heal_pack/advanced/burn_combat_pack = list(CAT_MEDSUP, "Combat Burn Kit", 3, "orange"),
Expand Down Expand Up @@ -354,6 +355,7 @@ GLOBAL_LIST_INIT(synthetic_gear_listed_products, list(
/obj/item/storage/pill_bottle/dermaline = list(CAT_SYNTH, "Dermaline pills", 14, "orange"),
/obj/item/storage/pill_bottle/russian_red = list(CAT_SYNTH, "Red Russian pills", 12, "orange"),
/obj/item/storage/pill_bottle/quickclot = list(CAT_SYNTH, "Quickclot pills", 6, "orange"),
/obj/item/storage/pill_bottle/peridaxon = list(CAT_SYNTH, "Peridaxon pills", 6, "orange"),
/obj/item/stack/medical/heal_pack/advanced/bruise_combat_pack = list(CAT_SYNTH, "Combat Trauma Kit", 3, "orange"),
/obj/item/stack/medical/heal_pack/advanced/burn_combat_pack = list(CAT_SYNTH, "Combat Burn Kit", 3, "orange"),
/obj/item/reagent_containers/hypospray/advanced = list(CAT_SYNTH, "Hypospray", 1, "yellow"),
Expand Down
5 changes: 5 additions & 0 deletions code/game/objects/items/reagent_containers/pill.dm
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,11 @@
list_reagents = list(/datum/reagent/medicine/quickclot = 10)
pill_id = 20

/obj/item/reagent_containers/pill/quickclot
pill_desc = "A quick-clot pill. Stabilizes internal bleeding temporarily."
list_reagents = list(/datum/reagent/medicine/peridaxon = 10)
pill_id = 20

/obj/item/reagent_containers/pill/tricordrazine
pill_desc = "A tricordrazine pill. Broad spectrum medication that slowly heals all damage types."
list_reagents = list(/datum/reagent/medicine/tricordrazine = 15)
Expand Down
9 changes: 9 additions & 0 deletions code/game/objects/items/storage/firstaid.dm
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,15 @@
greyscale_colors = "#E07BAD#ffffff"
description_overlay = "Qk"

/obj/item/storage/pill_bottle/peridaxon
name = "peridaxon pill bottle"
desc = "Contains pills that suppress internal organ damage."
icon_state = "pill_canistercomplete"
pill_type_to_fill = /obj/item/reagent_containers/pill/peridaxon
greyscale_config = /datum/greyscale_config/pillbottleround
greyscale_colors = "#C845DC#ffffff"
description_overlay = "Qk"

/obj/item/storage/pill_bottle/hypervene
name = "hypervene pill bottle"
desc = "A purge medication used to treat overdoses and rapidly remove toxins. Causes pain and vomiting."
Expand Down

0 comments on commit 9316bb5

Please sign in to comment.