mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 17:11:22 +00:00
-removes the shotgun magazines things, not done properly by #5010 -fixes more secret chems showing up on cargo warehouse -removes rainbow slime core, since there is no way you can get it, from the bounties -fix the adhomian bread recipe -removes the mining drone ore hunting behavior, which just ended with them falling down holes and other dumb things -fixes #5097 by removing the bluespace leak ruin, since the bluespace walls had some bizarre interaction with simulated turfs in the asteroid, besides just pushing half of the loots into walls
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
/datum/bounty/item/slime
|
|
reward = 3000
|
|
|
|
/datum/bounty/item/slime/New()
|
|
..()
|
|
description = "%COMPNAME's science lead is hunting for the rare and exotic [name]. A bounty has been offered for finding it."
|
|
reward += rand(0, 4) * 500
|
|
|
|
/datum/bounty/item/slime/green
|
|
name = "Green Slime Extract"
|
|
wanted_types = list(/obj/item/slime_extract/green)
|
|
|
|
/datum/bounty/item/slime/pink
|
|
name = "Pink Slime Extract"
|
|
wanted_types = list(/obj/item/slime_extract/pink)
|
|
|
|
/datum/bounty/item/slime/gold
|
|
name = "Gold Slime Extract"
|
|
wanted_types = list(/obj/item/slime_extract/gold)
|
|
|
|
/datum/bounty/item/slime/oil
|
|
name = "Oil Slime Extract"
|
|
wanted_types = list(/obj/item/slime_extract/oil)
|
|
|
|
/datum/bounty/item/slime/black
|
|
name = "Black Slime Extract"
|
|
wanted_types = list(/obj/item/slime_extract/black)
|
|
|
|
/datum/bounty/item/slime/lightpink
|
|
name = "Light Pink Slime Extract"
|
|
wanted_types = list(/obj/item/slime_extract/lightpink)
|
|
|
|
/datum/bounty/item/slime/adamantine
|
|
name = "Adamantine Slime Extract"
|
|
wanted_types = list(/obj/item/slime_extract/adamantine)
|