feat: make equipment slots equipable and ensure stat bonuses are granted

This commit is contained in:
Peter Stockings
2026-01-21 22:41:00 +11:00
parent c4b0a16dd4
commit 84f5624ed5
3 changed files with 202 additions and 2 deletions

View File

@@ -56,7 +56,8 @@ export function generateWorld(floor: number, runState: RunState): { world: World
{ ...ITEMS["health_potion"], quantity: 2 },
ITEMS["iron_sword"],
{ ...ITEMS["throwing_dagger"], quantity: 3 },
ITEMS["pistol"]
ITEMS["pistol"],
ITEMS["leather_armor"]
] : [])
]
},