veloren/assets/common/items/consumable/potion_swiftness.ron
2023-11-28 10:03:07 -04:00

28 lines
685 B
Rust

ItemDef(
name: "Swiftness Potion",
description: "Drinking gives a sudden, short burst of speed.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Swiftness,
data: (
strength: 1.2,
duration: Some(10),
),
cat_ids: [Natural],
)),
Buff((
kind: PotionSickness,
data: (
strength: 0.33,
duration: Some(45),
),
cat_ids: [Natural],
)),
])
),
quality: Moderate,
tags: [Potion],
)