mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-08 08:22:25 +00:00
114 lines
4.4 KiB
Plaintext
114 lines
4.4 KiB
Plaintext
/datum/bounty/item/chef/birthday_cake
|
|
name = "Birthday Cake"
|
|
description = "A birthday party is coming up! Ship a complete birthday cake to celebrate!"
|
|
reward = 4000
|
|
wanted_types = list(
|
|
/obj/item/reagent_containers/food/snacks/variable/cake,
|
|
/obj/item/reagent_containers/food/snacks/sliceable/cake)
|
|
|
|
/datum/bounty/item/chef/soup
|
|
name = "Soup"
|
|
description = "To quell the homeless uprising, %COMPNAME will be serving soup to all underpaid workers. Ship any type of soup."
|
|
reward = 3000
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/soup)
|
|
|
|
/datum/bounty/item/chef/popcorn
|
|
name = "Popcorn Bags"
|
|
description = "Upper management wants to host a movie night. Ship bags of popcorn for the occasion."
|
|
reward = 3000
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/popcorn)
|
|
|
|
/datum/bounty/item/chef/icecreamsandwich
|
|
name = "Ice Cream Sandwiches"
|
|
description = "The Air Conditioning System in the CCIA Offices has failed. Ship some icecream."
|
|
reward = 4000
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/icecreamsandwich)
|
|
|
|
/datum/bounty/item/chef/pie
|
|
name = "Pie"
|
|
description = "%BOSSSHORT management wants a pie! Ship one pie."
|
|
reward = 3000
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/pie)
|
|
|
|
/datum/bounty/item/chef/salad
|
|
name = "Salad"
|
|
description = "%BOSSSHORT management is going on a health binge. Your order is to ship salad."
|
|
reward = 3000
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/salad)
|
|
|
|
/datum/bounty/item/chef/carrotfries
|
|
name = "Carrot Fries"
|
|
description = "A health craze has started among management. A shipment of carrot fries is the order."
|
|
reward = 3500
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/carrotfries)
|
|
|
|
/datum/bounty/item/chef/superbite
|
|
name = "Super Bite Burger"
|
|
description = "Commander Tubbs thinks he can set a competitive eating world record. All he needs is a super bite burger shipped to him."
|
|
reward = 12000
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/burger/superbite)
|
|
|
|
/datum/bounty/item/chef/poppypretzel
|
|
name = "Poppy Pretzel"
|
|
description = "%BOSSNAME needs a poppy pretzel for the drug-training of their security department."
|
|
reward = 3000
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/poppypretzel)
|
|
|
|
/datum/bounty/item/chef/cubancarp
|
|
name = "Cuban Carp"
|
|
description = "A Adhomai Representative is visiting %BOSSSHORT. Ship one cuban carp."
|
|
reward = 8000
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/cubancarp)
|
|
|
|
/datum/bounty/item/chef/hotdog
|
|
name = "Hot Dog"
|
|
description = "%COMPNAME is conducting taste tests to determine the best hot dog recipe. Ship your station's version to participate."
|
|
reward = 8000
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/hotdog)
|
|
|
|
/datum/bounty/item/chef/lemon
|
|
name = "Lemons"
|
|
description = "A commander needs fresh lemons. Ship him a few and he'll deposit the money into the station's account."
|
|
reward = 4000
|
|
required_count = 10
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/grown)
|
|
|
|
/datum/bounty/item/chef/lemon/applies_to(obj/O)
|
|
if(!..())
|
|
return FALSE
|
|
var/obj/item/reagent_containers/food/snacks/grown/L = O
|
|
if(L && L.plantname == "lemon")
|
|
return TRUE
|
|
return FALSE
|
|
|
|
/datum/bounty/item/chef/eggplantparm
|
|
name = "Eggplant Parmigianas"
|
|
description = "A famous singer will be arriving at %BOSSSHORT, and their contract demands that they only be served Eggplant Parmigiana. Ship some, please!"
|
|
reward = 3500
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/eggplantparm)
|
|
|
|
/datum/bounty/item/chef/muffin
|
|
name = "Muffins"
|
|
description = "%BOSSSHORT needs muffins! Your order is to rectify this."
|
|
reward = 3000
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/muffin)
|
|
|
|
/datum/bounty/item/chef/chawanmush
|
|
name = "Chawanmushi"
|
|
description = "Someone from middle-management mentioned Chawanmushi. We never tried them so we need you to ship Chawanmushi immediately."
|
|
reward = 8000
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/chawanmushi)
|
|
|
|
/datum/bounty/item/chef/kebab
|
|
name = "Kebabs"
|
|
description = "%BOSSSHORT is requesting a special order, please ship some kebabs."
|
|
reward = 3500
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/reagent_containers/food/snacks/variable/kebab) |