veloren/assets/common/items/food/coconut.ron
2020-12-10 18:06:32 +01:00

22 lines
555 B
Plaintext

ItemDef(
name: "Coconut",
description: "Restores 20 health over 10 seconds\n\nReliable source of water and fat",
kind: Consumable(
kind: "Coconut",
effect: [
Buff((
kind: Saturation,
data: (
strength: 20.0,
duration: Some((
secs: 10,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
)