veloren/assets/common/items/food/coltsfoot.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
572 B
Plaintext

ItemDef(
name: "Coltsfoot",
description: "Restores 10 Health over 20 seconds\n\nA daisy-like flower often used in herbal teas.",
kind: Consumable(
kind: "Coltsfoot",
effect: [
Buff((
kind: Saturation,
data: (
strength: 5.0,
duration: Some((
secs: 20,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
)