mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
23 lines
529 B
Plaintext
23 lines
529 B
Plaintext
ItemDef(
|
|
name: "Potent Potion",
|
|
description: "A potent healing potion.",
|
|
kind: Consumable(
|
|
kind: "Potion",
|
|
effect: [
|
|
Buff((
|
|
kind: Potion,
|
|
data: (
|
|
strength: 1000.0,
|
|
duration: Some((
|
|
secs: 1,
|
|
nanos: 0,
|
|
)),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
]
|
|
),
|
|
quality: High,
|
|
tags: [Potion],
|
|
)
|