From 2a0fbcaaa5d621d4a1612a3c325edd402805ddff Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Mon, 12 Jan 2026 05:01:42 +0100 Subject: [PATCH] attr: removed stamina --- TODO.md | 7 +++++++ src/attributes.s | 4 ++-- src/macros.inc | 7 +++---- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/TODO.md b/TODO.md index 415a83e..f997e78 100644 --- a/TODO.md +++ b/TODO.md @@ -24,6 +24,13 @@ # Equipment +- Head +- Armor +- Weapon +- Off-hand +- Ring1 +- Ring2 + # UI diff --git a/src/attributes.s b/src/attributes.s index ac47c81..d813a33 100644 --- a/src/attributes.s +++ b/src/attributes.s @@ -1,9 +1,9 @@ attr_null: -attrdef 0, 0, 0, 0, 0, 0 +attrdef 0, 0, 0, 0, 0 attr_bat: -attrdef 1, 0, 0, 1, 0, 0 +attrdef 1, 0, 0, 0, 0 ; gets strength attribute ; of a given actor diff --git a/src/macros.inc b/src/macros.inc index 2e05e7f..4ebf251 100644 --- a/src/macros.inc +++ b/src/macros.inc @@ -219,11 +219,10 @@ $1: ; $1: strength ; $2: agility ; $3: wisdom - ; $4: stamina - ; $5: resistances - ; $6: proficiency + ; $4: resistances + ; $5: proficiency #macro attrdef - .db $1, $2, $3, $4, $5, $6 + .db $1, $2, $3, $4, $5 #endmacro ; defines an item -- 2.30.2