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

23 lines
545 B
Plaintext
Raw Normal View History

ItemDef(
2020-07-14 20:11:39 +00:00
name: "Apple Stick",
description: "The stick makes it easier to carry!",
2020-07-14 20:11:39 +00:00
kind: Consumable(
kind: "AppleStick",
2020-11-01 13:39:32 +00:00
effect: [
Buff((
kind: Saturation,
data: (
strength: 10.0,
2020-11-01 13:39:32 +00:00
duration: Some((
secs: 25,
2020-11-01 13:39:32 +00:00
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
2020-07-14 20:11:39 +00:00
),
2020-10-07 02:23:20 +00:00
quality: Common,
2021-04-04 13:02:27 +00:00
tags: [Food],
2020-07-14 20:11:39 +00:00
)