mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
23 lines
582 B
Rust
23 lines
582 B
Rust
ItemDef(
|
|
name: "Medium Potion",
|
|
description: "An innovative invention from an apothecary, better than its smaller precursors.",
|
|
kind: Consumable(
|
|
kind: Drink,
|
|
effects: [
|
|
Buff((
|
|
kind: Potion,
|
|
data: (
|
|
strength: 75.0,
|
|
duration: Some((
|
|
secs: 1,
|
|
nanos: 0,
|
|
)),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
]
|
|
),
|
|
quality: Common,
|
|
tags: [Potion],
|
|
)
|