From 8779b11c0c1c913039da8d4b5d09674956be73a9 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sat, 19 Jan 2019 23:49:59 +0100 Subject: [PATCH 1/3] Eggdating the Egg Egg now has a higher chance to Egg --- code/datums/supplypacks/costumes_vr.dm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/code/datums/supplypacks/costumes_vr.dm b/code/datums/supplypacks/costumes_vr.dm index 276834a874..27c31c8ff8 100644 --- a/code/datums/supplypacks/costumes_vr.dm +++ b/code/datums/supplypacks/costumes_vr.dm @@ -265,9 +265,10 @@ /datum/supply_packs/costumes/wiggler name = "Secret Egg" - contains = list( - /obj/item/clothing/head/wiggler - ) - cost = 100 + cost = 60 containertype = /obj/structure/closet/secure_closet/egg/shark - containername = "Top Secret Egg" \ No newline at end of file + containername = "Top Secret Egg" + +/datum/supply_packs/costumes/wiggler/initialize() + starts_with = list(pick(/obj/item/clothing/head/wiggler;0.1,/obj/structure/closet/secure_closet/egg/shark;0.9)) +return ..() From 58ab1bb11d321c0f9587bd9bab96c9ca1cc47fee Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sat, 19 Jan 2019 23:53:01 +0100 Subject: [PATCH 2/3] Fixing the eggdenting Indenting was broken now its not --- code/datums/supplypacks/costumes_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/supplypacks/costumes_vr.dm b/code/datums/supplypacks/costumes_vr.dm index 27c31c8ff8..3f381ac12c 100644 --- a/code/datums/supplypacks/costumes_vr.dm +++ b/code/datums/supplypacks/costumes_vr.dm @@ -271,4 +271,4 @@ /datum/supply_packs/costumes/wiggler/initialize() starts_with = list(pick(/obj/item/clothing/head/wiggler;0.1,/obj/structure/closet/secure_closet/egg/shark;0.9)) -return ..() + return ..() From 8214fac5d456c5c86ceaeeaada667b795fcac372 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sun, 20 Jan 2019 01:01:18 +0100 Subject: [PATCH 3/3] Eggdate phase 1 This compiled so i hope travis doesnt bitch slap it --- code/datums/supplypacks/costumes_vr.dm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/code/datums/supplypacks/costumes_vr.dm b/code/datums/supplypacks/costumes_vr.dm index 3f381ac12c..f80a553d86 100644 --- a/code/datums/supplypacks/costumes_vr.dm +++ b/code/datums/supplypacks/costumes_vr.dm @@ -263,12 +263,15 @@ containertype = /obj/structure/closet/crate containername = "Saddlebags crate" +/obj/structure/closet/secure_closet/egg/shark/secret + name = "Secret Egg" + desc = "There is no yolk" + /datum/supply_packs/costumes/wiggler name = "Secret Egg" + contains = list( + /obj/structure/closet/secure_closet/egg/shark/secret + ) cost = 60 containertype = /obj/structure/closet/secure_closet/egg/shark containername = "Top Secret Egg" - -/datum/supply_packs/costumes/wiggler/initialize() - starts_with = list(pick(/obj/item/clothing/head/wiggler;0.1,/obj/structure/closet/secure_closet/egg/shark;0.9)) - return ..()