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 === EndLowFunds ===
213 === EndLowFunds ===
214
214
215 Governor: I've warned you.
215 Governor: I've warned you, {GovernorPlayerAddress}.
216 + [I understand. I resign. (Game Over)] { endGame() }
216 + [I understand. I resign. (Game Over)] { endGame() }
217 -> END
217 -> END
218
218
@@ -241,6 +241,8
241 \#friendOfThePark\#: It's more fun if you guess.
241 \#friendOfThePark\#: It's more fun if you guess.
242 + + [ Fine.]
242 + + [ Fine.]
243 -> Guess
243 -> Guess
244 + + [Absolutely not.]
245 -> Amount
244 + + [Well, I don't enjoy it.]
246 + + [Well, I don't enjoy it.]
245 -> Amount
247 -> Amount
246
248
@@ -373,7 +375,7
373 -> END
375 -> END
374
376
375 === PreserveHalf ===
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 In fact, I want to shake your bloody hand!
380 In fact, I want to shake your bloody hand!
379
381
@@ -398,7 +400,7
398
400
399
401
400 === HeadofParkSideRant ===
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 + [Sorry] ->->
404 + [Sorry] ->->
403
405
404
406
@@ -409,7 +411,7
409 -> END
411 -> END
410 + [It's fine.]
412 + [It's fine.]
411 -> END
413 -> END
412 + [Thanks for checking in.]
414 + [Thanks for checking in, \#assistantName\#.]
413 -> END
415 -> END
414 + [I know what I'm doing! Never question me again!] {inc(playerRude)}
416 + [I know what I'm doing! Never question me again!] {inc(playerRude)}
415 -> END
417 -> END
@@ -24,18 +24,24
24 {
24 {
25 public static Dictionary<string, string> replacements = new Dictionary<string,string> {{"Damn", "Drat"},
25 public static Dictionary<string, string> replacements = new Dictionary<string,string> {{"Damn", "Drat"},
26 {"Fucking hell", "Flipping heck"},
26 {"Fucking hell", "Flipping heck"},
27 {"Fucking", "flipping"},
27 {"Fuck", "Fork"}, //Ty michael shur
28 {"Fuck", "Fork"}, //Ty michael shur
28 {"Motherfucker", "Motherforker"},
29 {"Motherfucker", "Motherforker"},
30 {"Hellifiknow", "Heckifiknow"},
29 {"Shitheel", "Slimewheel"}, //idk
31 {"Shitheel", "Slimewheel"}, //idk
30 {"Shit!", "Shitake mushrooms!"}, //depends on context
32 {"Shit!", "Shitake mushrooms!"}, //depends on context
31 {"Shit", "Shitake mushroom"},
33 {"Shit", "Shitake mushroom"},
32 {"Hell", "Heck"},
34 {"Hell", "Heck"},
33 {"Oh my God", "Oh my Glob"}, //Ty Pendleton Ward
35 {"Oh my God", "Oh my Glob"}, //Ty Pendleton Ward
34 {"Goddammit", "Glob drat it"},
36 {"Goddammit", "Glob drat it"},
37 {"Bloody hell", "Blimey"},
35 {"Goddamm", "Goshdarn"},
38 {"Goddamm", "Goshdarn"},
36 {"Megadick", "Megadunce"},
39 {"Megadick", "Megadunce"},
37 {"Dickhead", "Dunce"},
40 {"Dickhead", "Dunderhead"},
38 {"Bastard", "Bollocks"},
41 {"Bastard", "Bollocks"},
42 {"Cuntforsaken", "Clodforsaken"},
43 {"Godforsaken", "Globforsaken"},
44 {"Piss-eared", "Paste-eared"}
39 {"Asshole", "Bumhead"} //i guess
45 {"Asshole", "Bumhead"} //i guess
40 };
46 };
41
47
@@ -73,7 +79,7
73 }
79 }
74 return s;
80 return s;
75 case ProfanityLevel.Removed:
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 return s;
84 return s;
79 }
85 }
You need to be logged in to leave comments. Login now