# lact_lib if $ARGS[0] = '$get_bfat_tissue': !! func('lact_lib', 'get_bfattissue', npc_nbsize, npc_lactatemm) !! function to get breast fat tissue amount. Can be used for NPC as well as PC. !! ARGS[1] = npc_nbsize - the natural bust size of the NPC/PC. !! ARGS[2] = npc_lactatemm - he lactatemm of the NPC/PC. !! RESULT = Fat amount in ccm * 10. !! function for cup size volume in ccm y = 0,0002023*x^3 + 0,029199*x^2 + 4,3791*x + 70 !! x = ((ARGS[1]/5) + 1)*10 !! this function is based on the x figures for pcs_bust size (moving in steps of 5) and the actual cup sizes from a wikipedia table, which can be found here: https://en.wikipedia.org/wiki/Bra_size !! The function was estimated with excel using a trend line estimation for polynoms of third grade and a y = 0 at 70ccm !! https://www.ncbi.nlm.nih.gov/pubmed/11936199 !! The percentage of fat volume in the total breast volume varied from 7 to 56% and the percentage of fat weight in the total breast weight varied from 3.6 to 37.6%. This great variability in the respective proportions of fat and glands in the evaluated specimens was not significantly correlated to age and body mass index. if ARGS[1] > 0: temp_var = ((ARGS[1]/5) + 1)*10 temp_var2 = (((2023*temp_var*temp_var*temp_var)/10000000)+((29199*temp_var*temp_var)/1000000)+((43791*temp_var)/10000)+70)*10 if temp_var2 > ARGS[2]: RESULT = temp_var2 - (ARGS[2] + ARGS[2]/50) elseif temp_var2 = ARGS[2]: RESULT = 0 else cls & 'BAD ARGUMENT CHECK IN $get_bfat_tissue! - Node ARGS[1] - more mammary gland tissue available then total breast tissue.' end else if ARGS[2] > 700: cls & 'BAD ARGUMENT CHECK IN $get_bfat_tissue! - Node ARGS[2] - more mammary gland tissue available then total breast tissue.' else RESULT = 700 end end end if $ARGS[0] = '$calc_npc_lactatemm_0': !! func('lact_lib', 'calc_npc_lactatemm_0', npc_glandamount, npc_prodstate, npc_breastage, npc_breastcount) !! New calc lactatemm function usuable for NPCs. Test function number one. !! ARGS[1] = npc_glandamount - The glandamount of the npc per breast. Glandamount here is actually the alveoli amount per breast. The value is 4500 to 150000 per breast depending on the genetics or if the npc went through pregnancy already. !! ARGS[2] = npc_prodstate - The breast production state of the npc. State can be "none", "induced" or "natural". !! ARGS[3] = npc_breastage - State can be "virgin" or "mature". Virgin in this case means that the breasts did not go through pregnancy changes yet, while mature is a fully developed breast that had all the changes during pregnancy. !! To determine the breastage, just check if the NPC has gone through pregnancy or not. !! ARGS[4] = npc_breastcount - The breast count of the NPC. If 0 the result will always be 0. Could be used for amputation events or multiple breasts events. !! The function will return something even if there is no lactation currently happening. this could be used for special events where sudden lactation is induced with the help of drugs. For example a lactation pill that will cause the NPC to lactate immediately without classical induction or natural growth during pregnancy. !! RESULT = lactatemm in ml*10 if ARGS[2] = 'none': if ARGS[3] = 'virgin': temp_var = 2 elseif ARGS[3] = 'mature': temp_var = 2 else cls & 'BAD ARGUMENT CHECK IN $calc_npc_lactatemm_0! - Node ARGS[2] "none".' end elseif ARGS[2] = 'induced': if ARGS[3] = 'virgin': temp_var = 20 elseif ARGS[3] = 'mature': temp_var = 80 else cls & 'BAD ARGUMENT CHECK IN $calc_npc_lactatemm_0! - Node ARGS[2] "induced".' end elseif ARGS[2] = 'natural': if ARGS[3] = 'virgin': temp_var = 20 elseif ARGS[3] = 'mature': temp_var = 80 else cls & 'BAD ARGUMENT CHECK IN $calc_npc_lactatemm_0! - Node ARGS[2] "natural".' end else cls & 'BAD ARGUMENT CHECK IN $calc_npc_lactatemm_0! - Root Node ARGS[2].' end if ARGS[1] <= 0: RESULT = 0 else RESULT = (ARGS[1]*temp_var*ARGS[4])/1000 end end if $ARGS[0] = '$calc_lactatemm': !! func('lact_lib', 'calc_lactatemm') !! No arguments at the moment. Information is taken from the global variables 'nbsize', 'lactate','lactateinduced','kid'. !! lactatemm should be calculated every day, so if the breasts size is changed naturally the lactatemm will get higher. No change when silicone tits happen. Only natural breast tissue should make milk. !! Usage: lactatemm = func('lact_lib','$calc_lactatemm') !! RESULT = lactatemm in ml*10 if lactate = 0: RESULT = 0 elseif lactate >0: temp_breastsize = 0 temp_breastsize += nbsize temp_var = 0 !! This if needs to be changed later. If the kid is lost during the pregnancy, Sveta may still went through full breast development. If changing something here, please contact milky_boobs in the forums. if kid <= 0: temp_var = ((8*temp_breastsize*temp_breastsize)+(37*temp_breastsize))/4 RESULT = temp_var else RESULT = ((8*temp_breastsize*temp_breastsize)+(37*temp_breastsize)) end else cls & 'BAD ARGUMENT CHECK IN $calc_lactatemm!' end end if $ARGS[0] = '$get_breastmilk_time': !! func('lact_lib','$get_breastmilk_time', sucktion_type, milk_demand) !! ARGS[1] = sucktion_type: the type of sucktion. adult_mouth [0], child_mouth [1], baby_mouth [2], manual_breastpump [3] , electric_breastpump [4], hand_expressing [5], cow milker [6], weak baby_mouth [7] !! ARGS[2] = milk_demand: how much milk is demanded. Warning: Should be ml and not in ml*10 for ease of use. :D !! RESULT = Time in Minutes !! Usage: breastmilktimetoget = func('lact_lib','$get_breastmilk_time', 2, 150) !! This function is just calculating the amount of time needed to get a specific amount of milk from svetas breasts. It is not pumping milk from her or changes anything else. !! If you want to milk sveta, use get_breastmilk. if lactate > 0: !! 'suck_flow_rate initialized' Base Rate of sucking is 10ml/minute. if ARGS[1] = 0: !! 'adult sucking' suck_flow_rate = 120 elseif ARGS[1] = 1: !! 'child sucking' suck_flow_rate = 110 elseif ARGS[1] = 2: !! 'baby sucking' suck_flow_rate = 80 elseif ARGS[1] = 3: !! 'manual_breastpump sucking' suck_flow_rate = 180 elseif ARGS[1] = 4: !! 'electric_breastpump sucking' suck_flow_rate = 400 elseif ARGS[1] = 5: !! 'hand expression' suck_flow_rate = 105 elseif ARGS[1] = 6: !! 'cow milker sucking' suck_flow_rate = 1000 elseif ARGS[1] = 7: !! 'weak baby sucking' suck_flow_rate = 50 temp_var = pcs_mood + ARGS[2] if temp_var > 100: pcs_mood = 100 else pcs_mood += ARGS[2] end else !! 'suck flow else branch' suck_flow_rate = 100 end if pcs_nips > 0: max_nip_flow_rate = 60 elseif pcs_nips > 20: max_nip_flow_rate = 80 elseif pcs_nips > 40: max_nip_flow_rate = 100 elseif pcs_nips > 60: max_nip_flow_rate = 120 elseif pcs_nips > 80: max_nip_flow_rate = 140 elseif pcs_nips > 100: max_nip_flow_rate = 160 else max_nip_flow_rate = 100 end if breastcounter > 0: temp_var = breastcounter/10 soreness_mod += temp_var if soreness_mod > 20: soreness_mod = 20 if nipple_cream = 1: soreness_mod += 20 nipple_cream = 0 end end nip_flow_mod = 1 temp_var = breastcounter/10 nip_flow_mod += temp_var if nip_flow > 30: nip_flow_mod = 30 max_nip_flow_rate += nip_flow_mod if (lactaterate/60) < 1 and lactaterate > 0: temp_lactaterate = 1 else temp_lactaterate = lactaterate/60 end if lactatemv >= (ARGS[2]*10): if max_nip_flow_rate <= suck_flow_rate: temp_var = (ARGS[2]*10)/max_nip_flow_rate else temp_var = (ARGS[2]*10)/suck_flow_rate end RESULT = temp_var elseif lactatemv > 0 and lactatemv < (ARGS[2]*10): if max_nip_flow_rate <= suck_flow_rate: temp_var = lactatemv/max_nip_flow_rate temp_var2 = (ARGS[2]*10) - lactatemv if max_nip_flow_rate <= temp_lactaterate: temp_var += temp_var2/max_nip_flow_rate else temp_var += temp_var2/(temp_lactaterate*10) end else temp_var = lactatemv/suck_flow_rate temp_var2 = (ARGS[2]*10) - lactatemv if suck_flow_rate <= temp_lactaterate: temp_var += temp_var2/suck_flow_rate else temp_var += temp_var2/(temp_lactaterate*10) end end RESULT = temp_var elseif lactatemv <=0: if max_nip_flow_rate <= suck_flow_rate: if max_nip_flow_rate <= temp_lactaterate: temp_var = (ARGS[2]*10)/max_nip_flow_rate else temp_var = (ARGS[2]*10)/(temp_lactaterate*10) end else if suck_flow_rate <= temp_lactaterate: temp_var = (ARGS[2]*10)/suck_flow_rate else temp_var = (ARGS[2]*10)/(temp_lactaterate*10) end end RESULT = temp_var else RESULT = 0 end else RESULT = 0 end end if $ARGS[0] = '$get_breastmilk': !! func('lact_lib','$get_breastmilk', sucktion_type, sucktion_time) !! ARGS[1] = sucktion_type: the type of sucktion. adult_mouth [0], child_mouth [1], baby_mouth [2], manual_breastpump [3] , electric_breastpump [4], hand_expressing [5], cow milker [6], weak baby_mouth [7] !! ARGS[2] = sucktion_time: how many minutes the sucking/pumping takes place !! Usage: breastmilkvolume = func('lact_lib','$get_breastmilk', 4, 20) !! RESULT = Milk in ml*10 !! Sveta, someone or something tries to milk Svetas breasts, so the daily variable breastpumped is switched on. This is used for the femcycle. If this is not switched on, possible changes like prolactinlvl etc go down. breastpumped = 1 if soreness_mod <= 0: soreness_mod = 1 !! what type of sucktion is happening? different sucktion can cause a different demand of breastmilk. Base rate of sucktion is 10ml/minute x 10. So if the sucktion rate is 10ml/min then suck_flow_rate = 100. if ARGS[1] = 0: !! 'adult sucking' suck_flow_rate = 120 temp_var = pcs_mood +(ARGS[2]/8) if temp_var > 100: pcs_mood = 100 else pcs_mood += ARGS[2]/8 end elseif ARGS[1] = 1: !! 'child sucking' suck_flow_rate = 110 temp_var = pcs_mood + (ARGS[2]/2) if temp_var > 100: pcs_mood = 100 else pcs_mood += ARGS[2]/2 end elseif ARGS[1] = 2: !! 'baby sucking' suck_flow_rate = 80 temp_var = pcs_mood + ARGS[2] if temp_var > 100: pcs_mood = 100 else pcs_mood += ARGS[2] end elseif ARGS[1] = 3: !! 'manual_breastpump sucking' suck_flow_rate = 180 elseif ARGS[1] = 4: !! 'electric_breastpump sucking' suck_flow_rate = 400 elseif ARGS[1] = 5: !! 'hand expression' suck_flow_rate = 105 elseif ARGS[1] = 6: !! 'cow milker sucking' suck_flow_rate = 1000 elseif ARGS[1] = 7: !! 'weak baby sucking' suck_flow_rate = 50 temp_var = pcs_mood + ARGS[2] if temp_var > 100: pcs_mood = 100 else pcs_mood += ARGS[2] end else !! 'suck flow else branch' suck_flow_rate = 100 end !! If you pump and work your breast more, soreness will decrease after pumping. This can also decline if your breasts arent worked for a longer time. if breastcounter > 0: temp_var = breastcounter/10 soreness_mod += temp_var if soreness_mod > 30: soreness_mod = 30 if nipple_cream = 1: soreness_mod += 20 nipple_cream = 0 end end !! If Sveta is not lactating we still need to do some actions. This is handled in here. Nipple pain + breast pain are applied as well as stamina is used. if lactate <= 0: if milkoverdemand <= 0: milkoverdemand = 0 pump_stop_brake = 0 !! This is how much milk demand is applied to the breasts. In this function it is needed to calculate the nipple pain and breast pain. max_sucktion_demand = suck_flow_rate*ARGS[2] if pain['nipples'] <= 60: suck_until_pain = (((60 - pain['nipples'])*soreness_mod)*10)/(suck_flow_rate/18) end temp_var = pain['nipples'] + max_sucktion_demand/(soreness_mod*100) if temp_var > 60: pain['nipples'] = 65 pump_stop_brake = 1 pumptime = suck_until_pain max_sucktion_demand = suck_flow_rate*pumptime else pain['nipples'] += max_sucktion_demand/(soreness_mod*100) end temp_var = pain['breasts'] + max_sucktion_demand/10000 if temp_var > 20: pain['breasts'] = 25 else pain['breasts'] += max_sucktion_demand/10000 end !! Pumping breasts is exhausting even if no milk comes. Pumping will impact the stamina of Sveta if she is not lactating. temp_var = pcs_stam - max_sucktion_demand/300 if temp_var < 0: pcs_stam = 0 !! energy usage flag on. energytomilkpump = 1 pcs_sweat += max_sucktion_demand/1000 else pcs_stam -= max_sucktion_demand/300 pcs_sweat += max_sucktion_demand/1000 !! energy usage flag on. energytomilkpump = 1 end if pumptime < 10: breastcounter += 1 else breastcounter += pumptime/10 end milkoverdemand += max_sucktion_demand RESULT = 0 elseif lactate > 0: !! How much milk can go through the nipple. Base rate is 10ml/minute (100) when sucktion is applied to the nipple. If the demand is higher than the nipple can push through, nipple soreness will happen more quickly. if pcs_nips > 0: max_nip_flow_rate = 60 elseif pcs_nips > 20: max_nip_flow_rate = 80 elseif pcs_nips > 40: max_nip_flow_rate = 100 elseif pcs_nips > 60: max_nip_flow_rate = 120 elseif pcs_nips > 80: max_nip_flow_rate = 140 elseif pcs_nips > 100: max_nip_flow_rate = 160 else max_nip_flow_rate = 100 end !! If you pump more, more milk will be able to flow out, disregarding nipplesize. Svetas nipples will get used to have milk stream through them, grows and drops with the breastcounter. nip_flow_mod = 1 nip_flow_mod += breastcounter if nip_flow > 400: nip_flow_mod = 400 max_nip_flow_rate += nip_flow_mod !! How much milk demand is applied to the breasts. max_sucktion_demand = suck_flow_rate*ARGS[2] !! We want to know if we can just suck out what is already stored or if additional milk production is needed to go through the whole pumping/sucking. !! If we only need 20ml from a 100ml storage, we would only substract 20ml, leaving 80ml inside the breasts. !! Also lets make sure we start at zero from the stuff we get from Sveta. milkedvolume = 0 !! Case: Enough milk in Svetas breasts, covering the demand if lactatemv >= max_sucktion_demand: !! Checking if svetas nipple flow is enough to serve the demand. If yes - get the demand; If no - get what she is able to give us. if max_nip_flow_rate >= suck_flow_rate: milkedvolume = max_sucktion_demand lactatemv -= max_sucktion_demand else: milkedvolume = max_nip_flow_rate*ARGS[2] lactatemv -= milkedvolume end !! Case: Not enough milk in Svetas breasts. elseif lactatemv < max_sucktion_demand: !! We have two sub cases in this one. Sveta has no lactatemv and Sveta has not enough lactatemv. This means she has to produce more milk, but first we need to know how much is needed. !! temp_var will be the amount of milk Sveta has to produce to serve the demand. pump time left is the time left after lactatemv is drained. if lactatemv <= 0: temp_var = max_sucktion_demand pumptime_left = ARGS[2] else temp_var = max_sucktion_demand - lactatemv if max_nip_flow_rate >= suck_flow_rate: pumptime_left = ARGS[2] - (lactatemv/suck_flow_rate) else pumptime_left = ARGS[2] - (lactatemv/max_nip_flow_rate) end if pumptime_left < 0: pumptime_left = 0 end !! Now we know how much time we have and how much demand we have. Time to check if Sveta can do it. !! For the case, that svetas milk flow is not big enough pumptime left will be 0, therefore this is handled here. if pumptime_left >0: if max_nip_flow_rate >= suck_flow_rate: !! the lactaterate is per hour, so it is possible that lactaterate will end up being zero when devided by 60. therefore everything here is multiplied by 100. if (suck_flow_rate*100) <= ((lactaterate*100)/60): milkedvolume += suck_flow_rate*pumptime_left else milkedvolume += ((((lactaterate*100)/60)*pumptime_left)/100) breastcounter += 2 end else !! Same here as above. if (max_nip_flow_rate*100) <= ((lactaterate*100)/60): milkedvolume += max_nip_flow_rate*pumptime_left breastcounter += 2 else milkedvolume += ((((lactaterate*100)/60)*pumptime_left)/100) breastcounter += 2 end end !! Produced milk needs to be subtracted from the hourly lactate rate, so femcycle is only adding the milk that was not produced yet in the next hour if pumptime_left > 60: if ((pumptime_left*100)/60) > 100: lactaterate_use -= ((((lactaterate*100)/60)*(pumptime_left mod 60))/100) else lactaterate_use = lactaterate end else if lactaterate >= lactaterate_use: lactaterate_use -= milkedvolume else lactaterate_use = lactaterate end end if lactaterate_use <= 0: lactaterate_use = 0 !! Sveta had to make milk, so she needs to use some of her body resources to make the milk. if milkedvolume > 0: !! energy usage flag on. Can be used in events to show that sveta is getting hungry or thirsty energytomilkpump = 1 pcs_stam -= max_sucktion_demand/300 if pcs_stam <= 0: pcs_stam = 0 pcs_sweat += max_sucktion_demand/1000 pcs_hydra -= milkedvolume/120 if pcs_hydra < 1: pcs_hydra = 1 pcs_energy -= milkedvolume/1200 end end !! Now we check if sveta was able to make it or not. If not we have milk overdemand which will be used in femcycle to make her produce more milk next day. if temp_var > milkedvolume: milkoverdemand += (temp_var - milkedvolume) end !! time to add the pumped lactatemv to the milkedvolume and empty lactatemv. milkedvolume += lactatemv lactatemv = 0 !! Here we have nipple and breastpain. The idea is - if there is more sucktion than the nipples can take more pain is applied. If the breasts make less milk then demanded pain to the breasts is applied. !! Else - there will only be nipple pain. if max_nip_flow_rate < suck_flow_rate: temp_var = pain['nipples'] + ((suck_flow_rate - max_nip_flow_rate)*100*ARGS[2])/2000 - (soreness_mod*ARGS[2])*15 if temp_var >= 60: pain['nipples'] = 65 elseif temp_var <= 0: pain['nipples'] += 1 else pain['nipples'] += (((suck_flow_rate - max_nip_flow_rate)*100*ARGS[2])/2000 - (soreness_mod*ARGS[2])*15) end else if ARGS[2] < 10: pain['nipples'] += 1 elseif ARGS[2] >= 10 and soreness_mod > ARGS[2]: pain['nipples'] += 1 else pain['nipples'] += (ARGS[2]/10 - soreness_mod/10) end end if max_nip_flow_rate >= suck_flow_rate: if (suck_flow_rate*100) > ((lactaterate*100)/60): temp_var = pain['breasts'] + (((suck_flow_rate*100)-((lactaterate*100)/60))*pumptime_left)/1000 if temp_var > 20: pain['breasts'] = 20 else pain['breasts'] += (((suck_flow_rate*100)-((lactaterate*100)/60))*pumptime_left)/1000 end end else if (max_nip_flow_rate*100) > ((lactaterate*100)/60): temp_var = pain['breasts'] + (((max_nip_flow_rate*100)-((lactaterate*100)/60))*pumptime_left)/1000 if temp_var > 20: pain['breasts'] = 20 else pain['breasts'] += (((max_nip_flow_rate*100)-((lactaterate*100)/60))*pumptime_left)/1000 end end end end if pumptime < 10: breastcounter += 1 else breastcounter += pumptime/10 end !! Done - Result is the milked volume. RESULT = milkedvolume end end !! bp_milking - breast pump milking !! use href="exec:gt ''lact_lib'',''bp_milking''" if $ARGS[0] = 'bp_milking': pumptime = 0 pumptype = 0 if pump_bottletype < 1500: pump_bottletype = 1500 if bpbottles <= 0: bpbottles = 1 if $location_type ! 'bathroom' and pcs_inhib < 30: 'You aren''t confident enough to do that here.' act 'Finish': menu_off = 0 & gt $loc, $metka elseif bp_unbox <= 0: 'You need to unbox your breast pump first.' act 'Finish': menu_off = 0 & gt $loc, $metka elseif bp_unbox = 1 and ($location_type = 'bathroom' or $location_type = 'private'): gt 'lact_lib', 'bp_unbox_event' else *clr cla '
> src="images/pc/body/tits/breast_pump.jpg">
' 'How long do you want to pump your breasts with the manual breast pump?' if bpbottlem > 0: if pump_bottletype = 1500: 'Current bottle size in use: >150ml | 250ml' else 'Current bottle size in use 150ml | >250ml' end end if lactatemv > 0: pumptime = (func('lact_lib','$get_breastmilk_time', 3, (lactatemv/10))) if pumptime > 5: pumptime -= 2 end if pumptime > 60: act 'Pump until breasts are empty': *clr cla minut += 2 'As you prepare for pumping you weight your breasts in your hands. You feel that your breasts carry a large amount of milk and pumping will probably take a long time.' 'Getting relieve for your breasts with the manual breast pump will probably take at least <> minutes.' if pcs_know_mward <= 0: 'You concider visiting a hospital to get help or buying a better breastpump.' pcs_ask_mward_help = 1 pcs_knows_electric_pump = 1 end 'Do you want to continue?' act 'Don''t pump':gt $loc, $metka act 'Continue': gt 'lact_lib', 'milking' end end elseif pumptime <= 0: act 'Pump until breasts are empty': *clr cla minute += 2 'As you prepare for pumping you weight your breasts in your hands. Your breasts feel really empty. There is no need to pump now.' act 'Don''t pump':gt $loc, $metka act 'back':gt 'lact_lib', 'bp_milking' end else act 'Pump until breasts are empty': pumptime = func('lact_lib','$get_breastmilk_time', 3, (lactatemv/10)) if pumptime > 5: pumptime -= 2 end gt 'lact_lib', 'milking' end end end act '15 Minutes': pumptime = 15 gt 'lact_lib', 'milking' end act '30 Minutes': pumptime = 30 gt 'lact_lib', 'milking' end act 'Custom': pumptime = input ("How long do you plan to pump your breasts? (Not more than 60 minutes)") if pumptime <= 0 or pumptime > 60: minut += 2 act 'Don''t pump':menu_off = 0 & gt $loc, $metka act 'back':gt 'lact_lib', 'bp_milking' elseif pumptime > 0 and pumptime <= 60: gt 'lact_lib', 'milking' end end act 'Massage your breasts': gt 'lact_lib','man_milking' act 'Don''t pump':menu_off = 0 & gt $loc, $metka end end !! man_milking - manual (with hands) milking !! use href="exec:gt ''lact_lib'',''man_milking''" !! for manual milk expression in bathrooms etc. please use this function. if $ARGS[0] = 'massage': if breastcounter <= 0: temp_var = 50 else temp_var = (50/breastcounter) end if (($location_type ! 'bathroom' and pcs_inhib >= 30) or $location_type = 'bathroom' and breastpump = 0) and pcs_horny >= temp_var: act 'Massage your breasts': gt 'lact_lib','man_milking' end end if $ARGS[0] = 'man_milking': pumptime = 0 *clr cla 'How long do you want to massage your breasts?' if lactatemv > 0: pumptime = (func('lact_lib','$get_breastmilk_time', 5, (lactatemv/10))) if pumptime > 60: act 'Express until breasts are empty': *clr cla minut += 2 'You prepare yourself and weight your breasts in your hands. You feel that your breasts carry a large amount of milk and manually expressing it will probably take a long time.' 'Getting relieve for your breasts with manual expression will probably take at least <> minutes.' if breastpump <= 0 and bp_unbox <= 1: 'You should concider buying a breastpump' elseif breastpump = 1 and bp_unbox <= 1 and pain['nipples'] <= 60: 'You should concider using your breastpump.' else 'You should concider the use of a breastpump.' end 'Do you want to continue?' act 'Don''t express':menu_off = 0 & gt $loc, $metka act 'Express your milk': gt 'lact_lib', 'hand_milking' end end elseif pumptime <= 0: act 'Express milk until breasts are empty': *clr cla minute += 2 'As you prepare yourself you feel your breasts in your hands. Your breasts feel really empty. There is no need to express now.' act 'Don''t express milk':menu_off = 0 & gt $loc, $metka act 'back':gt 'lact_lib', 'man_milking' end else act 'Express until breasts are empty': pumptime = func('lact_lib','$get_breastmilk_time', 5, (lactatemv/10)) gt 'lact_lib', 'hand_milking' end end end act '5 Minutes': pumptime = 5 gt 'lact_lib', 'hand_milking' end act '10 Minutes': pumptime = 10 gt 'lact_lib', 'hand_milking' end act 'Custom': pumptime = input ("How long do you plan to massage your breasts? (Not more than 60 minutes)") if pumptime <= 0 or pumptime > 60: minut += 2 act 'Don''t express':gt $loc, $metka act 'back':gt 'lact_lib', 'man_milking' elseif pumptime > 0 and pumptime <= 60: gt 'lact_lib', 'hand_milking' end end act 'Don''t express':menu_off = 0 & gt $loc, $metka end if $ARGS[0] = 'bp_unbox_event': if bp_unbox <= 0: *clr cla minut += 5 if $location_type = 'bathroom': 'You push down the toilet seat to sit down and slowly start to unbox your newly aquirred breast pump.' elseif $location_type = 'private' and $locclass = 'bedr': 'You sit down on your bed and slowly start to unbox your newly aquirred breast pump.' elseif $location_type = 'private': 'You sit down and slowly start to unbox your newly aquirred breast pump.' end if kid <= 0 and preg <= 0 and pregtimes <= 0 and pregchem <= 0 and bp_unbox <= 0: 'While examining it, you think about why you bought it in the first place. You are not pregnant nor do you have a kid that needs breast milk.' if lactate <= 0: 'Your breasts haven''t got any milk in them too, so it seems this pump is a bit useless.' else 'At least it can help to get the milk out of your breasts.' end end if $location_type = 'private': '
> src="images/pc/body/tits/pump_unboxing.jpg">
' elseif $location_type = 'bathroom': '
> src="images/pc/body/tits/pump_unboxing_bath.jpg">
' else '
> src="images/pc/body/tits/pump_unboxing_bath.jpg">
' end if (pcs_inhib > 40 and $location_type = 'private') or $location_type = 'bathroom': act 'Try out how it works': *clr cla 'You pull up your top to release your breasts' '
> src="images/pc/body/tits/t<>.jpg">

