diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..42168a6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Attach", + "port": 9229, + "request": "attach", + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "skipFiles": [ + "/**" + ], + "program": "${file}" + } + ] +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..9a4feee --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Lonesome Road + +## Story +You are a loyal Enclave Soldier and the worst has just happened, Control Station Enclave is gone. You must make your way across the country to Raven Rock in the Capital Wasteland where President Eden is waiting for your imminent return. Be careful and remember "Dont feed the yao guai!" \ No newline at end of file diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..27cd6fa --- /dev/null +++ b/TODO.md @@ -0,0 +1,18 @@ +## Basic +* See if we can split things across multiple files for readability +* Graphics +* Dialogue +* Story + +## Game Mechanics +* Scavenging (random num 1-100, items based on that) +* POI Menu (talk with people, trade, map, etc) +* Stop Menu (scavenge, change settings) +* River crossing menu +* Random Encounters +* Trading +* Movement/Time (day counter that multiplies stats by certain amt) +* POI Chosing based on location in world (NCR bases in Cali, Legion in CO, BOS in Midwest) + +## Misc +* Credit Bethesda if needed \ No newline at end of file diff --git a/test.js b/test.js deleted file mode 100644 index ec1c97a..0000000 --- a/test.js +++ /dev/null @@ -1 +0,0 @@ -println("Hello"); \ No newline at end of file