forked from BeeStation/BeeStation-Hornet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added funny cores to cargo bounties (BeeStation#11685)
* added funny cores to cargo bounties * out of order...? * bumped up their worth * Create core.dm * fixed desc and added file to dme
- Loading branch information
1 parent
c1a299a
commit 2c44598
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/datum/bounty/item/core/New() | ||
..() | ||
description = "The admiral heard that a [name] core help you grow your beard, fetch a [name] core immediately! Ship it to receive a large payment." | ||
required_count = 1 | ||
|
||
/datum/bounty/item/core/mark_high_priority(scale_reward) | ||
return ..(max(scale_reward * 0.7, 1.2)) | ||
|
||
/datum/bounty/item/core/bleed | ||
name = "Bleed" | ||
reward = 25000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/blood) | ||
|
||
/datum/bounty/item/core/bluespace | ||
name = "Bluespace" | ||
reward = 45000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/bluespace) | ||
|
||
/datum/bounty/item/core/delimber | ||
name = "Delimber" | ||
reward = 30000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/bioscrambler) | ||
|
||
/datum/bounty/item/core/flux | ||
name = "Flux" | ||
reward = 20000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/flux) | ||
|
||
/datum/bounty/item/core/pyro | ||
name = "Pyro" | ||
reward = 25000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/pyro) | ||
|
||
/datum/bounty/item/core/vortex | ||
name = "Vortex" | ||
reward = 50000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/vortex) | ||
|
||
/datum/bounty/item/core/gravity | ||
name = "Gravity" | ||
reward = 20000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/grav) | ||
|
||
/datum/bounty/item/core/hallucination | ||
name = "Hallucination" | ||
reward = 15000 | ||
wanted_types = list(/obj/item/assembly/signaler/anomaly/hallucination) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/datum/export/core | ||
|
||
/datum/export/core/bleed | ||
cost = 5000 | ||
unit_name = "bleed" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) | ||
/datum/export/core/bluespace | ||
cost = 10000 | ||
unit_name = "bluespace" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) | ||
/datum/export/core/delimber | ||
cost = 3000 | ||
unit_name = "delimber" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) | ||
/datum/export/core/vortex | ||
cost = 15000 | ||
unit_name = "vortex" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) | ||
|
||
// These are created by the SM and therefore has a lower value. | ||
/datum/export/core/gravity | ||
cost = 500 | ||
unit_name = "gravity" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) | ||
/datum/export/core/hallucination | ||
cost = 250 | ||
unit_name = "hallucination" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) | ||
/datum/export/core/flux | ||
cost = 500 | ||
unit_name = "flux" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) | ||
/datum/export/core/pyro | ||
cost = 750 | ||
unit_name = "pyro" | ||
export_types = list(/obj/item/assembly/signaler/anomaly/) |