133 lines
3.9 KiB
JavaScript
133 lines
3.9 KiB
JavaScript
var moonlightDialog = {
|
||
"status": {
|
||
"townsfolk-male" : {
|
||
"unaware" : [
|
||
"I'd rather be fishing.",
|
||
"Different day, same old stuff.",
|
||
"Oi! Where'd that trouble run\noff to now then?",
|
||
"The missus is off shoppin', and\nhere I am sittin' on\nme Jack Jones.",
|
||
"Oy I'm gonna have a butcher’s at\nthat new tailor's knickers\nhe has for sale.",
|
||
"I'm off to the pub to see the\nlads and chew the fat.",
|
||
"♪ ♫ Whistling ♪ ♫"
|
||
],
|
||
"concerned" : [
|
||
"Wha… what’s that? Who’s there?",
|
||
"Did you hear that?",
|
||
"Either I’m hearin’ things, or I\nneed to stop drinkin’ midday.",
|
||
"Oi? I don’t want no tomfoolery;\ncome out if you’re there!",
|
||
"Must be them darned kids again.",
|
||
"What’s that?",
|
||
"Did you see that?"
|
||
],
|
||
"alerted" : [
|
||
"Don't you come no closer, you hear?",
|
||
"Egads!",
|
||
"I'm getting’ outta here!",
|
||
"What's going on?!",
|
||
"Holy bejeezus!",
|
||
"Did you see that?",
|
||
"What're you doing?!",
|
||
"Get away!",
|
||
"Get away from me!",
|
||
"Stay away! I know Kung-fu! ... but\nthat would require bravery \nI don't have",
|
||
"Guards! GUARDS!"
|
||
],
|
||
"losthim" : [
|
||
"Whew. Glad that’s over.",
|
||
"I wasn’t scared!",
|
||
"Must’ve been intimidated by\nmy manly physique.",
|
||
"That’s right! Run away!",
|
||
"Aye, and don’t-cha come back!",
|
||
"Spoony Bard...",
|
||
"Bloody wanker!"
|
||
]
|
||
},
|
||
"townsfolk-female" : {
|
||
"unaware" : [
|
||
"My retro shake brings all the\nboys to the yard.",
|
||
"I'm off to get my Barnet sorted\nout. I’ll be the best looking\nlady at the gala.",
|
||
"It's always all itsy bitsy with\nthem boys at the Rub-a-Dub.",
|
||
"I need to get this shopping\nsorted out.",
|
||
"What a lovely evening. Perfect\nfor skulking, I would imagine."
|
||
],
|
||
"concerned" : [
|
||
"Wha… what’s that? Who’s there?",
|
||
"Did you hear that?",
|
||
"Martha? Is that you?",
|
||
"I don't want no tomfoolery.\nGo away!",
|
||
"What was that? This is how horror\ntheatre bits start…",
|
||
"What's that?",
|
||
"Did you see that?"
|
||
],
|
||
"alerted" : [
|
||
"Eeeek!",
|
||
"Stay away from me!",
|
||
"Guards! Guards!",
|
||
"What in the nine hells?",
|
||
"Get back or I'll swoon!",
|
||
"Help! He's after me virtue!"
|
||
],
|
||
"losthim" : [
|
||
"Good riddance! There’s too many\nmale protagonists in\ngames anyhow!",
|
||
"I sure am glad that’s over.",
|
||
"This town is going straight to hell.",
|
||
"I hope he doesn’t come back.",
|
||
"I hope he’s caught and hanged!"
|
||
]
|
||
},
|
||
"townsfolk-guard" : {
|
||
"unaware" : [
|
||
"Just doing my civic duty.",
|
||
"Good day, citizens.",
|
||
"Honor. Liberty. Justice.\nOh, and pancakes…\nI love pancakes.",
|
||
"No loitering.",
|
||
"I am the law.",
|
||
"May Evil beware and may\nGood dress warmly and\neat plenty of fresh vegetables.",
|
||
"We're sworn to protect The City."
|
||
],
|
||
"concerned" : [
|
||
"I sense law-breaking abound.",
|
||
"Did you hear something?",
|
||
"Did you see that?",
|
||
"I know you're around here\nsomewhere, rat…",
|
||
"Don't make me look for\nyou in hard-to-reach places!",
|
||
"The eyes play tricks\nlike tiny, round devils."
|
||
],
|
||
"alerted" : [
|
||
"Surrender lawbreaker!",
|
||
"Halt!",
|
||
"Halt! In the name of the… umm, er… me!",
|
||
"Prepare for justice, criminal!",
|
||
"I am justice!",
|
||
"There’s no escaping the law!",
|
||
"Surrender thief!",
|
||
"Prepare to taste steel!",
|
||
"Clear the area! Nobody\npanic! I'll catch him!"
|
||
],
|
||
"losthim" : [
|
||
"I’ll get you next time,\ncriminal scum.",
|
||
"Defeat is a harsh mistress.",
|
||
"Evil men may get away, but\njustice fights another day.",
|
||
"Wickedness flees, evading the\ncold steel of righteousness."
|
||
]
|
||
}
|
||
},
|
||
"conversations": {
|
||
"townsfolk-male": {
|
||
"townsfolk-female": [],
|
||
"townsfolk-male": [],
|
||
"townsfolk-guard": []
|
||
},
|
||
"townsfolk-female": {
|
||
"townsfolk-male": [],
|
||
"townsfolk-female": [],
|
||
"townsfolk-guard": [],
|
||
},
|
||
"townsfolk-guard": {
|
||
"townsfolk-male": [],
|
||
"townsfolk-female": [],
|
||
"townsfolk-guard": []
|
||
}
|
||
}
|
||
};
|