mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
23 lines
539 B
Plaintext
23 lines
539 B
Plaintext
ItemDef(
|
|
name: "Mushroom",
|
|
description: "Hopefully this one is not poisonous",
|
|
kind: Consumable(
|
|
kind: "Mushroom",
|
|
effect: [
|
|
Buff((
|
|
kind: Saturation,
|
|
data: (
|
|
strength: 5.0,
|
|
duration: Some((
|
|
secs: 10,
|
|
nanos: 0,
|
|
)),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
]
|
|
),
|
|
quality: Common,
|
|
tags: [Food],
|
|
)
|