Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

nerfs silver extracts #6629

Merged
merged 1 commit into from May 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion code/__HELPERS/unsorted.dm
Expand Up @@ -1471,7 +1471,9 @@ If it ever becomes necesary to get a more performant REF(), this lies here in wa
/obj/item/reagent_containers/food/snacks/clothing,
/obj/item/reagent_containers/food/snacks/grown/shell, //base types
/obj/item/reagent_containers/food/snacks/store/bread,
/obj/item/reagent_containers/food/snacks/grown/nettle
/obj/item/reagent_containers/food/snacks/grown/nettle,
/obj/item/reagent_containers/food/snacks/burger/roburger,
/obj/item/reagent_containers/food/snacks/grown/shell/gatfruit
)
blocked |= typesof(/obj/item/reagent_containers/food/snacks/customizable)

Expand Down
19 changes: 7 additions & 12 deletions code/modules/reagents/chemistry/recipes/slime_extracts.dm
Expand Up @@ -158,18 +158,13 @@

for(var/mob/living/carbon/C in viewers(T))
C.flash_act()

for(var/i in 1 to 4 + rand(1,2))
var/chosen = getbork()
var/obj/B = new chosen(T)
if(prob(5))//Fry it!
var/obj/item/reagent_containers/food/snacks/deepfryholder/fried
fried = new(T, B)
fried.fry() // actually set the name and colour it
B = fried
if(prob(50))
for(var/j in 1 to rand(1, 3))
step(B, pick(NORTH,SOUTH,EAST,WEST))
var/chosen = getbork()
var/obj/B = new chosen(T)
if(prob(5))//Fry it!
var/obj/item/reagent_containers/food/snacks/deepfryholder/fried
fried = new(T, B)
fried.fry() // actually set the name and colour it
B = fried
..()

/datum/chemical_reaction/slime/slimebork/proc/getbork()
Expand Down