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

20 lines
431 B
Rust
Raw Normal View History

ItemDef(
name: "Swiftness Potion",
description: "Makes you go faster.",
kind: Consumable(
kind: Drink,
effects: All([
Buff((
kind: Swiftness,
data: (
strength: 0.25,
2023-11-27 10:57:42 +00:00
duration: Some(240),
),
cat_ids: [Natural],
)),
])
),
2023-11-27 10:25:58 +00:00
quality: Common,
tags: [Potion],
)