mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
28 lines
656 B
Rust
28 lines
656 B
Rust
ItemDef(
|
|
name: "Swiftness Potion",
|
|
description: "Watch the walls!",
|
|
kind: Consumable(
|
|
kind: Drink,
|
|
effects: All([
|
|
Buff((
|
|
kind: Swiftness,
|
|
data: (
|
|
strength: 1.25,
|
|
duration: Some(15),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
Buff((
|
|
kind: PotionSickness,
|
|
data: (
|
|
strength: 0.33,
|
|
duration: Some(45),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
])
|
|
),
|
|
quality: Moderate,
|
|
tags: [Potion],
|
|
)
|