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

ItemDef(
name: "Onion",
description: "Restores 10 Health over 20 seconds\n\nA vegetable that's made the toughest men cry.",
kind: Consumable(
kind: "Onion",
effect: [
Buff((
kind: Saturation,
data: (
strength: 5.0,
duration: Some((
secs: 20,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
)