From f3cf8e741ad55b10233d7dd818234850b074e6d2 Mon Sep 17 00:00:00 2001 From: Neerti Date: Sun, 1 Sep 2013 00:20:29 -0400 Subject: [PATCH 1/3] Adds the replica syndicate space helmet to the list of prizes able to be obtained from the arcade machine. --- code/game/machinery/computer/arcade.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index 07eb9b67622..dbdce7ea28e 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -19,6 +19,7 @@ /obj/item/toy/gun = 2, /obj/item/toy/crossbow = 2, /obj/item/clothing/suit/syndicatefake = 2, + /obj/item/clothing/head/syndicatefake = 2, /obj/item/weapon/storage/fancy/crayons = 2, /obj/item/toy/spinningtoy = 2, /obj/item/toy/prize/ripley = 1, From d104cd1c3e253bdf19eb789b9279e704083ec09b Mon Sep 17 00:00:00 2001 From: Neerti Date: Sun, 1 Sep 2013 01:01:53 -0400 Subject: [PATCH 2/3] Made it so instead of getting the suit or a helmet, you will receive both inside a box that looks very similar to the one you get for ordering a real suit from an uplink. --- code/game/machinery/computer/arcade.dm | 3 +-- code/game/objects/items/weapons/storage/boxes.dm | 10 ++++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index dbdce7ea28e..3db362de1f2 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -18,8 +18,7 @@ /obj/item/toy/sword = 2, /obj/item/toy/gun = 2, /obj/item/toy/crossbow = 2, - /obj/item/clothing/suit/syndicatefake = 2, - /obj/item/clothing/head/syndicatefake = 2, + /obj/item/weapon/storage/box/fakesyndiesuit = 2, /obj/item/weapon/storage/fancy/crayons = 2, /obj/item/toy/spinningtoy = 2, /obj/item/toy/prize/ripley = 1, diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 21d542800ea..891168d22fb 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -384,6 +384,16 @@ new /obj/item/weapon/handcuffs(src) new /obj/item/weapon/handcuffs(src) +/obj/item/weapon/storage/box/fakesyndiesuit + name = "Space Suit and Helmet" + desc = "A sleek, study box used to hold replica spacesuits." + icon_state = "box_of_doom" + + New() + ..() + new /obj/item/clothing/head/syndicatefake(src) + new /obj/item/clothing/suit/syndicatefake(src) + /obj/item/weapon/storage/box/mousetraps name = "box of Pest-B-Gon Mousetraps" desc = "WARNING: Keep out of reach of children." From cedfa6415ec0559e7039325782134cb72f859505 Mon Sep 17 00:00:00 2001 From: Neerti Date: Sun, 1 Sep 2013 03:56:36 -0400 Subject: [PATCH 3/3] Fixed a typo in the box's description, thanks Kaze. --- code/game/objects/items/weapons/storage/boxes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 891168d22fb..f2bd3a159d0 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -386,7 +386,7 @@ /obj/item/weapon/storage/box/fakesyndiesuit name = "Space Suit and Helmet" - desc = "A sleek, study box used to hold replica spacesuits." + desc = "A sleek, sturdy box used to hold replica spacesuits." icon_state = "box_of_doom" New()