' 'Your fingers glide around the sucktion cup of the breast pump, while your other hand holds the pump.' 'Making sure that no one is around, you lift the breast pump to your left breast. The cold cone feels uncomfortable on your nipple.' milkedvolume = func('lact_lib','$get_breastmilk', 3, 1) minut += 1 bp_unbox = 2 if lactate > 0 and milkedvolume > 0: if milkedvolume <= 50: 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it. The pump starts to draw milk from your breast.' 'You go on for a minute and then detach the pump. You collected some milk, but it is just a small puddle in the bottle.' '
> src="images/pc/body/tits/pump_milkdrops.jpg">
' elseif milkedvolume > 50 and milkedvolume <= 1500: 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it. The pump starts to draw milk from your breast.' 'You go on for a minute and then detach the pump. You collected <>ml of your breastmilk.' '
> src="images/pc/body/tits/pump_half.jpg">
' else 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it. The pump starts to draw milk from your breast.' 'You go on for a minute and then detach the pump. You easily filed the breast pump bottle with your breast milk just with this little pumping.' '
> src="images/pc/body/tits/pump_full.jpg">
' end 'You nod at the breast pump, thinking it will come in handy.' elseif lactate > 0 and milkedvolume <= 0: 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it.' 'You go on for a minute and then detach the pump. You collected some milk, but it is just a small puddle in the bottle.' '
> src="images/pc/body/tits/pump_milkdrops.jpg">
' else 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it.' 'You go on for a minute and then detach the pump. As expected no milk was collected in the bottle.' '
> src="images/pc/body/tits/breast_pump.jpg">
' end act 'continue': *clr cla if milkedvolume > 50 and $location_type = 'private': 'You look at the milk in the bottle and then around the room. Having no idea what to do with the excess milk, you look at it and suddenly sip it down.' 'It is your milk, so it should be okay to drink it.' '
> src="images/pc/body/tits/milk_drink.jpg">
' '
The milk is still warm from your breasts.
' pcs_health += milkedvolume/400 pcs_energy += milkedvolume/500 if pcs_hydra >= 100: pcs_hydra += milkedvolume/200 else pcs_hydra += milkedvolume/100 end minut += ((milkedvolume/1000) + 3) act 'Finish': menu_off = 0 & gt $loc, $metka else 'You clean up your pump and cover your breasts again.' act 'Finish': menu_off = 0 & gt $loc, $metka end end bp_unbox = 2 end end act 'Don''t try it here': *clr cla 'You look around you, not feeling to comfortable to use the breast pump here.' bp_unbox = 1 act 'Finish': menu_off = 0 & gt $loc, $metka end elseif bp_unbox = 1: if $location_type = 'private' and pcs_inhib < 40: 'You can''t do this here' act 'Finish': menu_off = 0 & gt $loc, $metka else 'You pull up your top to release your breasts' '
> src="images/pc/body/tits/t<>.jpg">

