From 1a82955f329d4f34208ed3d21ba6bf393e05eee4 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Thu, 9 Jul 2020 07:22:33 +0000 Subject: [PATCH 1/3] adds a wedding crate --- code/modules/cargo/packs/costumes_toys.dm | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/code/modules/cargo/packs/costumes_toys.dm b/code/modules/cargo/packs/costumes_toys.dm index c181d6fb74..e4401f5787 100644 --- a/code/modules/cargo/packs/costumes_toys.dm +++ b/code/modules/cargo/packs/costumes_toys.dm @@ -301,3 +301,34 @@ /obj/item/clothing/head/wizard/fake) crate_name = "wizard costume crate" crate_type = /obj/structure/closet/crate/wooden + +/datum/supply_pack/costumes_toys/wedding + name = "Wedding Crate" + desc = "Tie the knot IN SPACE! Hold your own extravagant wedding with this crate of suits and bridal gowns. Complete with champaigne, cake, and the luxurious cost you would expect for an event to remember." + cost = 10000 // weddings are absurdly expensive and so is this crate + contains = list(/obj/item/clothing/under/suit/black_really, //we don't actually need suits since you can vend them but the crate should feel "complete" + /obj/item/clothing/under/suit/black_really, + /obj/item/clothing/under/suit/charcoal, + /obj/item/clothing/under/suit/charcoal, + /obj/item/clothing/under/suit/navy, + /obj/item/clothing/under/suit/navy, + /obj/item/clothing/under/suit/burgundy, + /obj/item/clothing/under/suit/burgundy, // A pair of each "fancy suit" color for variety + /obj/item/clothing/under/suit/white, + /obj/item/clothing/under/suit/white, // white is a weird color for a groom but some people are weird + /obj/item/clothing/under/suit/polychromic, + /obj/item/clothing/under/suit/polychromic, // in case you can't be satisfied with the most fitting choices, of course. + /obj/item/clothing/under/dress/wedding, + /obj/item/clothing/under/dress/wedding, // this is what you actually bought the crate for. You can't get these anywhere else. + /obj/item/clothing/under/dress/wedding/orange, + /obj/item/clothing/under/dress/wedding/orange, + /obj/item/clothing/under/dress/wedding/purple, + /obj/item/clothing/under/dress/wedding/purple, + /obj/item/clothing/under/dress/wedding/blue, + /obj/item/clothing/under/dress/wedding/blue, + /obj/item/clothing/under/dress/wedding/red, + /obj/item/clothing/under/dress/wedding/red, // two of each + /obj/item/reagent_containers/food/drinks/bottle/champagne, //appropriate booze for a wedding + /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake) // we don't have a full wedding cake but this will do + crate_name = "wedding crate" + From bfa672b0914c46cc7cf2fafd5d20be72e87e05e0 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Thu, 9 Jul 2020 07:49:11 +0000 Subject: [PATCH 2/3] adds some rings to the wedding crate --- code/modules/cargo/packs/costumes_toys.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/cargo/packs/costumes_toys.dm b/code/modules/cargo/packs/costumes_toys.dm index e4401f5787..9a94be7f12 100644 --- a/code/modules/cargo/packs/costumes_toys.dm +++ b/code/modules/cargo/packs/costumes_toys.dm @@ -329,6 +329,8 @@ /obj/item/clothing/under/dress/wedding/red, /obj/item/clothing/under/dress/wedding/red, // two of each /obj/item/reagent_containers/food/drinks/bottle/champagne, //appropriate booze for a wedding - /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake) // we don't have a full wedding cake but this will do + /obj/item/reagent_containers/food/snacks/store/cake/vanilla_cake, // we don't have a full wedding cake but this will do + /obj/item/storage/fancy/ringbox/silver, + /obj/item/storage/fancy/ringbox/silver) //diamond rings cost the same price as this crate via cargo so we're not giving you two for free. Wedding rings are traditionally less valuable anyway. crate_name = "wedding crate" From 475a5460332d80833421e8e862599024f1acb98d Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Fri, 10 Jul 2020 04:06:55 +0000 Subject: [PATCH 3/3] adds wedding crate --- code/modules/cargo/packs/costumes_toys.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cargo/packs/costumes_toys.dm b/code/modules/cargo/packs/costumes_toys.dm index 9a94be7f12..08f9a927c6 100644 --- a/code/modules/cargo/packs/costumes_toys.dm +++ b/code/modules/cargo/packs/costumes_toys.dm @@ -304,7 +304,7 @@ /datum/supply_pack/costumes_toys/wedding name = "Wedding Crate" - desc = "Tie the knot IN SPACE! Hold your own extravagant wedding with this crate of suits and bridal gowns. Complete with champaigne, cake, and the luxurious cost you would expect for an event to remember." + desc = "Tie the knot IN SPACE! Hold your own extravagant wedding with this crate of suits and bridal gowns. Complete with champagne, cake, and the luxurious cost you would expect for an event to remember." cost = 10000 // weddings are absurdly expensive and so is this crate contains = list(/obj/item/clothing/under/suit/black_really, //we don't actually need suits since you can vend them but the crate should feel "complete" /obj/item/clothing/under/suit/black_really,