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

23 lines
566 B
Rust

ItemDef(
name: Direct("Mushroom Stick"),
description: "Roasted mushrooms on a stick for easy carrying",
kind: Consumable(
kind: Food,
effects: [
Buff((
kind: Saturation,
data: (
strength: 4.0,
duration: Some((
secs: 5,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Direct(Common),
tags: [Food],
)