mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
431 B
Rust
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],
|
|
)
|