veloren/assets/common/items/food/sunflower_icetea.ron
juliancoffee d4c61ae2f3 (voxygen) Better support for multibuff items
+ change `effect` field in ItemKind::Consumable to `effects`, as it's
set of effects and not single effect.
2021-07-05 10:56:29 +03:00

23 lines
555 B
Plaintext

ItemDef(
name: "Sunflower Ice Tea",
description: "Brewed from freshly shelled sunflower seeds",
kind: Consumable(
kind: Drink,
effects: [
Buff((
kind: Saturation,
data: (
strength: 100.0,
duration: Some((
secs: 5,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Moderate,
tags: [Food],
)