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

28 lines
656 B
Rust
Raw Normal View History

ItemDef(
name: "Swiftness Potion",
2023-11-28 15:41:29 +00:00
description: "Watch the walls!",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Swiftness,
data: (
2023-11-28 15:43:12 +00:00
strength: 1.25,
2023-11-28 15:41:29 +00:00
duration: Some(15),
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],
)