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

22 lines
603 B
Plaintext
Raw Normal View History

ItemDef(
2020-04-14 00:50:58 +00:00
name: "Coconut",
description: "Restores 20 health over 10 seconds\n\nReliable source of water and fat.\n\nNaturally growing at the top of palm trees.",
2020-04-13 23:13:03 +00:00
kind: Consumable(
kind: "Coconut",
2020-11-01 13:39:32 +00:00
effect: [
Buff((
kind: Saturation,
data: (
2020-12-09 18:29:38 +00:00
strength: 20.0,
2020-11-01 13:39:32 +00:00
duration: Some((
2020-12-09 18:29:38 +00:00
secs: 10,
2020-11-01 13:39:32 +00:00
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
2020-04-13 23:13:03 +00:00
),
2020-10-07 02:23:20 +00:00
quality: Common,
2020-04-13 23:13:03 +00:00
)