From 9a35b8266938c3b80a352a014201dec6b2169762 Mon Sep 17 00:00:00 2001 From: SaintHusky <66943889+SaintHusky@users.noreply.github.com> Date: Wed, 17 Jun 2020 01:52:25 +0200 Subject: [PATCH] Made Giga harder to obtain Made Giga harder to obtain. --- code/__DEFINES/citadel_defines.dm | 2 +- modular_citadel/code/modules/arousal/organs/breasts.dm | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/code/__DEFINES/citadel_defines.dm b/code/__DEFINES/citadel_defines.dm index 1ac3215d..c5357b92 100644 --- a/code/__DEFINES/citadel_defines.dm +++ b/code/__DEFINES/citadel_defines.dm @@ -68,7 +68,7 @@ #define BREASTS_SIZE_O 15 #define BREASTS_SIZE_HUGE 16 #define BREASTS_SIZE_MASSIVE 17 -#define BREASTS_SIZE_GIGA 18 +#define BREASTS_SIZE_GIGA 25 #define BREASTS_SIZE_MIN BREASTS_SIZE_A diff --git a/modular_citadel/code/modules/arousal/organs/breasts.dm b/modular_citadel/code/modules/arousal/organs/breasts.dm index fbc3bd8f..8ca1e450 100644 --- a/modular_citadel/code/modules/arousal/organs/breasts.dm +++ b/modular_citadel/code/modules/arousal/organs/breasts.dm @@ -10,7 +10,7 @@ var/cached_size = null //for enlargement SHOULD BE A NUMBER var/prev_size //For flavour texts SHOULD BE A LETTER //var/breast_sizes = list ("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "huge", "massive", "giga", "flat") - var/breast_values = list ("a" = 1, "b" = 2, "c" = 3, "d" = 4, "e" = 5, "f" = 6, "g" = 7, "h" = 8, "i" = 9, "j" = 10, "k" = 11, "l" = 12, "m" = 13, "n" = 14, "o" = 15, "huge" = 16, "massive" = 17, "giga" = 18, "flat" = 0) // Note: Do not forget to define new sizes. + var/breast_values = list ("a" = 1, "b" = 2, "c" = 3, "d" = 4, "e" = 5, "f" = 6, "g" = 7, "h" = 8, "i" = 9, "j" = 10, "k" = 11, "l" = 12, "m" = 13, "n" = 14, "o" = 15, "huge" = 16, "massive" = 17, "giga" = 25, "flat" = 0) // Note: Do not forget to define new sizes. var/statuscheck = FALSE fluid_id = "milk" var/amount = 2 @@ -68,7 +68,7 @@ desc = "You see three sets of breasts, running from their chest to their belly." else desc = "You see some breasts, they seem to be quite exotic." - if(cached_size > 18) + if(cached_size > 18 && cached_size != 25) desc = "You see [pick("some serious honkers", "a real set of badonkers", "some dobonhonkeros", "massive dohoonkabhankoloos", "two big old tonhongerekoogers", "a couple of giant bonkhonagahoogs", "a pair of humongous hungolomghnonoloughongous")]. Their volume is way beyond cupsize now, measuring in about [round(cached_size)]cm in diameter." else if (!isnum(size)) if (size == "flat") @@ -138,7 +138,7 @@ statuscheck = TRUE - if(round(cached_size) < 19)//Because byond doesn't count from 0, I have to do this. + if(round(cached_size) < 19 && round(cached_size) == 25)//Because byond doesn't count from 0, I have to do this. if (prev_size == 0) prev_size = "flat" if(size == 0)//Bloody byond with it's counting from 1 @@ -154,5 +154,7 @@ var/mob/living/carbon/human/H = owner H.Force_update_genitals() prev_size = size - else if (cached_size >= 19) + else if (cached_size >= 18 && cached_size < 25) + size = "massive" + else if (cached_size >= 25) size = "giga" \ No newline at end of file