Added todo and readme. Removed test file.

This commit is contained in:
Raktbastr 2025-02-21 10:01:42 -06:00
parent 3bfdb6bc5d
commit 891d93be65
4 changed files with 48 additions and 1 deletions

26
.vscode/launch.json vendored Normal file
View file

@ -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": [
"<node_internals>/**"
],
"type": "node"
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}"
}
]
}

4
README.md Normal file
View file

@ -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!"

18
TODO.md Normal file
View file

@ -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

View file

@ -1 +0,0 @@
println("Hello");