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

28 lines
684 B
Rust
Raw Normal View History

ItemDef(
name: "Potion of Retreat",
description: "Don't get caught fighting too fierce a foe.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Retreating,
data: (
2023-11-29 10:56:35 +00:00
strength: 0.55,
duration: Some(25),
2023-11-28 14:03:07 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
2023-11-29 10:56:35 +00:00
strength: 0.5,
duration: Some(60),
),
cat_ids: [Natural],
)),
])
),
2023-11-28 14:03:07 +00:00
quality: Moderate,
tags: [Potion],
)