veloren/assets/common/items/boss_drops/potions.ron
2020-12-10 18:06:32 +01:00

22 lines
539 B
Plaintext

ItemDef(
name: "Potent Potion",
description: "A potent healing potion.\n\nRestores 100 health on use",
kind: Consumable(
kind: "Potion",
effect: [
Buff((
kind: Potion,
data: (
strength: 1000.0,
duration: Some((
secs: 1,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: High,
)