Fix unescaped quotes in space adventure script
Loreline parser choked on literal " characters in dialogue text, causing "Expected identifier after '.'" at runtime. Escape all 8 occurrences with \" to match the convention used in every other .lor file.
This commit is contained in:
parent
671aa30409
commit
75797ffc24
1 changed files with 8 additions and 8 deletions
|
|
@ -73,23 +73,23 @@ beat BoxWhisperer
|
||||||
captain: I'm not doing anything, ARIA. I'm just listening. #captain-listening
|
captain: I'm not doing anything, ARIA. I'm just listening. #captain-listening
|
||||||
ai: The box has shared a direct route to its home system. No fuel cost. It's folding space around us like... #ai-folding
|
ai: The box has shared a direct route to its home system. No fuel cost. It's folding space around us like... #ai-folding
|
||||||
captain: Like folding a box? #captain-folding
|
captain: Like folding a box? #captain-folding
|
||||||
ai: I was going to say "like origami," but yes. Like folding a box. #ai-origami
|
ai: I was going to say \"like origami,\" but yes. Like folding a box. #ai-origami
|
||||||
trustAlien = true
|
trustAlien = true
|
||||||
discovered += 1
|
discovered += 1
|
||||||
-> OpenSpaceBox
|
-> OpenSpaceBox
|
||||||
|
|
||||||
beat PokeBox
|
beat PokeBox
|
||||||
You extend the ship's robotic arm and gently poke the box. #poke-arm
|
You extend the ship's robotic arm and gently poke the box. #poke-arm
|
||||||
The box rotates 90 degrees and reveals a label: "THIS SIDE UP" #poke-label
|
The box rotates 90 degrees and reveals a label: \"THIS SIDE UP\" #poke-label
|
||||||
ai: Commander, I don't think boxes in zero gravity have an "up". #ai-gravity
|
ai: Commander, I don't think boxes in zero gravity have an \"up\". #ai-gravity
|
||||||
captain: Maybe the box defines its own reality. #captain-reality
|
captain: Maybe the box defines its own reality. #captain-reality
|
||||||
ai: That's... philosophically concerning. #ai-philosophy
|
ai: That's... philosophically concerning. #ai-philosophy
|
||||||
-> OpenSpaceBox
|
-> OpenSpaceBox
|
||||||
|
|
||||||
beat ScanThenOpen
|
beat ScanThenOpen
|
||||||
ai: Scan reveals the box contains crystallized starlight and something called a "Nebula Shard". #scan-contents
|
ai: Scan reveals the box contains crystallized starlight and something called a \"Nebula Shard\". #scan-contents
|
||||||
ai: Also what appears to be a very small, very angry alien. #scan-alien
|
ai: Also what appears to be a very small, very angry alien. #scan-alien
|
||||||
captain: Define "very small". #captain-small
|
captain: Define \"very small\". #captain-small
|
||||||
ai: Approximately the size of a box. Commander, I think the alien IS a box. #ai-alienbox
|
ai: Approximately the size of a box. Commander, I think the alien IS a box. #ai-alienbox
|
||||||
-> OpenSpaceBox
|
-> OpenSpaceBox
|
||||||
|
|
||||||
|
|
@ -132,7 +132,7 @@ beat LeaveForGood
|
||||||
ai: I hope you're happy, Commander. #ai-happy
|
ai: I hope you're happy, Commander. #ai-happy
|
||||||
captain: I am. No weird space boxes for me today. #captain-happy
|
captain: I am. No weird space boxes for me today. #captain-happy
|
||||||
ai: Incoming transmission. It's... from the box. #ai-transmission
|
ai: Incoming transmission. It's... from the box. #ai-transmission
|
||||||
ai: It says "you'll be back. they always come back." #ai-message
|
ai: It says \"you'll be back. they always come back.\" #ai-message
|
||||||
captain: That's ominous. I love it. #captain-ominous
|
captain: That's ominous. I love it. #captain-ominous
|
||||||
-> Ending
|
-> Ending
|
||||||
|
|
||||||
|
|
@ -158,7 +158,7 @@ beat AlienEncounter
|
||||||
alien: I've been collecting boxes across the galaxy for centuries. #alien-collecting
|
alien: I've been collecting boxes across the galaxy for centuries. #alien-collecting
|
||||||
alien: Most species open them. Very few appreciate them. #alien-appreciate
|
alien: Most species open them. Very few appreciate them. #alien-appreciate
|
||||||
captain: I appreciate boxes. Especially ones with good loot. #captain-loot
|
captain: I appreciate boxes. Especially ones with good loot. #captain-loot
|
||||||
alien: "Loot." What a crude word for cosmic treasures. #alien-crude
|
alien: \"Loot.\" What a crude word for cosmic treasures. #alien-crude
|
||||||
|
|
||||||
choice
|
choice
|
||||||
Ask about the galaxy's rarest box #opt-rare-box
|
Ask about the galaxy's rarest box #opt-rare-box
|
||||||
|
|
@ -243,7 +243,7 @@ beat SpaceExploration
|
||||||
|
|
||||||
beat BigBox
|
beat BigBox
|
||||||
You open the biggest box. Inside: two medium boxes and a note. #big-open
|
You open the biggest box. Inside: two medium boxes and a note. #big-open
|
||||||
The note reads: "Congratulations! You've found the Box Nebula. Population: boxes." #big-note
|
The note reads: \"Congratulations! You've found the Box Nebula. Population: boxes.\" #big-note
|
||||||
captain: There's a whole nebula of boxes? #captain-nebula
|
captain: There's a whole nebula of boxes? #captain-nebula
|
||||||
ai: Scanners confirm it, Commander. Approximately 4.7 billion boxes, all orbiting a supermassive box. #ai-billion
|
ai: Scanners confirm it, Commander. Approximately 4.7 billion boxes, all orbiting a supermassive box. #ai-billion
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue