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

20 lines
456 B
Rust
Raw Normal View History

ItemDef(
name: "Tomato Salad",
description: "Leafy salad with some chopped, juicy tomatoes mixed in.",
kind: Consumable(
2021-06-24 04:26:09 +00:00
kind: Food,
effects: [
Buff((
kind: Saturation,
data: (
strength: 3.0,
2023-03-08 03:22:54 +00:00
duration: Some(5),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
2021-04-04 13:02:27 +00:00
tags: [Food],
)