mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 12:05:59 +01:00
b3d954cfb7
* Fixes Bitrunner lacking job-based bounties (#84367) ## About The Pull Request Fixes #84283 by just adding actual bounties for Bitrunner, giving them something more interesting to do than random bounties for jobs they don't have access to. These bounties revolve around optionally turning in the special rewards from each of the bitrunning domains (a bike horn, the abductor plush, beach ball, etc) for a credit reward. I considered the idea of making each one drop a specific bounty chit that you turned in for a reward, but at that point it's just "paying you per domain" and I'm not sure how that would balance with economy. This is more just meant to be a framework for others to add things that might be a little more interesting. This also adds a special drop from the Pizzeria domain because I thought it was funny. * Fixes Bitrunner lacking job-based bounties --------- Co-authored-by: Vekter <TheVekter@users.noreply.github.com>
49 lines
2.3 KiB
Plaintext
49 lines
2.3 KiB
Plaintext
/datum/bounty/item/bitrunning/abductor_plush
|
|
name = "Abductor Plush"
|
|
description = "Rear Admiral Raynes' child won't stop bothering him for one of those little plush aliens. You can get one from the Abductor Ship domain."
|
|
reward = CARGO_CRATE_VALUE * 6
|
|
required_count = 1
|
|
wanted_types = list(/obj/item/toy/plush/abductor/agent = TRUE)
|
|
|
|
/datum/bounty/item/bitrunning/bubblegum
|
|
name = "Bubblegum Plush"
|
|
description = "Some of the miners have been talking about the breakroom being too sterile. We need something cute to spruce the place up a bit."
|
|
reward = CARGO_CRATE_VALUE * 10
|
|
required_count = 1
|
|
wanted_types = list(/obj/item/toy/plush/bubbleplush = TRUE)
|
|
|
|
/datum/bounty/item/bitrunning/honk
|
|
name = "Bike Horn"
|
|
description = "Bonbon the Clown lost his bike horn when Rear Admiral Raynes hurled him out an airlock for slipping him. Can you get us a replacement?"
|
|
reward = CARGO_CRATE_VALUE * 4
|
|
required_count = 1
|
|
wanted_types = list(/obj/item/bikehorn = TRUE)
|
|
|
|
/datum/bounty/item/bitrunning/pizzeria
|
|
name = "Slice of Pizzeria Pizza"
|
|
description = "Admiral Chivara keeps talking about wanting a slice of pizza from that old pizza joint that closed down. Y'know, the one with the robots."
|
|
reward = CARGO_CRATE_VALUE * 8
|
|
required_count = 1
|
|
wanted_types = list(/obj/item/food/pizzaslice/meat/pizzeria = TRUE)
|
|
|
|
/datum/bounty/item/bitrunning/psyker
|
|
name = "Psyker Headset"
|
|
description = "We're doing some research on psykers and could use some of their equipment. Can you send us one of their headsets if you find it?"
|
|
reward = CARGO_CRATE_VALUE * 8
|
|
required_count = 1
|
|
wanted_types = list(/obj/item/radio/headset/psyker = TRUE)
|
|
|
|
/datum/bounty/item/bitrunning/polar
|
|
name = "Polar Ushanka"
|
|
description = "A bunch of Russians raided one of our outposts and won't leave. They keep swearing at us and demanding we give them vodka and ushankas. Can you send us one?"
|
|
reward = CARGO_CRATE_VALUE * 3
|
|
required_count = 1
|
|
wanted_types = list(/obj/item/clothing/head/costume/ushanka/polar = TRUE)
|
|
|
|
/datum/bounty/item/bitrunning/syndicate
|
|
name = "Syndicate Plush"
|
|
description = "We're aware of some contraband that's made it aboard some of our stations that depict Syndicate agents as cute, marketable plushies. Please send us one so we can further investigate."
|
|
reward = CARGO_CRATE_VALUE * 8
|
|
required_count = 1
|
|
wanted_types = list(/obj/item/toy/plush/nukeplushie = 1)
|