Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expands things harvester can harvest #171

Merged
merged 2 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions code/game/machinery/limbgrower.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
/// All the categories of organs we can print.
var/list/categories = list(SPECIES_HUMAN, SPECIES_LIZARD, SPECIES_MOTH, SPECIES_PLASMAMAN, SPECIES_ETHEREAL, "other")

biomass_produce = BIOMASS_HARVEST_MEDIUM

/obj/machinery/limbgrower/Initialize(mapload)
create_reagents(100, OPENCONTAINER)
. = ..()
Expand Down
1 change: 1 addition & 0 deletions code/game/objects/structures/watercloset.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
var/mob/living/swirlie = null //the mob being given a swirlie
var/buildstacktype = /obj/item/stack/sheet/iron //they're iron now, shut up
var/buildstackamount = 1
biomass_produce = BIOMASS_HARVEST_SMALL

/obj/structure/toilet/Initialize(mapload)
. = ..()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
var/volume = 0
///Used to track if anything of note has happen while running process_atmos()
var/excited = TRUE
biomass_produce = BIOMASS_HARVEST_SMALL

/obj/machinery/portable_atmospherics/Initialize(mapload)
. = ..()
Expand Down
1 change: 1 addition & 0 deletions code/modules/atmospherics/machinery/portable/scrubber.dm
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@

var/movable = FALSE
use_overlays = FALSE
biomass_produce = BIOMASS_HARVEST_MEDIUM
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure about this one since it's not really related to biomass

Copy link
Collaborator Author

@MisterGrimm MisterGrimm Sep 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's based on the 1.0 list, the huge scrubbers were a harvestable source. I just gave them a little more bio then the other portable atmos sources because there's only a few huge scrubbers on the map.


/obj/machinery/portable_atmospherics/scrubber/huge/movable
movable = TRUE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
/datum/reagent/consumable/vanilla = 6,
/datum/reagent/consumable/berryjuice = 6,
/datum/reagent/consumable/ethanol/singulo = 6)
biomass_produce = BIOMASS_HARVEST_SMALL

/obj/machinery/icecream_vat/Initialize(mapload)
. = ..()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,7 @@
nopower_state = null
pass_flags = PASSTABLE
show_ph = FALSE
biomass_produce = BIOMASS_HARVEST_SMALL
dispensable_reagents = list(
/datum/reagent/water,
/datum/reagent/consumable/ice,
Expand Down
2 changes: 2 additions & 0 deletions code/modules/reagents/reagent_dispenser.dm
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
name = "water tank"
desc = "A water tank."
icon_state = "water"
biomass_produce = BIOMASS_HARVEST_SMALL

/obj/structure/reagent_dispensers/watertank/high
name = "high-capacity water tank"
Expand Down Expand Up @@ -186,6 +187,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/reagent_dispensers/wall/peppertank, 3
desc = "Beer is liquid bread, it's good for you..."
icon_state = "beer"
reagent_id = /datum/reagent/consumable/ethanol/beer
biomass_produce = BIOMASS_HARVEST_SMALL

/obj/structure/reagent_dispensers/beerkeg/blob_act(obj/structure/blob/B)
explosion(src, heavy_impact_range = 3, light_impact_range = 5, flame_range = 10, flash_range = 7)
Expand Down
1 change: 1 addition & 0 deletions code/modules/vending/cola.dm
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
default_price = PAYCHECK_ASSISTANT * 0.7
extra_price = PAYCHECK_MEDIUM
payment_department = ACCOUNT_STATION_MASTER
biomass_produce = BIOMASS_HARVEST_SMALL


/obj/item/vending_refill/cola
Expand Down
1 change: 1 addition & 0 deletions code/modules/vending/snack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
extra_price = PAYCHECK_EASY
payment_department = ACCOUNT_STATION_MASTER
input_display_header = "Chef's Food Selection"
biomass_produce = BIOMASS_HARVEST_SMALL

/obj/item/vending_refill/snack
machine_name = "Getmore Chocolate Corp"
Expand Down
Loading