diff --git a/game.js b/game.js index b440e85..6bb6b5f 100644 --- a/game.js +++ b/game.js @@ -2089,7 +2089,7 @@ function drool() let preyMass = prey.sum_property("mass"); - let sound = getSound("liquid",preyMass); + let sound = getSound("drip",preyMass); add_victim_people("drool",prey); @@ -2851,7 +2851,7 @@ function male_spurt(vol, active=true) let preyMass = prey.sum_property("mass"); - let sound = getSound("liquid",preyMass); + let sound = getSound("drip",preyMass); add_victim_people("cum-flood",prey); @@ -2935,7 +2935,7 @@ function female_spurt(vol, active=true) let preyMass = prey.sum_property("mass"); - let sound = getSound("liquid",preyMass); + let sound = getSound("drip",preyMass); add_victim_people("femcum-flood",prey); diff --git a/sounds.js b/sounds.js index 32c67af..73cb6f5 100644 --- a/sounds.js +++ b/sounds.js @@ -3,7 +3,9 @@ let last_used = {}; let sounds = { "crush": [["Thump.", "Thoomp."], ["Crunch."], ["Crrruunch."], ["CRUNCH!"], ["CRRRUNNCH!"], ["SKRRRRUNCH!"], ["SKRRRRRRRSMASH!"]], "swallow": [["Ulp.", "Glp.", "Slurp."], ["Glrph.", "Glurk."], ["Gluuuurrkph!", "Glurp - GLK."],["GLRP!", "GULP!", "GLUK!"],["GLRRRRPKH!", "GLUUUURK!"],["GLUUUUURRPKH!", "GLOOOORPH-GLK!"]], - "liquid": [["Dribble."],["Splat."],["Splash."],["Sploosh."],["SPLASH!"],["SPLOOSH!"],["SPLOOOOOOSH!"]], + "drip": + [["Drip."],["Dribble"],["Drip-sploosh"],["Dribble-SPLOOSH!"],["SPLOOOOOSH!!"]], + "liquid": [["Sploosh."],["Gush!"],["SPLOOSH!"],["SPLOOSH!"],["SPLOOOOOOSH!"]], "insert": [["Slp.", "Shlk."],["Shlp.", "Shlrp."],["Shlllp."],["SHLP!", "SQUELCH!"],["SHLLLLRP!"]], "drop": [["Thump."],["Thump!"],["Splat."],["Splat!"],["SPLAT!"]], "belch": [["Burp.", "Urp."],["Urph.", "Burph."],["Urrrrrph."],["UuuuuuuRRRRRPPHHHhhhh."],["UUUURRRRPHH!"],["BUUUURRRRRRRRPPPHHH!"]],