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

23 lines
585 B
Rust
Raw Normal View History

ItemDef(
name: Direct("Coconut"),
description: "Reliable source of water and fat.\n\nNaturally growing at the top of palm trees.",
2020-04-13 23:13:03 +00:00
kind: Consumable(
2021-06-24 04:26:09 +00:00
kind: Food,
effects: [
2020-11-01 13:39:32 +00:00
Buff((
kind: Saturation,
data: (
strength: 4.0,
2020-11-01 13:39:32 +00:00
duration: Some((
secs: 5,
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,
2021-04-04 13:02:27 +00:00
tags: [Food],
2020-04-13 23:13:03 +00:00
)