Very simple items system to get into the inventory work.

This commit is contained in:
Zed A. Shaw 2025-01-01 13:21:01 -05:00
parent 1962b0c24e
commit 3d461bce6d
15 changed files with 94 additions and 32 deletions

22
assets/items.json Normal file
View file

@ -0,0 +1,22 @@
{
"TORCH": {
"foreground": [24, 205, 189],
"background": [230, 20, 120],
"display": "\u0f08"
},
"SWORD": {
"foreground": [24, 205, 189],
"background": [24, 205, 189],
"display":"\u1e37"
},
"CHEST": {
"foreground": [24, 205, 189],
"background": [24, 205, 189],
"display":"\uaaea"
},
"WALL_TORCH": {
"foreground": [24, 205, 189],
"background": [24, 205, 189],
"display": "☀"
}
}