diff --git a/code/game/objects/effects/posters/contraband.dm b/code/game/objects/effects/posters/contraband.dm index 556d1ed2772..564686430cc 100644 --- a/code/game/objects/effects/posters/contraband.dm +++ b/code/game/objects/effects/posters/contraband.dm @@ -13,7 +13,11 @@ name = "random pinup poster" icon_state = "rolled_poster" /// List of posters which make you feel a certain type of way - var/static/list/pinup_posters = list(/obj/structure/sign/poster/contraband/lizard, /obj/structure/sign/poster/contraband/lusty_xenomorph) + var/static/list/pinup_posters = list( + /obj/structure/sign/poster/contraband/lizard, + /obj/structure/sign/poster/contraband/lusty_xenomorph, + /obj/structure/sign/poster/contraband/double_rainbow, + ) /obj/item/poster/random_contraband/pinup/Initialize(mapload, obj/structure/sign/poster/new_poster_structure) poster_type = pick(pinup_posters) @@ -827,3 +831,10 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/contraband/jovial, 32) icon_state = "rolled_poster" MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/contraband/bojack, 32) + +/obj/structure/sign/poster/contraband/double_rainbow + name = "Double Rainbow" + desc = "It's so bright and vivid! What does this mean?" + icon_state = "double_rainbow" + +MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/poster/contraband/double_rainbow, 32) diff --git a/icons/obj/poster.dmi b/icons/obj/poster.dmi index 564c1e95cc4..c497daaf177 100644 Binary files a/icons/obj/poster.dmi and b/icons/obj/poster.dmi differ