mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
28 lines
653 B
Rust
28 lines
653 B
Rust
ItemDef(
|
|
name: "Potion of Agility",
|
|
description: "Fly, you fools!",
|
|
kind: Consumable(
|
|
kind: Drink,
|
|
effects: All([
|
|
Buff((
|
|
kind: Agility,
|
|
data: (
|
|
strength: 0.55,
|
|
duration: Some(25),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
Buff((
|
|
kind: PotionSickness,
|
|
data: (
|
|
strength: 0.5,
|
|
duration: Some(60),
|
|
),
|
|
cat_ids: [Natural],
|
|
)),
|
|
])
|
|
),
|
|
quality: Moderate,
|
|
tags: [Potion],
|
|
)
|