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

22 lines
582 B
Plaintext
Raw Normal View History

ItemDef(
2020-07-14 20:11:39 +00:00
name: "Mushroom Stick",
2020-11-02 17:33:16 +00:00
description: "Restores 20 Health over 20 seconds\n\nRoasted mushrooms on a stick for easy carrying",
kind: Consumable(
kind: "MushroomStick",
2020-11-01 13:39:32 +00:00
effect: [
Buff((
kind: Saturation,
data: (
2020-11-02 17:33:16 +00:00
strength: 10.0,
2020-11-01 13:39:32 +00:00
duration: Some((
2020-11-02 17:33:16 +00:00
secs: 20,
2020-11-01 13:39:32 +00:00
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
2020-10-07 02:23:20 +00:00
quality: Common,
)