Added item card view for selection

This commit is contained in:
Alexis
2023-05-14 18:45:35 +02:00
parent 495c9ed1d0
commit 77f0b8ab7b
17 changed files with 146 additions and 78 deletions

View File

@@ -1,5 +1,6 @@
export interface GameItem {
name: string
description: string
category?: 'restorative' | 'enhancement' | 'support'
numberHeld?: number
}