veloren/assets/common/items/food/sage.ron
Entropy 71d98d34fb Adding some basic consumable crafting ingredients
more stuff being squashed in. tons of non-food items added
2020-12-11 19:20:35 -08:00

22 lines
545 B
Plaintext

ItemDef(
name: "Sage",
description: "Restores 10 Health over 20 seconds\n\nAn herb commonly used in tea.",
kind: Consumable(
kind: "Sage",
effect: [
Buff((
kind: Saturation,
data: (
strength: 5.0,
duration: Some((
secs: 20,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
)