veloren/assets/common/items/food/mushroom_stick.ron
2020-12-10 18:06:32 +01:00

22 lines
582 B
Plaintext

ItemDef(
name: "Mushroom Stick",
description: "Restores 20 Health over 10 seconds\n\nRoasted mushrooms on a stick for easy carrying",
kind: Consumable(
kind: "MushroomStick",
effect: [
Buff((
kind: Saturation,
data: (
strength: 20.0,
duration: Some((
secs: 10,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
)