veloren/assets/common/items/consumable/potion_med.ron

23 lines
528 B
Plaintext
Raw Normal View History

ItemDef(
2020-06-03 17:59:09 +00:00
name: "Medium Potion",
2021-06-30 22:56:07 +00:00
description: "Enchanted healing flask.",
2020-06-03 17:59:09 +00:00
kind: Consumable(
kind: Drink,
effects: [
2020-11-02 17:33:16 +00:00
Buff((
2020-11-05 20:02:54 +00:00
kind: Potion,
2020-11-02 17:33:16 +00:00
data: (
strength: 750.0,
2020-11-02 17:33:16 +00:00
duration: Some((
secs: 1,
nanos: 0,
)),
),
cat_ids: [Natural],
2020-11-01 13:39:32 +00:00
)),
]
2020-06-03 17:59:09 +00:00
),
2020-10-07 02:23:20 +00:00
quality: Common,
2021-04-04 13:02:27 +00:00
tags: [Potion],
2020-06-03 17:59:09 +00:00
)