diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 666fede9355..2733e134b7e 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -302,9 +302,10 @@ name = "comic book" desc = "A magazine presenting a fictional story through a sequence of images. Perfect for those long, boring shifts." w_class = ITEMSIZE_SMALL - icon = 'icons/obj/toy.dmi' icon_state = "comic" item_state = "comic" + drop_sound = 'sound/items/drop/paper.ogg' + pickup_sound = 'sound/items/pickup/paper.ogg' /obj/item/toy/comic/inspector name = "inspector 404 manga" @@ -321,6 +322,17 @@ icon_state = "comicstormman" item_state = "comicstormman" +/obj/item/toy/comic/outlandish_tales + name = "outlandish tales magazine" + desc = "A magazine specialized in publishing Tajaran Otherworldly Literature stories. The periodical magazine features texts submitted by amateur and established writers alike. \ + Since it is printed using cheap, recycled paper, outlandish tales is sold for a couple of credits on the streets of Little Adhomai. The magazine also has a section dedicated to \ + exploring the urban legends and mysteries of Mendell City." + desc_fluff = "Influenced by recent events and the growing interest in urban legends, Little Adhomai became the birthplace of Tajaran Otherworldly Literature. This literary genre combines \ + aspects of fantasy, horror, and speculative fiction alongside Adhomian paranormal elements, frequently reimagining mythological creatures and events. Tajaran Otherworldly texts are usually \ + published in magazines or on extranet sites." + icon_state = "comicoutlandish" + item_state = "comicoutlandish" + // // Toy Crossbows // diff --git a/code/modules/client/preference_setup/loadout/loadout_general.dm b/code/modules/client/preference_setup/loadout/loadout_general.dm index 3386a7bdedd..b61cfdaa909 100644 --- a/code/modules/client/preference_setup/loadout/loadout_general.dm +++ b/code/modules/client/preference_setup/loadout/loadout_general.dm @@ -280,7 +280,7 @@ /datum/gear/comic display_name = "comic selection" - description = "A selection of comics and manga from across the Spur." + description = "A selection of comics, manga, and magazines from across the Spur." path = /obj/item/toy/comic /datum/gear/comic/New() @@ -289,6 +289,7 @@ comics["comic book"] = /obj/item/toy/comic comics["inspector 404 manga"] = /obj/item/toy/comic/inspector comics["stormman manga"] = /obj/item/toy/comic/stormman + comics["outlandish tales magazine"] = /obj/item/toy/comic/outlandish_tales gear_tweaks += new /datum/gear_tweak/path(comics) /datum/gear/toothpaste diff --git a/html/changelogs/alberyk-magazine.yml b/html/changelogs/alberyk-magazine.yml new file mode 100644 index 00000000000..b11aa23cdf2 --- /dev/null +++ b/html/changelogs/alberyk-magazine.yml @@ -0,0 +1,6 @@ +author: Alberyk, Ramke + +delete-after: True + +changes: + - rscadd: "Added the outlandish tales magazine to the loadout." diff --git a/icons/mob/items/lefthand_toy.dmi b/icons/mob/items/lefthand_toy.dmi index cb5561cede2..58ccb446306 100644 Binary files a/icons/mob/items/lefthand_toy.dmi and b/icons/mob/items/lefthand_toy.dmi differ diff --git a/icons/mob/items/righthand_toy.dmi b/icons/mob/items/righthand_toy.dmi index a34ef7e54ee..ccfcbc17d96 100644 Binary files a/icons/mob/items/righthand_toy.dmi and b/icons/mob/items/righthand_toy.dmi differ diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index 84f02065b34..d4d6251878d 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