Skip to content

Commit

Permalink
Some tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit committed Jul 17, 2023
1 parent 1d6f6d7 commit b996178
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
18 changes: 17 additions & 1 deletion code/datums/supplypacks/medical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,20 @@
cost = 50
containername = "\improper Auto-Compressor crate"
containertype = /obj/structure/closet/crate/secure
access = access_medical_equip
access = access_medical_equip

/decl/hierarchy/supply_pack/medical/carpotoxin
name = "Chemical Bottle - Carpotoxin"
contains = list(/obj/item/reagent_containers/glass/bottle/carpotoxin)
cost = 50
containertype = /obj/structure/closet/crate/secure
containername = "carpotoxin crate"
access = access_chemistry

/decl/hierarchy/supply_pack/medical/spider_venom
name = "Chemical Bottle - Spider Venom"
contains = list(/obj/item/reagent_containers/glass/bottle/spider_venom)
cost = 30
containertype = /obj/structure/closet/crate/secure
containername = "spider venom crate"
access = access_chemistry
4 changes: 3 additions & 1 deletion code/modules/reagents/Chemistry-Recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,10 @@
/datum/chemical_reaction/ossarepantes
name = "Ossarepantes"
result = /datum/reagent/medicine/ossarepantes
required_reagents = list(/datum/reagent/medicine/inaprovaline = 1, /datum/reagent/drink/milk = 1, /datum/reagent/radium = 1)
required_reagents = list(/datum/reagent/medicine/bicaridine = 1, /datum/reagent/drink/milk = 1, /datum/reagent/radium = 1)
result_amount = 3
minimum_temperature = 50 CELSIUS
maximum_temperature = (50 CELSIUS) + 100

/datum/chemical_reaction/hyperzine
name = "Hyperzine"
Expand Down
18 changes: 18 additions & 0 deletions code/modules/reagents/reagent_containers/glass/bottle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -309,3 +309,21 @@
/obj/item/reagent_containers/glass/bottle/dye/polychromic/strong
starting_reagent = /datum/reagent/dye/strong
starting_vol = 15

/obj/item/reagent_containers/glass/bottle/carpotoxin
name = "carpotoxin bottle"
icon_state = "bottle-1"

/obj/item/reagent_containers/glass/bottle/carpotoxin/New()
..()
reagents.add_reagent(/datum/reagent/toxin/carpotoxin, 60)
update_icon()

/obj/item/reagent_containers/glass/bottle/spider_venom
name = "spider venom bottle"
icon_state = "bottle-1"

/obj/item/reagent_containers/glass/bottle/spider_venom/New()
..()
reagents.add_reagent(/datum/reagent/toxin/venom, 60)
update_icon()

0 comments on commit b996178

Please sign in to comment.