diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 2035b67b5e..6c3185b312 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -394,15 +394,15 @@ 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 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 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 ) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm index 9870a2cd36..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_VERY_RARE + 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_VERY_RARE + value = REAGENT_VALUE_RARE /datum/reagent/fermi/penis_enlarger/on_mob_metabolize(mob/living/M) . = ..()