mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
20 lines
433 B
Rust
20 lines
433 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(300),
|
||
|
),
|
||
|
cat_ids: [Natural],
|
||
|
)),
|
||
|
])
|
||
|
),
|
||
|
quality: Moderate,
|
||
|
tags: [Potion],
|
||
|
)
|