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

28 lines
656 B
Rust
Raw Normal View History

ItemDef(
name: "Swiftness Potion",
2023-11-29 10:25:20 +00:00
description: "Makes you faster.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Swiftness,
data: (
2023-11-29 10:43:46 +00:00
strength: 0.6,
duration: Some(20),
2023-11-28 14:03:07 +00:00
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
),
cat_ids: [Natural],
)),
])
),
2023-11-28 14:03:07 +00:00
quality: Moderate,
tags: [Potion],
)