Description:
Dialog tweaks and update swear list. Keep the list of swears to censor up to date, lol.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r695:cfec2536eba4 -

@@ -212,7 +212,7
212 212
213 213 === EndLowFunds ===
214 214
215 Governor: I've warned you.
215 Governor: I've warned you, {GovernorPlayerAddress}.
216 216 + [I understand. I resign. (Game Over)] { endGame() }
217 217 -> END
218 218
@@ -241,6 +241,8
241 241 \#friendOfThePark\#: It's more fun if you guess.
242 242 + + [ Fine.]
243 243 -> Guess
244 + + [Absolutely not.]
245 -> Amount
244 246 + + [Well, I don't enjoy it.]
245 247 -> Amount
246 248
@@ -373,7 +375,7
373 375 -> END
374 376
375 377 === PreserveHalf ===
376 Head of Parks: Hey, you goddam wunderkind. A whole half of this park is now a preserve! {inc(HeadOfParksOpinion)}
378 Head of Parks: Hey, you goddamm wunderkind. A whole half of this park is now a preserve! {inc(HeadOfParksOpinion)}
377 379
378 380 In fact, I want to shake your bloody hand!
379 381
@@ -398,7 +400,7
398 400
399 401
400 402 === HeadofParkSideRant ===
401 Head of Parks: Are you fucking with me? Really fucking with me? Listen, you motherfucking piss-eared shit-for-brains backroad bureaucrat, I didn't come hear from the fucking capitol building holding up the whole natural resources administrative state like MiracleGrow Atlas to get scoffed at by a tinpot administrator who think 100 acres and a desk makes you some sort of important person. Aplogize!
403 Head of Parks: Are you fucking with me? Really fucking with me? Listen, you motherfucking piss-eared shit-for-brains backroad bureaucrat, I didn't come hear from the fucking capitol building holding up the whole natural resources administrative state like MiracleGrow Atlas to get scoffed at by a tinpot administrator who think 100 acres and a desk makes you some sort of important person. Apologize!
402 404 + [Sorry] ->->
403 405
404 406
@@ -409,7 +411,7
409 411 -> END
410 412 + [It's fine.]
411 413 -> END
412 + [Thanks for checking in.]
414 + [Thanks for checking in, \#assistantName\#.]
413 415 -> END
414 416 + [I know what I'm doing! Never question me again!] {inc(playerRude)}
415 417 -> END
@@ -24,18 +24,24
24 24 {
25 25 public static Dictionary<string, string> replacements = new Dictionary<string,string> {{"Damn", "Drat"},
26 26 {"Fucking hell", "Flipping heck"},
27 {"Fucking", "flipping"},
27 28 {"Fuck", "Fork"}, //Ty michael shur
28 29 {"Motherfucker", "Motherforker"},
30 {"Hellifiknow", "Heckifiknow"},
29 31 {"Shitheel", "Slimewheel"}, //idk
30 32 {"Shit!", "Shitake mushrooms!"}, //depends on context
31 33 {"Shit", "Shitake mushroom"},
32 34 {"Hell", "Heck"},
33 35 {"Oh my God", "Oh my Glob"}, //Ty Pendleton Ward
34 36 {"Goddammit", "Glob drat it"},
37 {"Bloody hell", "Blimey"},
35 38 {"Goddamm", "Goshdarn"},
36 39 {"Megadick", "Megadunce"},
37 {"Dickhead", "Dunce"},
40 {"Dickhead", "Dunderhead"},
38 41 {"Bastard", "Bollocks"},
42 {"Cuntforsaken", "Clodforsaken"},
43 {"Godforsaken", "Globforsaken"},
44 {"Piss-eared", "Paste-eared"}
39 45 {"Asshole", "Bumhead"} //i guess
40 46 };
41 47
@@ -73,7 +79,7
73 79 }
74 80 return s;
75 81 case ProfanityLevel.Removed:
76 return Regex.Replace(s, "(?i)((?<=d)amn|(?<=f)uck|(?<=D)amn|(?<=F)uck|(?<=S)hit|(?<=Motherf)ucker|(?<=megad)ick)", "------");
82 return Regex.Replace(s, "(?i)((?<=d)amn|(?<=f)uck|(?<=c)unt|(?<=D)amn|(?<=F)uck|(?<=S)hit|(?<=Motherf)ucker|(?<=megad)ick|(?<=C)unt)", "------");
77 83 }
78 84 return s;
79 85 }
You need to be logged in to leave comments. Login now