veloren/assets/common/items/consumable/potion_swiftness.ron
2023-11-27 06:57:42 -04:00

20 lines
431 B
Rust

ItemDef(
name: "Swiftness Potion",
description: "Makes you go faster.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Swiftness,
data: (
strength: 0.25,
duration: Some(240),
),
cat_ids: [Natural],
)),
])
),
quality: Common,
tags: [Potion],
)