veloren/assets/common/items/boss_drops/potions.ron

17 lines
382 B
Plaintext
Raw Normal View History

ItemDef(
2020-06-26 16:26:00 +00:00
name: "Potent Potion",
description: "A potent healing potion.\n\nRestores 100 health on use\n\n<Right-Click to use>",
kind: Consumable(
kind: "Potion",
effect: Some(
[
Health((
amount: 1000,
cause: Item,
)),
]
),
),
2020-10-07 02:23:20 +00:00
quality: High,
)