Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Slimecrossing Potions
//Extract cloner - Charged Grey
/obj/item/slimepotion/extract_cloner
name = "extract cloning potion"
desc = "An more powerful version of the extract enhancer potion, capable of cloning regular slime extracts."
desc = "A more powerful version of the extract enhancer potion, capable of cloning regular slime extracts."
icon = 'icons/obj/chemical/misc.dmi'
icon_state = "potpurple"

Expand Down Expand Up @@ -35,7 +35,7 @@ Slimecrossing Potions
//Peace potion - Charged Light Pink
/obj/item/slimepotion/peacepotion
name = "pacification potion"
desc = "A light pink solution of chemicals, smelling like liquid peace. And mercury salts."
desc = "A light pink solution of chemicals, which smells like liquid peace. And mercury salts."
icon = 'icons/obj/chemical/misc.dmi'
icon_state = "potlightpink"

Expand Down Expand Up @@ -93,7 +93,7 @@ Slimecrossing Potions
if(!do_after(user, 50, target = M))
return
to_chat(user, span_notice("You feed [M] the love potion!"))
to_chat(M, span_notice("You develop feelings for [user], and anyone [user.p_they()] like."))
to_chat(M, span_notice("You develop feelings for [user] and anyone [user.p_they()] like."))
if(M.mind)
M.mind.store_memory("You are in love with [user].")
M.faction |= "[REF(user)]"
Expand All @@ -119,7 +119,7 @@ Slimecrossing Potions
to_chat(user, span_warning("The potion can only be used on clothing!"))
return
if(C.min_cold_protection_temperature == SPACE_SUIT_MIN_TEMP_PROTECT && C.clothing_flags & STOPSPRESSUREDAMAGE)
to_chat(user, span_warning("The [C] is already pressure-resistant!"))
to_chat(user, span_warning("The [C] is already pressure resistant!"))
return ..()
to_chat(user, span_notice("You slather the blue gunk over the [C], making it airtight."))
C.name = "pressure-resistant [C.name]"
Expand All @@ -141,7 +141,7 @@ Slimecrossing Potions

//Lavaproofing potion - Charged Red
/obj/item/slimepotion/lavaproof
name = "slime lavaproofing potion"
name = "slime lava-proofing potion"
desc = "A strange, reddish goo said to repel lava as if it were water, without reducing flammability. Has two uses."
icon = 'icons/obj/chemical/misc.dmi'
icon_state = "potred"
Expand All @@ -156,10 +156,10 @@ Slimecrossing Potions
if(!proximity)
return ..()
if(!istype(C))
to_chat(user, span_warning("You can't coat this with lavaproofing fluid!"))
to_chat(user, span_warning("You can't coat this with lava-proofing fluid!"))
return ..()
to_chat(user, span_notice("You slather the red gunk over the [C], making it lavaproof."))
C.name = "lavaproof [C.name]"
to_chat(user, span_notice("You slather the red gunk over the [C], making it lava-proof."))
C.name = "lava-proof [C.name]"
C.remove_atom_colour(WASHABLE_COLOUR_PRIORITY)
C.add_atom_colour("#800000", FIXED_COLOUR_PRIORITY)
C.resistance_flags |= LAVA_PROOF
Expand All @@ -173,7 +173,7 @@ Slimecrossing Potions
//Revival potion - Charged Grey
/obj/item/slimepotion/slime_reviver
name = "slime revival potion"
desc = "Infused with plasma and compressed gel, this brings dead slimes back to life."
desc = "Infused with plasma and compressed gel, this potion brings dead slimes back to life."
icon = 'icons/obj/chemical/misc.dmi'
icon_state = "potsilver"

Expand All @@ -196,7 +196,7 @@ Slimecrossing Potions

//Stabilizer potion - Charged Blue
/obj/item/slimepotion/slime/chargedstabilizer
name = "slime omnistabilizer"
name = "slime omni-stabilizer"
desc = "An extremely potent chemical mix that will stop a slime from mutating completely."
icon = 'icons/obj/chemical/misc.dmi'
icon_state = "potcyan"
Expand All @@ -212,6 +212,6 @@ Slimecrossing Potions
to_chat(user, span_warning("The slime already has no chance of mutating!"))
return

to_chat(user, span_notice("You feed the slime the omnistabilizer. It will not mutate this cycle!"))
to_chat(user, span_notice("You feed the slime the omni-stabilizer. It will not mutate this cycle!"))
M.mutation_chance = 0
qdel(src)
Loading