diff --git a/modular_bandastation/loadout/_loadout.dm b/modular_bandastation/loadout/_loadout.dm index 505d15063cd70..51ff5022b85b5 100644 --- a/modular_bandastation/loadout/_loadout.dm +++ b/modular_bandastation/loadout/_loadout.dm @@ -1,4 +1,4 @@ /datum/modpack/loadout name = "Loadout" - desc = "Изменения в loadout." - author = "larentoun" + desc = "Добавляет новые вещи в loadout и изменяет уже существующие." + author = "larentoun, Chorden" diff --git a/modular_bandastation/loadout/_loadout.dme b/modular_bandastation/loadout/_loadout.dme index c1ba4df8b8a99..39fe2629a8fd4 100644 --- a/modular_bandastation/loadout/_loadout.dme +++ b/modular_bandastation/loadout/_loadout.dme @@ -5,3 +5,4 @@ #include "code/loadout_items.dm" #include "code/loadout_preference.dm" #include "code/categories/accessories.dm" +#include "code/categories/pocket.dm" diff --git a/modular_bandastation/loadout/code/categories/pocket.dm b/modular_bandastation/loadout/code/categories/pocket.dm new file mode 100644 index 0000000000000..20be3ffed821a --- /dev/null +++ b/modular_bandastation/loadout/code/categories/pocket.dm @@ -0,0 +1,35 @@ +/datum/loadout_item/pocket_items/plush/hampter_ass + name = "Хамптер ассистент" + item_path = /obj/item/toy/plush/hampter/assistant + +/datum/loadout_item/pocket_items/plush/hampter_cap + name = "Хамптер капитан" + item_path = /obj/item/toy/plush/hampter/captain + +/datum/loadout_item/pocket_items/plush/hampter_ded + name = "Хамптер Дедсквада" + item_path = /obj/item/toy/plush/hampter/deadsquad + +/datum/loadout_item/pocket_items/plush/hampter_ert + name = "Хамптер ОБР" + item_path = /obj/item/toy/plush/hampter/ert + +/datum/loadout_item/pocket_items/plush/hampter_jan + name = "Хамптер уборщик" + item_path = /obj/item/toy/plush/hampter/janitor + +/datum/loadout_item/pocket_items/plush/hampter_med + name = "Хамптер врач" + item_path = /obj/item/toy/plush/hampter/medical + +/datum/loadout_item/pocket_items/plush/hampter_cap_old + name = "Хамптер старый капитан" + item_path = /obj/item/toy/plush/hampter/old_captain + +/datum/loadout_item/pocket_items/plush/hampter_sdy + name = "Хамптер синдиката" + item_path = /obj/item/toy/plush/hampter/syndicate + +/datum/loadout_item/pocket_items/plush/hampter_sec + name = "Хамптер офицер" + item_path = /obj/item/toy/plush/hampter/security diff --git a/modular_bandastation/objects/code/hampters.dm b/modular_bandastation/objects/code/hampters.dm index 94c5300f7260b..8b7838bc816b9 100644 --- a/modular_bandastation/objects/code/hampters.dm +++ b/modular_bandastation/objects/code/hampters.dm @@ -52,7 +52,7 @@ /obj/item/toy/plush/hampter/old_captain name = "хамптер старый капитан" - desc = "ПЛюшевый хамптер капитан в старой униформе. Это какой год?" + desc = "Плюшевый хамптер капитан в старой униформе. Это какой год?" icon_state = "hampter_old-cap" inhand_icon_state = "hampter_old-cap" worn_icon_state = "hampter_old-cap"