From df64907f6b9a7fe7789a4bcd01170e0a42a12806 Mon Sep 17 00:00:00 2001 From: Arkatos1 Date: Thu, 28 Mar 2019 00:02:28 +0100 Subject: [PATCH] Broken morph introduction into proper paragraphs for better readibility, minor description changes --- code/game/gamemodes/miniantags/morph/morph.dm | 10 +++++----- code/modules/antagonists/_common/antag_spawner.dm | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/game/gamemodes/miniantags/morph/morph.dm b/code/game/gamemodes/miniantags/morph/morph.dm index 94c39d12442..12baa024cf7 100644 --- a/code/game/gamemodes/miniantags/morph/morph.dm +++ b/code/game/gamemodes/miniantags/morph/morph.dm @@ -38,11 +38,11 @@ var/atom/movable/form = null var/morph_time = 0 - var/playstyle_string = "You are a morph, an abomination of science created primarily with changeling cells. \ - You may take the form of anything nearby by shift-clicking it. This process will alert any nearby \ - observers, and can only be performed once every five seconds. While morphed, you move faster, but do \ - less damage. In addition, anyone within three tiles will note an uncanny wrongness if examining you. \ - You can attack any item or dead creature to consume it - creatures will restore 1/3 of your max health. \ + var/playstyle_string = "You are a morph.
As an abomination created primarily with changeling cells, \ + you may take the form of anything nearby by shift-clicking it. This process will alert any nearby \ + observers, and can only be performed once every five seconds.
While morphed, you move faster, but do \ + less damage. In addition, anyone within three tiles will note an uncanny wrongness if examining you.
\ + You can attack any item or dead creature to consume it - creatures will restore 1/3 of your max health.
\ Finally, you can restore yourself to your original form while morphed by shift-clicking yourself.
" /mob/living/simple_animal/hostile/morph/examine(mob/user) diff --git a/code/modules/antagonists/_common/antag_spawner.dm b/code/modules/antagonists/_common/antag_spawner.dm index c1155bee0d3..d8ff792435f 100644 --- a/code/modules/antagonists/_common/antag_spawner.dm +++ b/code/modules/antagonists/_common/antag_spawner.dm @@ -182,7 +182,7 @@ used = TRUE to_chat(user, "You break the seal on the bottle, calling upon the dire sludge to awaken...") - var/list/candidates = pollCandidates("Do you want to play as a Morph awakened by [user.real_name]?", ROLE_MORPH, 1, 100) + var/list/candidates = pollCandidates("Do you want to play as a morph awakened by [user.real_name]?", ROLE_MORPH, 1, 100) if(candidates.len > 0) var/mob/C = pick(candidates)