diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index f260c06af35..01ad8e8f82b 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -248,6 +248,16 @@ desc_extended = "There's a tag that reads: \"Apparition Halloween LLC.\"" icon_state = "ghostballoon" +/obj/item/toy/balloon/heart/red + name = "red heart balloon" + desc = "A big red balloon in a traditional heart shape. Represents love, not medical work!" + icon_state = "heartballoonred" + +/obj/item/toy/balloon/heart/pink + name = "pink heart balloon" + desc = "A big pink balloon in a traditional heart shape. Represents love, not medical work!" + icon_state = "heartballoonpink" + /obj/item/toy/balloon/color /// To color it, VV the 'color' var with a hex color code with the # included. desc = "It's a plain little balloon. Comes in many colors!" icon_state = "colorballoon" diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index c644372e766..a34f898af68 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -140,7 +140,9 @@ /obj/item/toy/balloon/bat = 1, /obj/item/toy/balloon/ghost = 1, /obj/item/toy/balloon/xmastree = 1, - /obj/item/toy/balloon/candycane = 1 + /obj/item/toy/balloon/candycane = 1, + /obj/item/toy/balloon/heart/red = 2, + /obj/item/toy/balloon/heart/pink = 2 ) /obj/random/desktoy diff --git a/html/changelogs/fyni-heart-balloons.yml b/html/changelogs/fyni-heart-balloons.yml new file mode 100644 index 00000000000..6d7d3b16c1f --- /dev/null +++ b/html/changelogs/fyni-heart-balloons.yml @@ -0,0 +1,4 @@ +author: fyni +delete-after: True +changes: + - rscadd: "Adds a red and pink heart balloon for valentines! Also adds them to the random balloon pool. <3 <3" \ No newline at end of file diff --git a/icons/mob/items/lefthand_toy.dmi b/icons/mob/items/lefthand_toy.dmi index befc93b4f09..7508ec97d1d 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 c27dce9c308..765a40ae3a3 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 59e45a01ea1..15e86c4fc89 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