• Rewind
  • Restart
  • Bookmark
  • This story was created with Twine and is powered by TiddlyWiki
<<silently>>\n<<set $name to prompt("Finally, your own spaceship! What's its name?")>>\n<<endsilently>>Welcome captain. [[Configure Systems|main]]\n\n<<set $bucks to 14000>>\n<<set $power to 0>>\n<<set $lifesupport to 0>>\n<<set $engines to 0>>
/* Your story will use the CSS in this passage to style the page.\nGive this passage more tags, and it will only affect passages with those tags.\nExample selectors: */\n\nbody {\n font-size: 11pt;\n font-family: "Lucida Console", Monaco, monospace;\n color: rgb(255,255,255);\n background-color: rgb(0,0,0);\n\t\n\t\n}\n.passage {\n\t/* This only affects passages */\n\t\n\t\n}\n.passage a {\n color: rgb(65,105,255); \n\t\n\t\n}\n.passage a:hover {\n\t/* This affects links while the cursor is over them */\n\t\n\t\n}
Configure Systems
Dora Dee Rogers\n@doradee_
<<if $systems lte 6>><<if $function gt 0>>Orbital racing is a risky business. The <<print $name>> is destroyed in a collision, but not before winning S$2,000,000 in prizes. You'll never forget her...<<else>>A larger ship tows the <<print $name>> to an unexplored world. You spend months aboard <<print $name>>, hunting resources. It's a hard but good life...<<endif>><<else>><<if $function gt 0>>You're fast enough to stalk the shipping lanes with impunity! Soon people fear the name <<print $name>>...<<else>>The <<print $name>> makes a one-way journey, carrying you and a few dozen others to your new home...<<endif>><<endif>>\n\n[[Play again.|Start]]
<<silently>>\n<<set $function = $engines - $lifesupport>>\n<<set $systems = $engines + $lifesupport>>\n<<set $bucks to 14000 - 1000*$systems - 1000*$power>>\n<<set $currentpower to $power - $systems>>\n<<if $power is 0 or $currentpower lt 0>>\n<<set $status to "Insufficient Power.">>\n<<else if $engines lte 0 or $lifesupport lte 0>>\n<<set $status to "Critical system(s) offline.">>\n<<else>>\n<<set $status to "Online.">>\n<<endif>>\n<<endsilently>>Spacebucks: S$<<print $bucks>>\n\nPower Capacity: <<if $bucks gt 999>>[[<<print $power>>|main][$power = $power + 1]]<<else>><<print $power>><<endif>>\nLife Support: <<if $bucks gt 999>>[[<<print $lifesupport>>|main][$lifesupport = $lifesupport + 1]]<<else>><<print $lifesupport>><<endif>>\nThrusters: <<if $bucks gt 999>>[[<<print $engines>>|main][$engines = $engines + 1]]<<else>><<print $engines>><<endif>>\nAvailable Power: <<if $currentpower gte 0>><font color = green><<print $currentpower>></font><<else>><font color = red><<print $currentpower>></font><<endif>>\n\nStatus: <<print $status>>\n\nIn this configuration, the <<print $name>> is <<if $function gt 0>> fast<<else>>good for long voyages<<endif>> and would make a good <<if $systems lte 6>><<if $function gt 0>>orbital racer.<<else>>survey scout.<<endif>>\n\nAdding components may reveal other possibilities...<<else>><<if $function gt 0>>pirate corvette.<<else>>colony ship.<<endif>><<endif>><<if $status is "Online.">>\n\n[[Finalize Configuration]]<<endif>>\n\n[[Reset|main][$power = 0, $engines = 0, $lifesupport = 0]] \n\n