diff --git a/_maps/map_files/Birdshot/birdshot.dmm b/_maps/map_files/Birdshot/birdshot.dmm index 9b43f42a934..8705383535b 100644 --- a/_maps/map_files/Birdshot/birdshot.dmm +++ b/_maps/map_files/Birdshot/birdshot.dmm @@ -73290,8 +73290,8 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/central) "xEl" = ( -/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/twelve_percent_spirit_board, /turf/open/floor/wood, /area/station/service/chapel/office) "xEm" = ( diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 9c27bd8e225..2c422633acc 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -13429,7 +13429,7 @@ /turf/open/floor/iron/dark, /area/station/security/brig) "dmU" = ( -/obj/item/kirbyplants/random, +/obj/effect/spawner/random/structure/twelve_percent_spirit_board, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) "dnd" = ( diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index 35de63b6c17..a44ae2c0a60 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -58275,6 +58275,10 @@ /area/station/hallway/secondary/service) "rrf" = ( /obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/fancy/candle_box{ + pixel_y = 5 + }, /turf/open/floor/iron/dark, /area/station/service/chapel/office) "rrl" = ( @@ -73718,12 +73722,8 @@ /turf/open/floor/plating, /area/station/science/xenobiology) "wgu" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/obj/item/storage/crayons, /obj/machinery/newscaster/directional/west, +/obj/effect/spawner/random/structure/twelve_percent_spirit_board, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) "wgG" = ( diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index eac1e7fd443..b83681d53f4 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -33336,6 +33336,7 @@ dir = 4 }, /obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/spawner/random/structure/twelve_percent_spirit_board, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) "lPC" = ( diff --git a/_maps/map_files/NorthStar/north_star.dmm b/_maps/map_files/NorthStar/north_star.dmm index 47daf315272..b6ae75b8d34 100644 --- a/_maps/map_files/NorthStar/north_star.dmm +++ b/_maps/map_files/NorthStar/north_star.dmm @@ -87544,7 +87544,7 @@ /turf/open/floor/iron/dark, /area/station/security/holding_cell) "wzt" = ( -/obj/item/kirbyplants/random, +/obj/effect/spawner/random/structure/twelve_percent_spirit_board, /turf/open/floor/iron/white/textured_large, /area/station/service/chapel/office) "wzB" = ( diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index ecb57e68067..b422faecaf5 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -5735,6 +5735,7 @@ /area/station/medical/virology) "aQL" = ( /obj/machinery/airalarm/directional/south, +/obj/effect/spawner/random/structure/twelve_percent_spirit_board, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) "aQM" = ( diff --git a/code/game/objects/effects/spawners/random/structure.dm b/code/game/objects/effects/spawners/random/structure.dm index b6af4927502..359c147eb4f 100644 --- a/code/game/objects/effects/spawners/random/structure.dm +++ b/code/game/objects/effects/spawners/random/structure.dm @@ -2,6 +2,15 @@ name = "structure spawner" desc = "Now you see me, now you don't..." +///12% chance to spawn a ouija board, or a potted plant. Btw, Wawastation has a guaranteed board. +/obj/effect/spawner/random/structure/twelve_percent_spirit_board + name = "12% spirit board" + icon_state = "spirit_board" + loot = list( + /obj/structure/spirit_board = 3, + /obj/item/kirbyplants/random = 22, + ) + /obj/effect/spawner/random/structure/crate name = "crate spawner" icon_state = "crate_secure" diff --git a/icons/effects/random_spawners.dmi b/icons/effects/random_spawners.dmi index ed6c0c8702e..4e560833003 100644 Binary files a/icons/effects/random_spawners.dmi and b/icons/effects/random_spawners.dmi differ