veloren/assets/common/items/food/mushroom.ron

23 lines
572 B
Plaintext
Raw Normal View History

ItemDef(
name: "Mushroom",
description: "Restores 5 Health over 10 seconds\n\nHopefully this one is not poisonous",
kind: Consumable(
kind: "Mushroom",
2020-11-01 13:39:32 +00:00
effect: [
Buff((
kind: Saturation,
data: (
strength: 5.0,
2020-11-01 13:39:32 +00:00
duration: Some((
secs: 10,
2020-11-01 13:39:32 +00:00
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
2020-10-07 02:23:20 +00:00
quality: Common,
tags: [],
)