mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 17:11:22 +00:00
108 lines
4.1 KiB
Plaintext
108 lines
4.1 KiB
Plaintext
//Hydro bounties. Things that can be biogenerated and stuff
|
|
/datum/bounty/item/hydroponicist/potato_cells
|
|
name = "Potato Batteries"
|
|
description = "%BOSSNAME is researching an environmentally-friendly power source on another station. Send us some potato batteries."
|
|
reward_low = 2000
|
|
reward_high = 3000
|
|
required_count = 6
|
|
random_count = 3
|
|
wanted_types = list(/obj/item/cell/potato)
|
|
|
|
/datum/bounty/item/hydroponicist/ert
|
|
name = "Rations"
|
|
description = "%BOSSSHORT is sending ERT out on a long mission. We need some long-lasting rations for them to eat!"
|
|
reward_low = 2200
|
|
reward_high = 2800
|
|
required_count = 6
|
|
random_count = 2
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/liquidfood, /obj/item/pen/crayon)
|
|
|
|
/datum/bounty/item/hydroponicist/towels
|
|
name = "Towels"
|
|
description = "%BOSSSHORT is having the sickest pool party ever. Send us some towels for a reward, and maybe an invitation!"
|
|
reward_low = 3000
|
|
reward_high = 3500
|
|
required_count = 8
|
|
random_count = 3
|
|
wanted_types = list(/obj/item/towel, /obj/item/towel_flat)
|
|
|
|
/datum/bounty/item/hydroponicist/gloves
|
|
name = "Botanical Gloves"
|
|
description = "%BOSSNAME is participating in a massive tree-planting initiative on Biesel. Help us help the company's image by sending our volunteers some gardening gloves!"
|
|
reward_low = 2200
|
|
reward_high = 3000
|
|
required_count = 4
|
|
random_count = 1
|
|
wanted_types = list(/obj/item/clothing/gloves/botanic_leather)
|
|
|
|
/datum/bounty/item/hydroponicist/flower_crown
|
|
name = "Flower Crowns"
|
|
description = "It's time for the monthly %COMPNAME company dance. This month's theme is floral in nature, so send us some flower crowns to give to attendees."
|
|
reward_low = 3600
|
|
reward_high = 4400
|
|
required_count = 6
|
|
random_count = 2
|
|
wanted_types = list(/obj/item/clothing/head/sunflower_crown, /obj/item/clothing/head/lavender_crown, /obj/item/clothing/head/poppy_crown)
|
|
|
|
/datum/bounty/item/assistant/animal_cubes
|
|
name = "Xeno Cubes"
|
|
description = "Monkeys are very limiting for xenostudies research. Please ship some alternative cubes (wrapped) to alleviate a shortage experienced by our other labs."
|
|
reward_low = 2000
|
|
reward_high = 2600
|
|
required_count = 4
|
|
random_count = 1
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/farwacube,
|
|
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/stokcube,
|
|
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/neaeracube,
|
|
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/vkrexicube)
|
|
|
|
/datum/bounty/item/hydroponicist/produce
|
|
name = "Produce - Any"
|
|
description = "%BOSSNAME is in need of a bundle of fresh produce. Send your best!"
|
|
reward_low = 3000
|
|
reward_high = 3500
|
|
required_count = 18
|
|
random_count = 5
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/grown)
|
|
var/list/produce_picks = list(/datum/seed)
|
|
|
|
/datum/bounty/item/hydroponicist/produce/applies_to(var/obj/item/reagent_containers/food/snacks/grown/O)
|
|
if(!istype(O))
|
|
return FALSE
|
|
if(O.bitecount > 0) //still not accepting partially-eaten food
|
|
return FALSE
|
|
if(is_type_in_list(O.seed, produce_picks)) //check if it's a type we want.
|
|
return TRUE
|
|
return FALSE
|
|
|
|
/datum/bounty/item/hydroponicist/produce/fruit
|
|
name = "Produce - Fruit"
|
|
description = "%BOSSNAME is in need of a bundle of fresh fruit. Send your best!"
|
|
required_count = 12
|
|
random_count = 3
|
|
produce_picks = list(/datum/seed/tomato,
|
|
/datum/seed/berry,
|
|
/datum/seed/apple,
|
|
/datum/seed/grapes,
|
|
/datum/seed/banana,
|
|
/datum/seed/watermelon,
|
|
/datum/seed/citrus,
|
|
/datum/seed/cherries,
|
|
/datum/seed/nifberries,
|
|
/datum/seed/dyn,
|
|
/datum/seed/wulumunusha,
|
|
/datum/seed/nmshaan)
|
|
|
|
/datum/bounty/item/hydroponicist/produce/mushroom
|
|
name = "Produce - Mushrooms"
|
|
description = "%BOSSNAME is in need of some fresh mushrooms. Send your best!"
|
|
required_count = 15
|
|
random_count = 3
|
|
produce_picks = list(/datum/seed/mushroom)
|
|
|
|
/datum/bounty/item/hydroponicist/produce/tobacco
|
|
name = "Produce - Tobacco"
|
|
description = "%BOSSNAME is in need of some fresh tobacco leaves. Send your best!"
|
|
required_count = 10
|
|
random_count = 2
|
|
produce_picks = list(/datum/seed/tobacco) |