last touches

This commit is contained in:
TrilbySpaceClone
2019-12-29 04:54:31 -05:00
parent e71d23fc39
commit 5fbe7fcc2b
2 changed files with 21 additions and 2 deletions

View File

@@ -105,7 +105,6 @@
return
..()
/obj/item/reagent_containers/glass/beaker
name = "beaker"
desc = "A beaker. It can hold up to 50 units. Unable to withstand extreme pHes"
@@ -166,6 +165,10 @@
possible_transfer_amounts = list(0.1,0.5,0.75,1,2,3)
volume = 3
/obj/item/reagent_containers/glass/beaker/glass_dish/Initialize()
beaker_weakness_bitflag &= ~PH_WEAK
. = ..()
/obj/item/reagent_containers/glass/beaker/flask_large
name = "large flask"
desc = "A large flask. It can hold up to 80 units. Unable to withstand reagents of an extreme pH."
@@ -173,6 +176,10 @@
icon_state = "flasklarge"
volume = 80
/obj/item/reagent_containers/glass/beaker/flask_large/Initialize()
beaker_weakness_bitflag &= ~PH_WEAK
. = ..()
/obj/item/reagent_containers/glass/beaker/flask_small
name = "small flask"
desc = "A small flask. It can hold up to 40 units. Unable to withstand reagents of an extreme pH."
@@ -180,6 +187,10 @@
icon_state = "flasksmall"
volume = 40
/obj/item/reagent_containers/glass/beaker/flask_small/Initialize()
beaker_weakness_bitflag &= ~PH_WEAK
. = ..()
/obj/item/reagent_containers/glass/beaker/flaskspouty
name = "flask with spout"
desc = "A flask with a spout! It can hold up to 120 units. Unable to withstand reagents of an extreme pH."
@@ -188,6 +199,10 @@
possible_transfer_amounts = list(1,2,3,4,5,10,15,20,25,30,50,100,120)
volume = 120
/obj/item/reagent_containers/glass/beaker/flaskspouty/Initialize()
beaker_weakness_bitflag &= ~PH_WEAK
. = ..()
/obj/item/reagent_containers/glass/beaker/large
name = "large beaker"
desc = "A large beaker. Can hold up to 100 units. Unable to withstand reagents of an extreme pH."