Merge branch 'master' into upstream-merge-11110

This commit is contained in:
Nadyr
2021-07-16 19:09:43 -04:00
committed by GitHub
529 changed files with 1341 additions and 1359 deletions

View File

@@ -1,8 +1,8 @@
/obj/machinery/chem_master
name = "ChemMaster 3000"
desc = "Used to seperate and package chemicals in to patches, pills, or bottles. Warranty void if used to create Space Drugs."
density = 1
anchored = 1
density = TRUE
anchored = TRUE
icon = 'icons/obj/chemical.dmi'
icon_state = "mixer0"
circuit = /obj/item/weapon/circuitboard/chem_master

View File

@@ -9,7 +9,7 @@
amount_per_transfer_from_this = 50
// Large, but inaccurate. Use a chem dispenser or beaker for accuracy.
possible_transfer_amounts = list(50, 100, 250, 500)
unacidable = 1
unacidable = TRUE
var/spawn_reagent = null
var/label = ""

View File

@@ -17,7 +17,7 @@
use_power = USE_POWER_IDLE
idle_power_usage = 100
anchored = 1
anchored = TRUE
/obj/machinery/chemical_dispenser/Initialize()
. = ..()

View File

@@ -4,8 +4,8 @@
icon = 'icons/obj/objects.dmi'
icon_state = "watertank"
layer = TABLE_LAYER
density = 1
anchored = 0
density = TRUE
anchored = FALSE
pressure_resistance = 2*ONE_ATMOSPHERE
var/obj/item/hose_connector/input/active/InputSocket
@@ -247,8 +247,8 @@
desc = "Refills pepper spray canisters."
icon = 'icons/obj/objects.dmi'
icon_state = "peppertank"
anchored = 1
density = 0
anchored = TRUE
density = FALSE
amount_per_transfer_from_this = 45
/obj/structure/reagent_dispensers/peppertank/Initialize()
@@ -263,7 +263,7 @@
icon = 'icons/obj/vending.dmi'
icon_state = "water_cooler"
possible_transfer_amounts = null
anchored = 1
anchored = TRUE
var/bottle = 0
var/cups = 0
var/cupholder = 0
@@ -416,7 +416,7 @@
icon = 'icons/obj/objects.dmi'
icon_state = "virusfoodtank"
amount_per_transfer_from_this = 10
anchored = 1
anchored = TRUE
/obj/structure/reagent_dispensers/virusfood/Initialize()
. = ..()
@@ -428,7 +428,7 @@
icon = 'icons/obj/objects.dmi'
icon_state = "acidtank"
amount_per_transfer_from_this = 10
anchored = 1
anchored = TRUE
/obj/structure/reagent_dispensers/acid/Initialize()
. = ..()

View File

@@ -4,8 +4,8 @@
desc = "Grinds stuff into itty bitty bits."
icon = 'icons/obj/kitchen.dmi'
icon_state = "juicer1"
density = 0
anchored = 0
density = FALSE
anchored = FALSE
use_power = USE_POWER_IDLE
idle_power_usage = 5
active_power_usage = 100

View File

@@ -15,7 +15,7 @@
volume = 60
w_class = ITEMSIZE_SMALL
flags = OPENCONTAINER | NOCONDUCT
unacidable = 1 //glass doesn't dissolve in acid
unacidable = TRUE //glass doesn't dissolve in acid
drop_sound = 'sound/items/drop/bottle.ogg'
pickup_sound = 'sound/items/pickup/bottle.ogg'
@@ -270,7 +270,7 @@
possible_transfer_amounts = list(10,20,30,60,120)
volume = 120
flags = OPENCONTAINER
unacidable = 0
unacidable = FALSE
drop_sound = 'sound/items/drop/helm.ogg'
pickup_sound = 'sound/items/pickup/helm.ogg'
@@ -328,7 +328,7 @@
possible_transfer_amounts = list(10,20,30,60,120)
volume = 120
flags = OPENCONTAINER
unacidable = 0
unacidable = FALSE
drop_sound = 'sound/items/drop/wooden.ogg'
pickup_sound = 'sound/items/pickup/wooden.ogg'

View File

@@ -9,7 +9,7 @@
item_state = "hypo"
icon_state = "hypo"
amount_per_transfer_from_this = 5
unacidable = 1
unacidable = TRUE
volume = 30
possible_transfer_amounts = null
flags = OPENCONTAINER

View File

@@ -13,7 +13,7 @@
throw_speed = 2
throw_range = 10
amount_per_transfer_from_this = 10
unacidable = 1 //plastic
unacidable = TRUE //plastic
possible_transfer_amounts = list(5,10) //Set to null instead of list, if there is only one.
var/spray_size = 3
var/list/spray_sizes = list(1,3)

View File

@@ -18,8 +18,8 @@
volume = 15
w_class = ITEMSIZE_TINY
slot_flags = SLOT_EARS
sharp = 1
unacidable = 1 //glass
sharp = TRUE
unacidable = TRUE //glass
var/mode = SYRINGE_DRAW
var/image/filling //holds a reference to the current filling overlay
var/visible_name = "a syringe"