Skip to content

Commit

Permalink
reduced large glass beaker cost a bit, reduced XL beaker a lot, and i…
Browse files Browse the repository at this point in the history
…ncreased plastic output by 5 times in chemistry
  • Loading branch information
Anticept committed Apr 17, 2024
1 parent 2edaf65 commit 8ab3106
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/modules/reagents/chemistry/recipes/others.dm
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@

/datum/chemical_reaction/plastic_polymers/on_reaction(datum/reagents/holder, created_volume)
var/location = get_turf(holder.my_atom)
for(var/i in 1 to created_volume)
for(var/i in 1 to created_volume * 5)
new /obj/item/stack/sheet/plastic(location)

/datum/chemical_reaction/pax
Expand Down
2 changes: 1 addition & 1 deletion code/modules/reagents/reagent_containers/glass.dm
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
desc = "An extra-large beaker. Can hold up to 120 units."
icon_state = "beakerwhite"
fill_icon_state = "beakerlarge"
custom_materials = list(/datum/material/glass=2500, /datum/material/plastic=3000)
custom_materials = list(/datum/material/glass=1000, /datum/material/plastic=1000)
volume = 120
amount_per_transfer_from_this = 10
possible_transfer_amounts = list(5,10,15,20,25,30,60,120)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/research/designs/autolathe_designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@
name = "Large Beaker"
id = "large_beaker"
build_type = AUTOLATHE | PROTOLATHE
materials = list(/datum/material/glass = 2500)
materials = list(/datum/material/glass = 1500)
build_path = /obj/item/reagent_containers/glass/beaker/large
category = list("initial", "Medical", "Medical Designs")

Expand Down

0 comments on commit 8ab3106

Please sign in to comment.