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

23 lines
566 B
Plaintext
Raw Normal View History

ItemDef(
name: "Dwarven Cheese",
2020-12-09 18:29:38 +00:00
description: "Restores 15 Health over 10 seconds\n\nAromatic and nutritious",
kind: Consumable(
kind: "Cheese",
2020-11-01 13:39:32 +00:00
effect: [
Buff((
kind: Saturation,
data: (
2020-12-09 18:29:38 +00:00
strength: 15.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-10-07 02:23:20 +00:00
quality: Common,
tags: [],
)