veloren/assets/common/items/boss_drops/potions.ron
juliancoffee d4c61ae2f3 (voxygen) Better support for multibuff items
+ change `effect` field in ItemKind::Consumable to `effects`, as it's
set of effects and not single effect.
2021-07-05 10:56:29 +03:00

23 lines
527 B
Plaintext

ItemDef(
name: "Potent Potion",
description: "A potent healing potion.",
kind: Consumable(
kind: Drink,
effects: [
Buff((
kind: Potion,
data: (
strength: 1000.0,
duration: Some((
secs: 1,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: High,
tags: [Potion],
)