From fcd108006940c0c8da3cbd93cf800a918f2bf760 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Thu, 1 Apr 2021 05:36:43 -0700 Subject: [PATCH 1/4] more booby and dick pill --- code/game/objects/items/storage/firstaid.dm | 4 ++-- code/modules/vending/kinkmate.dm | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 2035b67b5e..8e497743e0 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -394,7 +394,7 @@ desc = "You want penis enlargement pills?" /obj/item/storage/pill_bottle/penis_enlargement/PopulateContents() - for(var/i in 1 to 7) + for(var/i in 1 to 10) new /obj/item/reagent_containers/pill/penis_enlargement(src) /obj/item/storage/pill_bottle/breast_enlargement @@ -402,7 +402,7 @@ desc = "Made by Fermichem - They have a woman with breasts larger than she is on them. The warming states not to take more than 10u at a time." /obj/item/storage/pill_bottle/breast_enlargement/PopulateContents() - for(var/i in 1 to 7) + for(var/i in 1 to 10) new /obj/item/reagent_containers/pill/breast_enlargement(src) /obj/item/storage/pill_bottle/neurine diff --git a/code/modules/vending/kinkmate.dm b/code/modules/vending/kinkmate.dm index 28e5a950ad..6d8eea1782 100644 --- a/code/modules/vending/kinkmate.dm +++ b/code/modules/vending/kinkmate.dm @@ -29,9 +29,9 @@ /obj/item/clothing/under/misc/poly_tanktop/female = 3, /obj/item/autosurgeon/penis = 3, /obj/item/autosurgeon/testicles = 3, - /obj/item/storage/pill_bottle/penis_enlargement = 5, - /obj/item/storage/pill_bottle/breast_enlargement = 5, - /obj/item/reagent_containers/glass/bottle/crocin = 5, + /obj/item/storage/pill_bottle/penis_enlargement = 10, + /obj/item/storage/pill_bottle/breast_enlargement = 10, + /obj/item/reagent_containers/glass/bottle/crocin = 10, /obj/item/reagent_containers/glass/bottle/camphor = 5, /obj/item/storage/daki = 4 ) From e7099c67a1692f0a7fdc349cadd245ac02cd5620 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Thu, 1 Apr 2021 05:45:26 -0700 Subject: [PATCH 2/4] oh right some fucker at cargo would abuse this. --- .../code/modules/reagents/chemistry/reagents/enlargement.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm index 9870a2cd36..3ff355b472 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm @@ -29,7 +29,7 @@ inverse_chem_val = 0.35 inverse_chem = /datum/reagent/fermi/BEsmaller //At really impure vols, it just becomes 100% inverse can_synth = FALSE - value = REAGENT_VALUE_VERY_RARE + value = REAGENT_VALUE_COMMON /datum/reagent/fermi/breast_enlarger/on_mob_metabolize(mob/living/M) . = ..() @@ -167,7 +167,7 @@ inverse_chem_val = 0.35 inverse_chem = /datum/reagent/fermi/PEsmaller //At really impure vols, it just becomes 100% inverse and shrinks instead. can_synth = FALSE - value = REAGENT_VALUE_VERY_RARE + value = REAGENT_VALUE_COMMON /datum/reagent/fermi/penis_enlarger/on_mob_metabolize(mob/living/M) . = ..() From a7726aa383d6027f44fd972b3287b10ed4a8f9b2 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Thu, 1 Apr 2021 06:07:25 -0700 Subject: [PATCH 3/4] re-enlarging the value --- .../code/modules/reagents/chemistry/reagents/enlargement.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm index 3ff355b472..1265fb1769 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm @@ -29,7 +29,7 @@ inverse_chem_val = 0.35 inverse_chem = /datum/reagent/fermi/BEsmaller //At really impure vols, it just becomes 100% inverse can_synth = FALSE - value = REAGENT_VALUE_COMMON + value = REAGENT_VALUE_RARE /datum/reagent/fermi/breast_enlarger/on_mob_metabolize(mob/living/M) . = ..() @@ -167,7 +167,7 @@ inverse_chem_val = 0.35 inverse_chem = /datum/reagent/fermi/PEsmaller //At really impure vols, it just becomes 100% inverse and shrinks instead. can_synth = FALSE - value = REAGENT_VALUE_COMMON + value = REAGENT_VALUE_RARE /datum/reagent/fermi/penis_enlarger/on_mob_metabolize(mob/living/M) . = ..() From 5152a605d8a7bbba4d8ecb7a76fd58b575a9ad43 Mon Sep 17 00:00:00 2001 From: BlueWildrose <57083662+BlueWildrose@users.noreply.github.com> Date: Thu, 1 Apr 2021 11:36:30 -0700 Subject: [PATCH 4/4] this is very warming --- code/game/objects/items/storage/firstaid.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 8e497743e0..6c3185b312 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -399,7 +399,7 @@ /obj/item/storage/pill_bottle/breast_enlargement name = "breast enlargement pills" - desc = "Made by Fermichem - They have a woman with breasts larger than she is on them. The warming states not to take more than 10u at a time." + desc = "Made by Fermichem - The bottle shows a woman with breasts larger than she is on them. The warning states to not take more than 10 units at a time." /obj/item/storage/pill_bottle/breast_enlargement/PopulateContents() for(var/i in 1 to 10)