MiniRPG/data/items.json

31 lines
No EOL
721 B
JSON

[
{
"Name": "Potion",
"Description": "Restores HP that have been lost in battle by 20 HP.",
"Type": "Healing",
"HealingAmount": 20
},
{
"Name": "Super Potion",
"Description": "Restores HP that have been lost in battle by 50 HP.",
"Type": "Healing",
"HealingAmount": 50
},
{
"Name": "Hyper Potion",
"Description": "Restores HP that have been lost in battle by 200 HP.",
"Type": "Healing",
"HealingAmount": 200
},
{
"Name": "Elixir",
"Description": "A simple potion.",
"Type": "Support"
},
{
"Name": "Dagger",
"Description": "Stabby.",
"Type": "Weapon",
"Damage": 5
}
]