forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Changelog :cl: add: Мерж оффов add: Для локалок добавлена возможность быстрого экспорта JSON-файлов персонажей и DMI-файла, содержащего спрайты персонажей add: Сварка теперь может зажечь незажжённую сигарету в чужом рту add: Добавлены ящики с Disabler SMG, их можно купить в Карго, в них содержатся 2 Disabler SMG - новый тип двуручного скорострельного дизейблер-оружия add: Добавлен симптом Cranial Hypertrichosis для advanced microbes, ведет себя аналогично Hairgrownium add: Добавлен новый модуль для модьсюта - модуль дымовой гранаты, доступен в Uplink и illegal tech add: Добавлен новый трейт, "Sleight of hand" (ловкость рук) для бармена tweak: Бармен больше не владеет дзюдо, вместо этого он владеет "Sleight of hand" tweak: Headslug теперь доступен всем генокрадам по умолчанию, но может быть выполнен только один раз за поглощение tweak: Способности генокрадов не могут быть использованы в течении 10 секунд после возрождения с помощью стазиса tweak: Добавлены названия и описания ко многим пулям и ящикам с патронами tweak: Автоматический отчет коронера, создаваемый при использовании ручки на сканере аутопсии (существует с 2017 года), был улучшен и уточнен tweak: В письме теперь указывается должность получателя при осмотре tweak: При ударе кого-либо выключенным батоном теперь вызывается анимация tweak: Переписывает и уточняет сообщение Плачущего ангела, когда его превращает волшебник, использующий "Flesh to stone" и палочку "Animate" tweak: Сообщение PM to-... было перемещено из категории Unsorted в категорию Admin PMs tweak: Фотографии теперь можно сжигать с помощью любого горящего предмета (сварка, зажигалка и т.д.) tweak: Дым больше не убивает тайлы Блоба tweak: Автонаведение шоковых имплантатов сильно снижено tweak: Скорость броска дизармом от шоковых имплантов снижена tweak: Изолированные перчатки блокируют бросок дизармом от шоковых имплантатов, но не выносливость tweak: Ксеноморфы больше не тратят дополнительные 2 секунды на принудительное применение таблеток/пластырей, поздравляем, если вы заметили разницу fix: Ксеноморфы больше не будут отправляться в null в некоторых странных ситуациях fix: Исправлены патчи с лишней инъекцией и реакцией на применение fix: Исправлены таблетки, реагирующие на реагенты с гораздо меньшей долей, чем перенесенный объем в большинстве случаев fix: Исправлены патчи мгновенного применения, не уведомляющие цель fix: Chemmasters больше не будут получать хит при откручивании fix: Граб теперь можно усилить, когда нападающий пристегнут spellcheck: При попытке наложить патчи на КПБ больше не упоминается невозможность их накормить /:cl: <!-- Оба :cl:'а должны быть на месте, что-бы чейнджлог работал! Вы можете написать свой ник справа от первого :cl:, если хотите. Иначе будет использован ваш ник на ГитХабе. --> <!-- Вы можете использовать несколько записей с одинаковым префиксом (Они используются только для иконки в игре) и удалить ненужные. Помните, что чейнджлог должен быть понятен обычным игроком. --> <!-- Если чейнджлог не влияет на игроков(например, это рефактор), вы можете исключить всю секцию. -->
- Loading branch information
Showing
65 changed files
with
558 additions
and
260 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
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 |
---|---|---|
|
@@ -38,3 +38,5 @@ | |
#define APC_IS_CHARGING 1 | ||
/// APC battery is at 100% | ||
#define APC_FULLY_CHARGED 2 | ||
|
||
#define KW *1000 |
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
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,49 @@ | ||
/* | ||
////////////////////////////////////// | ||
Cranial Hypertrichosis | ||
Very very Noticeable. | ||
Decreases resistance slightly. | ||
Decreases stage speed. | ||
Reduced transmittability | ||
Intense Level. | ||
BONUS | ||
Makes the mob grow massive hair, regardless of gender. | ||
////////////////////////////////////// | ||
*/ | ||
|
||
/datum/symptom/hair | ||
name = "Cranial Hypertrichosis" | ||
stealth = -3 | ||
resistance = -1 | ||
stage_speed = -3 | ||
transmittable = -1 | ||
level = 4 | ||
severity = 1 | ||
|
||
/datum/symptom/hair/Activate(datum/disease/advance/A) | ||
..() | ||
if(prob(SYMPTOM_ACTIVATION_PROB)) | ||
if(!ishuman(A.affected_mob)) | ||
return | ||
var/mob/living/carbon/human/H = A.affected_mob | ||
if(H.dna.species.bodyflags & BALD) | ||
return | ||
var/obj/item/organ/external/head/head_organ = H.get_organ("head") | ||
if(!istype(head_organ)) | ||
return | ||
switch(A.stage) | ||
if(1, 2, 3) | ||
to_chat(H, "<span class='warning'>Your scalp itches.</span>") | ||
head_organ.h_style = random_hair_style(H.gender, head_organ.dna.species.name) | ||
else | ||
to_chat(H, "<span class='warning'>Hair bursts forth from your scalp!</span>") | ||
var/datum/sprite_accessory/tmp_hair_style = GLOB.hair_styles_full_list["Very Long Hair"] | ||
|
||
if(head_organ.dna.species.name in tmp_hair_style.species_allowed) //If 'Very Long Hair' is a style the person's species can have, give it to them. | ||
head_organ.h_style = "Very Long Hair" | ||
else //Otherwise, give them a random hair style. | ||
head_organ.h_style = random_hair_style(H.gender, head_organ.dna.species.name) | ||
H.update_hair() |
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
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
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
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
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
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
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
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
Oops, something went wrong.