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

22 lines
583 B
Plaintext
Raw Normal View History

2020-10-07 02:23:20 +00:00
ItemDef(
name: "Sunflower Ice Tea",
description: "Restores 50 Health over 5 seconds\n\nBrewed from freshly shelled sunflower seeds.",
2020-10-07 02:23:20 +00:00
kind: Consumable(
kind: "SunflowerTea",
2020-11-01 13:39:32 +00:00
effect: [
Buff((
kind: Saturation,
data: (
strength: 100.0,
duration: Some((
secs: 5,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
2020-10-07 02:23:20 +00:00
),
quality: Moderate,
)