Made a curative component really quick.

This commit is contained in:
Zed A. Shaw 2025-01-09 14:38:07 -05:00
parent d6916b675e
commit ee304c30e3
3 changed files with 24 additions and 0 deletions

View file

@ -59,5 +59,17 @@
{"type": "Tile", "config": {"chr": "\u077e"}},
{"type": "LightSource", "config": {"strength": 60, "radius": 1.8}}
]
},
"POTION_HEALING_SMALL": {
"id": "POTION_HEALING_SMALL",
"name": "Small Healing Potion",
"foreground": [24, 205, 189],
"background": [24, 205, 189],
"description": "A small healing potion.",
"inventory_count": 1,
"components": [
{"type": "Tile", "config": {"chr": "\u03eb"}},
{"type": "Curative", "config": {"hp": 20}}
]
}
}