mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-14 19:03:21 +00:00
* Cargo Bounties * Rebalance and merge exports into bounties. * Tweak and add bounties. * Fix spelling errors + tweak mech prices. * Last minute bugfix * Add bounty consoles to maps. * Naksu changes * save 500 cycles woooooooooooooooooooooooooo * One last price tweak * Nerf addy and alien sheets
21 lines
639 B
Plaintext
21 lines
639 B
Plaintext
/datum/round_event_control/high_priority_bounty
|
|
name = "High Priority Bounty"
|
|
typepath = /datum/round_event/high_priority_bounty
|
|
max_occurrences = 3
|
|
weight = 20
|
|
earliest_start = 10
|
|
|
|
/datum/round_event/high_priority_bounty/announce(fake)
|
|
priority_announce("Central Command has issued a high-priority cargo bounty. Details have been sent to all bounty consoles.", "Nanotrasen Bounty Program")
|
|
|
|
/datum/round_event/high_priority_bounty/start()
|
|
var/datum/bounty/B
|
|
for(var/attempts = 0; attempts < 50; ++attempts)
|
|
B = random_bounty()
|
|
if(!B)
|
|
continue
|
|
B.mark_high_priority(3)
|
|
if(try_add_bounty(B))
|
|
break
|
|
|