' 'Your fingers glide around the sucktion cup of the breast pump, while your other hand holds the pump.' 'Making sure that no one is around, you lift the breast pump to your left breast. The cold cone feels uncomfortable on your nipple.' milkedvolume = func('lact_lib','$get_breastmilk', 3, 1) minut += 1 bp_unbox = 2 if lactate > 0 and milkedvolume > 0: if milkedvolume <= 50: 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it. The pump starts to draw milk from your breast.' 'You go on for a minute and then detach the pump. You collected some milk, but it is just a small puddle in the bottle.' '
> src="images/pc/body/tits/pump_milkdrops.jpg">
' elseif milkedvolume > 50 and milkedvolume <= 1500: 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it. The pump starts to draw milk from your breast.' 'You go on for a minute and then detach the pump. You collected <>ml of your breastmilk.' '
> src="images/pc/body/tits/pump_half.jpg">
' else 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it. The pump starts to draw milk from your breast.' 'You go on for a minute and then detach the pump. You easily filed the breast pump bottle with your breast milk just with this little pumping.' '
> src="images/pc/body/tits/pump_full.jpg">
' end 'You nod at the breast pump, thinking it will come in handy.' elseif lactate > 0 and milkedvolume <= 0: 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it.' 'You go on for a minute and then detach the pump. You collected some milk, but it is just a small puddle in the bottle.' '
> src="images/pc/body/tits/pump_milkdrops.jpg">
' else 'You start to squeeze the bulb. Your nipple is sucked into the cone, getting elongated a bit. It feels weird at first and you release the lever, the sucktion on your nipple goes away and the nipple retracts.' 'With your hand you squeeze down again, your nipple sucked in again. You go on, and start to rythmically squeeze it.' 'You go on for a minute and then detach the pump. As expected no milk was collected in the bottle.' '
> src="images/pc/body/tits/breast_pump.jpg">
' end act 'continue': *clr cla if milkedvolume > 50 and $location_type = 'private': 'You look at the milk in the bottle and then around the room. Having no idea what to do with the excess milk, you look at it and suddenly sip it down.' 'It is your milk, so it should be okay to drink it.' '
> src="images/pc/body/tits/milk_drink.jpg">
' '
The milk is still warm from your breasts.
' pcs_health += milkedvolume/400 pcs_energy += milkedvolume/500 if pcs_hydra >= 100: pcs_hydra += milkedvolume/200 else pcs_hydra += milkedvolume/100 end minut += ((milkedvolume/1000) + 3) act 'Finish': menu_off = 0 & gt $loc, $metka else 'You clean up your pump and cover your breasts again.' act 'Finish': menu_off = 0 & gt $loc, $metka end end end elseif bp_unbox >= 2: *clr cla 'You unboxed your breast pump already.' act 'Finish': menu_off = 0 & gt $loc, $metka end end !! milking !! never use directly. Always use bp_milking, man_milking or sex_milking if $ARGS[0] = 'milking': !! if pumptime <= 0 or pumptime > 60: !! act 'Finish':gt $loc, $metka !! end if pumptype = 1: pumptime = (pumptime*6)/10 end !! :loop !! if k < kid: !! gs 'kid','kidlist' !! k += 1 !! jump 'loop' !! end if lactate > 0 and pain['nipples'] < 60: milkedvolume = func('lact_lib','$get_breastmilk', 3, pumptime) '
> src="images/pc/body/tits/pump_lactating.jpg">
' if pumptime > 1: 'You attach the pump to your breast and start rythmically squeezing the bulb for <> minutes.' else 'You attach the pump to your breast and start rythmically squeezing the bulb for one minute.' end !! Fill the bottles :D if milkedvolume > pump_bottletype and (bpbottles*1500 + bpbottlem*2500) = pump_bottletype: 'During pumping you have to empty the collecting bottle as it filled up with your milk.' 'You give it a few more pumps and detach the pump.
You filled the bottle with <>ml of your milk.' 'To collect all your pumped milk you should probably check if the pharmacy has additional bottles for your breast pump.' pcs_knowsmilkbottles = 1 elseif milkedvolume > pump_bottletype and (bpbottles*1500 + bpbottlem*2500) > pump_bottletype: !! Checking which bottletype is used and filling those bottles up before the other type is used. bp_used_mbottle = 0 bp_used_sbottle = 0 :sbottleloop if pump_bottletype < 2500 and milkedvolume >= 1500 and bp_used_sbottle < bpbottles: bp_used_sbottle += 1 milkedvolume -= 1500 jump 'sbottleloop' end :mbottleloop if pump_bottletype >= 2500 and milkedvolume >= 2500 and bp_used_mbottle < bpbottlem: bp_used_mbottle += 1 milkedvolume -= 2500 jump 'mbottleloop' end !! Checking for the milkedvolume and if there are bottles left. if yes - use these bottles if milkedvolume > 0 and (((bpbottlem - bp_used_mbottle) > 0) or ((bpbottles - bp_used_sbottle) > 0)): :altfill01 if pump_bottletype < 2500 and milkedvolume >= 2500 and bp_used_mbottle < bpbottlem: bp_used_mbottle += 1 milkedvolume -= 2500 jump 'altfill01' end :altfill02 if pump_bottletype >= 2500 and milkedvolume >= 1500 and bp_used_sbottle < bpbottles: bp_used_sbottle += 1 milkedvolume -= 1500 jump 'altfill02' end end !! by this point all bottles should have been used up. Everything else needs to end up in the drain. if milkedvolume > 0 and bpbottlem = bp_used_mbottle and bpbottles = bp_used_sbottle: 'During pumping you have to switch the collecting bottle as it filled up with your milk. Unfortunately you don''t have enough bottles to collect all your milk.' 'You had to pour <>ml of your breast milk into the sink.' milkedvolume = ((bp_used_mbottle*2500) + (bp_used_sbottle*1500)) elseif milkedvolume > 0 and milkedvolume < 1500 and (bpbottles - bp_used_sbottle) > 0: 'During pumping you have to switch the collecting bottle as it filled up with your milk.' elseif milkedvolume > 0 and milkedvolume < 2500 and milkedvolume > 1500 and (bpbottlem - bp_used_mbottle) > 0: 'During pumping you have to switch the collecting bottle as it filled up with your milk.' else 'During pumping you have to switch the collecting bottle as it filled up with your milk.' end if bp_used_mbottle >= 1 or bp_used_sbottle >= 1: '
> src="images/pc/body/tits/bottles_full.jpg">
' if milkedvolume = ((bp_used_mbottle*2500) + (bp_used_sbottle*1500)): 'You pumped <>ml of milk from your breasts, collecting it in:' if bp_used_sbottle = 1: 'One 150ml bottle' elseif bp_used_sbottle > 1: '<> x 150ml bottles' end if bp_used_mbottle = 1: 'One 250ml bottle' elseif bp_used_mbottle > 1: '<> x 250ml bottles' end else 'You pumped <<((bp_used_mbottle*2500)+(bp_used_sbottle*1500)+milkedvolume)/10>>ml of milk from your breasts collecting it in:' if bp_used_sbottle = 1: 'One 150ml bottle' elseif bp_used_sbottle > 1: '<> x 150ml bottles' end if bp_used_mbottle = 1: 'One 250ml bottle' elseif bp_used_mbottle > 1: '<> x 250ml bottles' end if (bpbottles - bp_used_sbottle) > 0 and milkedvolume <= 1500: 'You also stored <>ml of breast milk in a 150ml bottle.' elseif (bpbottlem - bp_used_mbottle) > 0 and milkedvolume <= 2500: 'You also stored <>ml of breast milk in a 250ml bottle.' else 'unhandled case - you shouldn''t end up here. Please report this in the bug section of Girl Life in the tfg-forums.' 'bp_used_mbottle: <>' 'bp_used_sbottle: <>' 'milkedvolume: <>' 'pump_bottletype: <>' 'bpbottles: <>' 'bpbottlem: <>' end milkedvolume += bp_used_mbottle*2500 + bp_used_sbottle*1500 end else 'unhandled case - you shouldn''t end up here. Please report this in the bug section of Girl Life in the tfg-forums.' 'bp_used_mbottle: <>' 'bp_used_sbottle: <>' 'milkedvolume: <>' 'pump_bottletype: <>' 'bpbottles: <>' 'bpbottlem: <>' end else 'You give it a few more pumps and detach the pump.
You filled the bottle with <>ml of your milk.' end breastcounter += 1 if energytomilkpump > 0 and pcs_energy = 0: '
During pumping you feel really hungry, producing breast milk seems to be more exhausing then thought.' energytomilkpump = 0 elseif energytomilkpump > 0: '
You feel a bit thirsty after pumping.' energytomilkpump = 0 end if bcream_used = 1: pcs_nips += rand(0,2) bcream_used = 0 end minut += pumptime elseif lactate = 0 and pain['nipples'] < 60: if rand(1,50) + prolactinlvl >= rand(200,250) and milkinduceday >= 5: '
> src="images/pc/body/tits/lactate_start.jpg">
' 'As usual, you attach the pump but after a few pumps white liquid suddenly starts flowing from your nipples.
You started lactating!' lactateinduced = 1 lactate = 1 if func('lact_lib','$calc_lactatemm') > 0: lactatemm = func('lact_lib','$calc_lactatemm') if prolactinlvl < 200: prolactinlvl = 200 lactaterate = 10*(prolactinlvl/200) pcs_nips += 2 pumpinggrowth = 0 else milkedvolume = func('lact_lib','$get_breastmilk', 3, pumptime) '
> src="images/pc/body/tits/t<>.jpg">
' if breastcounter < 100: 'You attach the pump to your nipples and start squeezing the bulb. The vacuum feels uncomfortable on your nipples.' elseif breastcounter >= 100 and breastcounter < 200: 'You attach the pump to your nipples and start squeezing the bulb. You are used to the vacuum on your nipples.' else 'You attach the pump to your nipples and start squeezing the bulb. The vacuum feels good on your nipples.' end if prolactinlvl > 100: 'A few droplets of liquid come out of your nipples but it is not milk.' breastcounter += 1 if pump_stop_brake = 1: 'During pumping your nipples start to hurt extremely. You have to stop after <> minutes, because you couldn''t go on.' end if prolactinlvl > 100: if rand(0,10) > 9: pumpinggrowth += 1 end 'After finishing, your breasts feel weirdly engorged.' end if bcream_used = 1: pcs_nips += rand(0,2) bcream_used = 0 end end minut += pumptime else 'Your nipples feel too sore to use the pump right now.' end if milkedvolume > 0: lact_engorgement = 0 lactatemess = 0 act 'Pour it into the sink': *clr cla if milkedvolume > 1500 and bpbottles <= 1: '
> src="images/pc/body/tits/milk_sink.jpg">
' '
You pour 150ml of your breast milk into the sink and clean up your breastpump.
' else '
> src="images/pc/body/tits/milk_sink.jpg">
' '
You pour <>ml of your breast milk into the sink and clean up your breastpump.
' end minute += ((milkedvolume/1500) + 3) act 'Finish': milkedvolume = 0 menu_off = 0 & gt $loc, $metka end end if pcs_hydra < 100: act 'Drink it': *clr cla '
> src="images/pc/body/tits/milk_drink.jpg">
' '
You drink your own breast milk and clean up your breastpump.
' '
The milk is still warm from your breasts.
' pcs_health += milkedvolume/400 pcs_energy += milkedvolume/500 if pcs_hydra >= 100: pcs_hydra += milkedvolume/200 else pcs_hydra += milkedvolume/100 end minute += ((milkedvolume/1000) + 3) act 'Finish': milkedvolume = 0 menu_off = 0 & gt $loc, $metka end end end else act 'Finish':menu_off = 0 & gt $loc, $metka end end !! engorged_morning !! use href="exec:gt ''lact_lib'',''engorged_morning''" if $ARGS[0] = 'engorged_morning': minut += 5 '
> src="images/pc/body/tits/lactate_start.jpg">
' 'You wake up and your breasts hurt. As you look down, you can see that you have a heavy letdown. You should pump your breasts as soon as possible.' act 'Finish':menu_off = 0 & gt $loc, $metka end if $ARGS[0] = 'hand_milking': *clr cla if lactate > 0 and pain['nipples'] <= 60: 'You start to massage your breasts, your fingers gliding down your breasts skin, over the areolas. Your fingers pressing down into the areola, stretching it forwards to your nipple.' 'Several small streams of your milk start to jet out of your nipples.' 'You go on for <> minutes until you stop. You clean yourself up and everything else that got wet from your milk.
' '
' milkedvolume = func('lact_lib','$get_breastmilk', 5, pumptime) minut += pumptime elseif lactate = 0 and pain['nipples'] <= 60: 'You start to massage your breasts, your fingers gliding down your breasts skin, over the areolas. Your fingers pressing down into the areola, stretching it forwards to your nipple,' 'kneading your breasts as well.' '
' milkedvolume = func('lact_lib','$get_breastmilk', 5, pumptime) minut += pumptime else 'Your nipples are too sore to hand massage right now.' end act 'Finish':menu_off = 0 & gt $loc, $metka end --- lact_lib ---------------------------------