veloren/assets/common/items/consumable/potion_big.ron

23 lines
537 B
Rust

ItemDef(
name: Direct("Large Potion"),
description: "Precious medicine.",
kind: Consumable(
kind: Drink,
effects: [
Buff((
kind: Potion,
data: (
strength: 100.0,
duration: Some((
secs: 1,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Direct(Common),
tags: [Potion],
)