feat: added ascension meter, done 0-1 asc logic, fixed mysterious man behaviours
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/pr/woodpecker Pipeline failed

This commit is contained in:
Zoltan Timar
2026-03-19 18:22:06 +01:00
parent 823c3313af
commit b4dcdaba58
18 changed files with 278 additions and 31 deletions

9
.vscode/tasks.json vendored
View File

@@ -6,12 +6,17 @@
{
"label": "Run TIC80",
"type": "shell",
"command": "tic80 --fs=. impostor.lua"
"command": "tic80 --fs=. impostor.lua",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build & Run TIC80",
"type": "shell",
"command": "make build && tic80 --fs=. impostor.lua",
"command": "make clean && make build && tic80 --fs=. impostor.lua",
"problemMatcher": []
},
{